diff --git a/.dockerignore b/.dockerignore index 69198e47..1dce01b3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -26,6 +26,6 @@ /public/packs-test /public/packs /attachments -/docuseal +/wabosign .DS_Store .env diff --git a/.gitignore b/.gitignore index d14f4595..bf8764f1 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,7 @@ yarn-debug.log* /coverage /attachments -/docuseal +/wabosign /ee dump.rdb *.onnx diff --git a/Dockerfile b/Dockerfile index f8c4398f..6f8f8771 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ WORKDIR /app RUN apk add --no-cache libpq vips redis vips-heif onnxruntime -RUN addgroup -g 2000 docuseal && adduser -u 2000 -G docuseal -s /bin/sh -D -h /home/docuseal docuseal +RUN addgroup -g 2000 wabosign && adduser -u 2000 -G wabosign -s /bin/sh -D -h /home/wabosign wabosign RUN echo $'.include = /etc/ssl/openssl.cnf\n\ \n\ @@ -64,35 +64,35 @@ activate = 1\n\ [legacy_sect]\n\ activate = 1' >> /etc/openssl_legacy.cnf -COPY --chown=docuseal:docuseal ./Gemfile ./Gemfile.lock ./ +COPY --chown=wabosign:wabosign ./Gemfile ./Gemfile.lock ./ RUN apk add --no-cache build-base git libpq-dev yaml-dev && bundle install && apk del --no-cache build-base git libpq-dev yaml-dev && rm -rf ~/.bundle /usr/local/bundle/cache && ruby -e "puts Dir['/usr/local/bundle/**/{spec,rdoc,resources/shared,resources/collation,resources/locales,resources/unicode_data/properties}'] + Dir['/usr/local/bundle/gems/*/{test,tests,examples,sample,misc,doc,docs}'] + Dir['/usr/local/bundle/gems/*/ext/**/*.{c,h,o,S}']" | xargs rm -rf && ln -sf /usr/lib/libonnxruntime.so.1 $(ruby -e "print Dir[Gem::Specification.find_by_name('onnxruntime').gem_dir + '/vendor/*.so'].first") -COPY --chown=docuseal:docuseal ./bin ./bin -COPY --chown=docuseal:docuseal ./app ./app -COPY --chown=docuseal:docuseal ./config ./config -COPY --chown=docuseal:docuseal ./db/migrate ./db/migrate -COPY --chown=docuseal:docuseal ./log ./log -COPY --chown=docuseal:docuseal ./lib ./lib -COPY --chown=docuseal:docuseal ./public ./public -COPY --chown=docuseal:docuseal ./tmp ./tmp -COPY --chown=docuseal:docuseal LICENSE LICENSE_ADDITIONAL_TERMS README.md Rakefile config.ru .version ./ -COPY --chown=docuseal:docuseal .version ./public/version - -COPY --chown=docuseal:docuseal --from=download /fonts/GoNotoKurrent-Regular.ttf /fonts/GoNotoKurrent-Bold.ttf /fonts/DancingScript-Regular.otf /fonts/OFL.txt /fonts/LICENSE /fonts/ +COPY --chown=wabosign:wabosign ./bin ./bin +COPY --chown=wabosign:wabosign ./app ./app +COPY --chown=wabosign:wabosign ./config ./config +COPY --chown=wabosign:wabosign ./db/migrate ./db/migrate +COPY --chown=wabosign:wabosign ./log ./log +COPY --chown=wabosign:wabosign ./lib ./lib +COPY --chown=wabosign:wabosign ./public ./public +COPY --chown=wabosign:wabosign ./tmp ./tmp +COPY --chown=wabosign:wabosign LICENSE LICENSE_ADDITIONAL_TERMS README.md Rakefile config.ru .version ./ +COPY --chown=wabosign:wabosign .version ./public/version + +COPY --chown=wabosign:wabosign --from=download /fonts/GoNotoKurrent-Regular.ttf /fonts/GoNotoKurrent-Bold.ttf /fonts/DancingScript-Regular.otf /fonts/OFL.txt /fonts/LICENSE /fonts/ COPY --from=download /pdfium-linux/lib/libpdfium.so /usr/lib/libpdfium.so COPY --from=download /pdfium-linux/licenses/pdfium.txt /usr/lib/libpdfium-LICENSE.txt -COPY --chown=docuseal:docuseal --from=download /model.onnx /app/tmp/model.onnx -COPY --chown=docuseal:docuseal --from=webpack /app/public/packs ./public/packs +COPY --chown=wabosign:wabosign --from=download /model.onnx /app/tmp/model.onnx +COPY --chown=wabosign:wabosign --from=webpack /app/public/packs ./public/packs RUN mkdir -p /app/public/fonts && ln -s /fonts/DancingScript-Regular.otf /app/public/fonts/ && \ mkdir -p /usr/share/fonts/noto && ln -s /fonts/GoNotoKurrent-Regular.ttf /usr/share/fonts/noto/ && ln -s /fonts/GoNotoKurrent-Bold.ttf /usr/share/fonts/noto/ && fc-cache -f && \ bundle exec bootsnap precompile -j 1 --gemfile app/ lib/ && \ - chown -R docuseal:docuseal /app/tmp/cache + chown -R wabosign:wabosign /app/tmp/cache -WORKDIR /data/docuseal -ENV HOME=/home/docuseal -ENV WORKDIR=/data/docuseal +WORKDIR /data/wabosign +ENV HOME=/home/wabosign +ENV WORKDIR=/data/wabosign ENV VIPS_MAX_COORD=17000 EXPOSE 3000 diff --git a/SECURITY.md b/SECURITY.md index b1692488..fe863c52 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,6 +1,6 @@ # Reporting a Vulnerability -If you come across any security concern or vulnarability, please report the information via email to security@docuseal.com instead of opening a GitHub issue. We will promptly respond and will collaborate with you to validate the issue, and resolve it ASAP. +If you come across any security concern or vulnarability, please report the information via email to security@wabosign.com instead of opening a GitHub issue. We will promptly respond and will collaborate with you to validate the issue, and resolve it ASAP. **We have a bug bounty program to reward security researchers.** diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 49314f32..32df6d90 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -20,7 +20,7 @@ class AccountsController < ApplicationController def update current_account.update!(account_params) - unless Docuseal.multitenant? + unless Wabosign.multitenant? @encrypted_config = EncryptedConfig.find_or_initialize_by(account: current_account, key: EncryptedConfig::APP_URL_KEY) @encrypted_config.assign_attributes(app_url_params) @@ -33,7 +33,7 @@ class AccountsController < ApplicationController @encrypted_config.save! - Docuseal.refresh_default_url_options! + Wabosign.refresh_default_url_options! end with_locale do diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 592c006d..a2e17cda 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -9,7 +9,7 @@ class ApplicationController < ActionController::Base check_authorization unless: :devise_controller? around_action :with_locale - before_action :sign_in_for_demo, if: -> { Docuseal.demo? } + before_action :sign_in_for_demo, if: -> { Wabosign.demo? } before_action :maybe_redirect_to_setup, unless: :signed_in? before_action :authenticate_user!, unless: :devise_controller? @@ -42,7 +42,7 @@ class ApplicationController < ActionController::Base end def default_url_options - Docuseal.default_url_options + Wabosign.default_url_options end def impersonate_user(user) @@ -118,11 +118,11 @@ class ApplicationController < ActionController::Base end def form_link_host - Docuseal.default_url_options[:host] + Wabosign.default_url_options[:host] end def maybe_redirect_com - return if request.domain != 'docuseal.co' + return if request.domain != 'wabosign.co' redirect_to request.url.gsub('.co/', '.com/'), allow_other_host: true, status: :moved_permanently end diff --git a/app/controllers/console_redirect_controller.rb b/app/controllers/console_redirect_controller.rb index 4b910263..b4d17ea0 100644 --- a/app/controllers/console_redirect_controller.rb +++ b/app/controllers/console_redirect_controller.rb @@ -6,10 +6,10 @@ class ConsoleRedirectController < ApplicationController def index if request.path == '/upgrade' - params[:redir] = Docuseal.multitenant? ? "#{Docuseal::CONSOLE_URL}/plans" : "#{Docuseal::CONSOLE_URL}/on_premises" + params[:redir] = Wabosign.multitenant? ? "#{Wabosign::CONSOLE_URL}/plans" : "#{Wabosign::CONSOLE_URL}/on_premises" end - params[:redir] = "#{Docuseal::CONSOLE_URL}/manage" if request.path == '/manage' + params[:redir] = "#{Wabosign::CONSOLE_URL}/manage" if request.path == '/manage' return redirect_to(new_user_session_path({ redir: params[:redir] }.compact)) if true_user.blank? @@ -18,9 +18,9 @@ class ConsoleRedirectController < ApplicationController exp: 1.minute.from_now.to_i) redir_uri = Addressable::URI.parse(params[:redir]) - path = redir_uri.path if params[:redir].to_s.starts_with?(Docuseal::CONSOLE_URL) + path = redir_uri.path if params[:redir].to_s.starts_with?(Wabosign::CONSOLE_URL) - redirect_to "#{Docuseal::CONSOLE_URL}#{path}?#{{ **redir_uri&.query_values, 'auth' => auth }.to_query}", + redirect_to "#{Wabosign::CONSOLE_URL}#{path}?#{{ **redir_uri&.query_values, 'auth' => auth }.to_query}", allow_other_host: true end end diff --git a/app/controllers/dashboard_controller.rb b/app/controllers/dashboard_controller.rb index 23df8322..841c20dd 100644 --- a/app/controllers/dashboard_controller.rb +++ b/app/controllers/dashboard_controller.rb @@ -20,9 +20,9 @@ class DashboardController < ApplicationController private def maybe_redirect_product_url - return if !Docuseal.multitenant? || signed_in? + return if !Wabosign.multitenant? || signed_in? - redirect_to Docuseal::PRODUCT_URL, allow_other_host: true + redirect_to Wabosign::PRODUCT_URL, allow_other_host: true end def maybe_redirect_mfa_setup diff --git a/app/controllers/email_smtp_settings_controller.rb b/app/controllers/email_smtp_settings_controller.rb index f918f172..90aa92f2 100644 --- a/app/controllers/email_smtp_settings_controller.rb +++ b/app/controllers/email_smtp_settings_controller.rb @@ -9,7 +9,7 @@ class EmailSmtpSettingsController < ApplicationController def create if @encrypted_config.update(email_configs) - unless Docuseal.multitenant? + unless Wabosign.multitenant? SettingsMailer.smtp_successful_setup(@encrypted_config.value['from_email'] || current_user.email).deliver_now! end diff --git a/app/controllers/embed_scripts_controller.rb b/app/controllers/embed_scripts_controller.rb index a40ed79c..ed5d4483 100644 --- a/app/controllers/embed_scripts_controller.rb +++ b/app/controllers/embed_scripts_controller.rb @@ -9,7 +9,7 @@ class EmbedScriptsController < ActionController::Metal

Upgrade to Pro

Unlock embedded components by upgrading to Pro

- + Learn More
diff --git a/app/controllers/enquiries_controller.rb b/app/controllers/enquiries_controller.rb index 829b578c..27a307cb 100644 --- a/app/controllers/enquiries_controller.rb +++ b/app/controllers/enquiries_controller.rb @@ -6,7 +6,7 @@ class EnquiriesController < ApplicationController def create if params[:talk_to_sales] == 'on' - Faraday.post(Docuseal::ENQUIRIES_URL, + Faraday.post(Wabosign::ENQUIRIES_URL, enquiry_params.merge(type: :talk_to_sales).to_json, 'Content-Type' => 'application/json') end diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index f6401243..5f29ed61 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -2,7 +2,7 @@ class ErrorsController < ActionController::Base ENTERPRISE_FEATURE_MESSAGE = - 'This feature is available in Pro Edition: https://www.docuseal.com/pricing' + 'This feature is available in Pro Edition: https://www.wabosign.com/pricing' ENTERPRISE_PATHS = [ '/submissions/html', diff --git a/app/controllers/esign_settings_controller.rb b/app/controllers/esign_settings_controller.rb index 78630f45..c1c74843 100644 --- a/app/controllers/esign_settings_controller.rb +++ b/app/controllers/esign_settings_controller.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EsignSettingsController < ApplicationController - DEFAULT_CERT_NAME = 'DocuSeal Self-Host Autogenerated' + DEFAULT_CERT_NAME = 'WaboSign Self-Host Autogenerated' CertFormRecord = Struct.new(:name, :file, :password) do include ActiveModel::Validations @@ -74,7 +74,7 @@ class EsignSettingsController < ApplicationController if custom_cert_data custom_cert_data['status'] = 'default' - elsif params[:name] == Docuseal::AATL_CERT_NAME + elsif params[:name] == Wabosign::AATL_CERT_NAME @encrypted_config.value['custom'] ||= [] @encrypted_config.value['custom'] << { 'name' => params[:name], 'status' => 'default' } end diff --git a/app/controllers/mcp_controller.rb b/app/controllers/mcp_controller.rb index 8d7ca288..0ee39415 100644 --- a/app/controllers/mcp_controller.rb +++ b/app/controllers/mcp_controller.rb @@ -33,7 +33,7 @@ class McpController < ActionController::API end def verify_mcp_enabled! - return if Docuseal.multitenant? + return if Wabosign.multitenant? return if AccountConfig.exists?(account_id: current_user.account_id, key: AccountConfig::ENABLE_MCP_KEY, diff --git a/app/controllers/mfa_setup_controller.rb b/app/controllers/mfa_setup_controller.rb index 2ea90412..9e12a445 100644 --- a/app/controllers/mfa_setup_controller.rb +++ b/app/controllers/mfa_setup_controller.rb @@ -20,7 +20,7 @@ class MfaSetupController < ApplicationController redirect_to settings_profile_index_path, notice: I18n.t('2fa_has_been_configured') else - @provision_url = current_user.otp_provisioning_uri(current_user.email, issuer: Docuseal.product_name) + @provision_url = current_user.otp_provisioning_uri(current_user.email, issuer: Wabosign.product_name) @error_message = I18n.t('code_is_invalid') @@ -49,6 +49,6 @@ class MfaSetupController < ApplicationController current_user.save! - @provision_url = current_user.otp_provisioning_uri(current_user.email, issuer: Docuseal.product_name) + @provision_url = current_user.otp_provisioning_uri(current_user.email, issuer: Wabosign.product_name) end end diff --git a/app/controllers/newsletters_controller.rb b/app/controllers/newsletters_controller.rb index ddd305c5..2b3ba0aa 100644 --- a/app/controllers/newsletters_controller.rb +++ b/app/controllers/newsletters_controller.rb @@ -6,7 +6,7 @@ class NewslettersController < ApplicationController def show; end def update - Faraday.post(Docuseal::NEWSLETTER_URL, newsletter_params.to_json, 'Content-Type' => 'application/json') + Faraday.post(Wabosign::NEWSLETTER_URL, newsletter_params.to_json, 'Content-Type' => 'application/json') rescue StandardError => e Rails.logger.error(e) ensure diff --git a/app/controllers/passwords_controller.rb b/app/controllers/passwords_controller.rb index e166da35..9c840ff0 100644 --- a/app/controllers/passwords_controller.rb +++ b/app/controllers/passwords_controller.rb @@ -13,7 +13,7 @@ class PasswordsController < Devise::PasswordsController def create super do |resource| - resource.errors.clear unless Docuseal.multitenant? + resource.errors.clear unless Wabosign.multitenant? end end diff --git a/app/controllers/personalization_settings_controller.rb b/app/controllers/personalization_settings_controller.rb index d9d33490..600e3bbb 100644 --- a/app/controllers/personalization_settings_controller.rb +++ b/app/controllers/personalization_settings_controller.rb @@ -8,7 +8,7 @@ class PersonalizationSettingsController < ApplicationController AccountConfig::SUBMITTER_DOCUMENTS_COPY_EMAIL_KEY, AccountConfig::SUBMITTER_COMPLETED_EMAIL_KEY, AccountConfig::FORM_COMPLETED_MESSAGE_KEY, - *(Docuseal.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY]) + *(Wabosign.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY]) ].freeze InvalidKey = Class.new(StandardError) diff --git a/app/controllers/search_entries_reindex_controller.rb b/app/controllers/search_entries_reindex_controller.rb index afbe60b2..a9dd8873 100644 --- a/app/controllers/search_entries_reindex_controller.rb +++ b/app/controllers/search_entries_reindex_controller.rb @@ -9,7 +9,7 @@ class SearchEntriesReindexController < ApplicationController AccountConfig.find_or_initialize_by(account_id: Account.minimum(:id), key: :fulltext_search) .update!(value: true) - Docuseal.instance_variable_set(:@fulltext_search, nil) + Wabosign.instance_variable_set(:@fulltext_search, nil) redirect_back(fallback_location: settings_account_path, notice: "Started building search index. Visit #{root_url}jobs/busy to check progress.") diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb index 2281d56f..2f94ea4c 100644 --- a/app/controllers/sessions_controller.rb +++ b/app/controllers/sessions_controller.rb @@ -8,7 +8,7 @@ class SessionsController < Devise::SessionsController def create email = sign_in_params[:email].to_s.downcase - if Docuseal.multitenant? && !User.exists?(email:) + if Wabosign.multitenant? && !User.exists?(email:) Rollbar.warning('Sign in new user') if defined?(Rollbar) return redirect_to new_registration_path(sign_up: true, user: sign_in_params.slice(:email)), @@ -26,7 +26,7 @@ class SessionsController < Devise::SessionsController def after_sign_in_path_for(...) if params[:redir].present? - return console_redirect_index_path(redir: params[:redir]) if params[:redir].starts_with?(Docuseal::CONSOLE_URL) + return console_redirect_index_path(redir: params[:redir]) if params[:redir].starts_with?(Wabosign::CONSOLE_URL) return params[:redir] end diff --git a/app/controllers/setup_controller.rb b/app/controllers/setup_controller.rb index 734edbb5..db506928 100644 --- a/app/controllers/setup_controller.rb +++ b/app/controllers/setup_controller.rb @@ -36,7 +36,7 @@ class SetupController < ApplicationController @account.encrypted_configs.create!(encrypted_configs) @account.account_configs.create!(key: :fulltext_search, value: true) if SearchEntry.table_exists? - Docuseal.refresh_default_url_options! + Wabosign.refresh_default_url_options! sign_in(@user) diff --git a/app/controllers/submissions_resend_email_controller.rb b/app/controllers/submissions_resend_email_controller.rb index a68c7ad4..ddc526db 100644 --- a/app/controllers/submissions_resend_email_controller.rb +++ b/app/controllers/submissions_resend_email_controller.rb @@ -11,7 +11,7 @@ class SubmissionsResendEmailController < ApplicationController def create submitters = @submission.submitters.reject(&:completed_at?).select { |s| s.email.present? && !s.declined_at? } - if Docuseal.multitenant? + if Wabosign.multitenant? recent_submitter_ids = SubmissionEvent.where(submitter_id: submitters.map(&:id), event_type: 'send_email', diff --git a/app/controllers/submitters_autocomplete_controller.rb b/app/controllers/submitters_autocomplete_controller.rb index 22599e58..0b121b23 100644 --- a/app/controllers/submitters_autocomplete_controller.rb +++ b/app/controllers/submitters_autocomplete_controller.rb @@ -31,7 +31,7 @@ class SubmittersAutocompleteController < ApplicationController def search_submitters(submitters, field) if field - if Docuseal.fulltext_search? + if Wabosign.fulltext_search? Submitters.fulltext_search_field(current_user, submitters, params[:q], field) else column = Submitter.arel_table[field.to_sym] diff --git a/app/controllers/submitters_controller.rb b/app/controllers/submitters_controller.rb index 697b3dc1..2ff943f1 100644 --- a/app/controllers/submitters_controller.rb +++ b/app/controllers/submitters_controller.rb @@ -50,7 +50,7 @@ class SubmittersController < ApplicationController def maybe_resend_email_sms(submitter, params) if params[:send_email] == '1' && submitter.email.present? - is_sent_recently = Docuseal.multitenant? && + is_sent_recently = Wabosign.multitenant? && EmailEvent.exists?(email: submitter.email, tag: 'submitter_invitation', emailable: submitter, diff --git a/app/controllers/submitters_send_email_controller.rb b/app/controllers/submitters_send_email_controller.rb index f616c976..5467ebf4 100644 --- a/app/controllers/submitters_send_email_controller.rb +++ b/app/controllers/submitters_send_email_controller.rb @@ -6,7 +6,7 @@ class SubmittersSendEmailController < ApplicationController def create authorize!(:update, @submitter) - if Docuseal.multitenant? && SubmissionEvent.exists?(submitter: @submitter, + if Wabosign.multitenant? && SubmissionEvent.exists?(submitter: @submitter, event_type: 'send_email', created_at: 10.hours.ago..Time.current) Rollbar.warning("Already sent: #{@submitter.id}") if defined?(Rollbar) diff --git a/app/controllers/templates_dashboard_controller.rb b/app/controllers/templates_dashboard_controller.rb index 4497038e..eaaa1ae7 100644 --- a/app/controllers/templates_dashboard_controller.rb +++ b/app/controllers/templates_dashboard_controller.rb @@ -49,9 +49,9 @@ class TemplatesDashboardController < ApplicationController rel = templates.active if params[:q].blank? - if Docuseal.multitenant? ? current_account.testing? : current_account.linked_account_account + if Wabosign.multitenant? ? current_account.testing? : current_account.linked_account_account shared_account_ids = [current_user.account_id] - shared_account_ids << TemplateSharing::ALL_ID if !Docuseal.multitenant? && !current_account.testing? + shared_account_ids << TemplateSharing::ALL_ID if !Wabosign.multitenant? && !current_account.testing? shared_template_ids = TemplateSharing.where(account_id: shared_account_ids).select(:template_id) diff --git a/app/controllers/timestamp_server_controller.rb b/app/controllers/timestamp_server_controller.rb index 40db1544..1eb3b6cd 100644 --- a/app/controllers/timestamp_server_controller.rb +++ b/app/controllers/timestamp_server_controller.rb @@ -9,7 +9,7 @@ class TimestampServerController < ApplicationController TimestampError = Class.new(StandardError) def create - return head :not_found if Docuseal.multitenant? + return head :not_found if Wabosign.multitenant? test_timeserver_url(@encrypted_config.value) if @encrypted_config.value.present? diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 2d8f818f..69b20db5 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -64,7 +64,7 @@ class UsersController < ApplicationController end def update - return redirect_to settings_users_path, notice: I18n.t('unable_to_update_user') if Docuseal.demo? + return redirect_to settings_users_path, notice: I18n.t('unable_to_update_user') if Wabosign.demo? attrs = user_params.compact_blank attrs = attrs.merge(user_params.slice(:archived_at)) if current_ability.can?(:create, @user) @@ -92,7 +92,7 @@ class UsersController < ApplicationController end def destroy - if Docuseal.demo? || @user.id == current_user.id + if Wabosign.demo? || @user.id == current_user.id return redirect_to settings_users_path, notice: I18n.t('unable_to_remove_user') end diff --git a/app/javascript/submission_form/signature_step.vue b/app/javascript/submission_form/signature_step.vue index e568f59c..820beeeb 100644 --- a/app/javascript/submission_form/signature_step.vue +++ b/app/javascript/submission_form/signature_step.vue @@ -320,7 +320,7 @@ class="text-base-content/60 text-xs text-center w-full mt-1 select-none" > {{ t('by_clicking_you_agree_to_the').replace('{button}', buttonText.charAt(0).toUpperCase() + buttonText.slice(1)) }} diff --git a/app/javascript/submission_form/verification_step.vue b/app/javascript/submission_form/verification_step.vue index 59ae6c4c..099c2156 100644 --- a/app/javascript/submission_form/verification_step.vue +++ b/app/javascript/submission_form/verification_step.vue @@ -124,7 +124,7 @@ export default { docId: this.eidEasyData.doc_id, language: this.locale, countryCode: this.countryCode, - sandbox: ['demo.docuseal.tech'].includes(location.host), + sandbox: ['demo.wabosign.tech'].includes(location.host), enabledMethods: { signature: this.eidEasyData.available_methods }, diff --git a/app/javascript/template_builder/area_title.vue b/app/javascript/template_builder/area_title.vue index 561188cc..f9c06d02 100644 --- a/app/javascript/template_builder/area_title.vue +++ b/app/javascript/template_builder/area_title.vue @@ -314,7 +314,7 @@ export default { return this.buildDefaultName(this.field) }, modalContainerEl () { - return this.$el.getRootNode().querySelector('#docuseal_modal_container') + return this.$el.getRootNode().querySelector('#wabosign_modal_container') } }, methods: { diff --git a/app/javascript/template_builder/builder.vue b/app/javascript/template_builder/builder.vue index 5e3f46fb..33087320 100644 --- a/app/javascript/template_builder/builder.vue +++ b/app/javascript/template_builder/builder.vue @@ -634,7 +634,7 @@ <% end %> <% encrypted_config = @encrypted_config || EncryptedConfig.find_or_initialize_by(account: current_account, key: EncryptedConfig::APP_URL_KEY) %> - <% if !Docuseal.multitenant? && can?(:manage, encrypted_config) && !current_account.testing? && ENV['APP_URL'].blank? %> + <% if !Wabosign.multitenant? && can?(:manage, encrypted_config) && !current_account.testing? && ENV['APP_URL'].blank? %> <%= fields_for encrypted_config do |ff| %>
<%= ff.label :value, t('app_url'), class: 'label' %> @@ -142,12 +142,12 @@ <%= svg_icon('info_circle', class: 'hidden md:inline-block w-4 h-4 shrink-0') %>
- <% if !Docuseal.multitenant? || can?(:manage, :disable_decline) %> + <% if !Wabosign.multitenant? || can?(:manage, :disable_decline) %> <%= f.check_box :value, class: 'toggle', checked: account_config.value != false %> <% else %> - " data-turbo="false" data-tip="<%= I18n.t('unlock_with_docuseal_pro') %>" data-on="change" class="flex tooltip"> + " data-turbo="false" data-tip="<%= I18n.t('unlock_with_docuseal_pro') %>" data-on="change" class="flex tooltip"> <%= f.check_box :value, class: 'toggle pointer-events-none', checked: account_config.value != false, disabled: true %> <% end %> @@ -165,12 +165,12 @@ <%= svg_icon('info_circle', class: 'hidden md:inline-block w-4 h-4 shrink-0') %> - <% if !Docuseal.multitenant? || can?(:manage, :delegate_form) %> + <% if !Wabosign.multitenant? || can?(:manage, :delegate_form) %> <%= f.check_box :value, class: 'toggle', checked: account_config.value == true %> <% else %> - " data-turbo="false" data-tip="<%= I18n.t('unlock_with_docuseal_pro') %>" class="flex tooltip"> + " data-turbo="false" data-tip="<%= I18n.t('unlock_with_docuseal_pro') %>" class="flex tooltip"> <%= f.check_box :value, class: 'toggle pointer-events-none', checked: account_config.value == true, disabled: true %> <% end %> @@ -245,7 +245,7 @@ <% end %> <% end %> - <% if !Docuseal.multitenant? || can?(:manage, :personalization_advanced) %> + <% if !Wabosign.multitenant? || can?(:manage, :personalization_advanced) %> <% account_config = AccountConfig.find_or_initialize_by(account: current_account, key: AccountConfig::ENFORCE_SIGNING_ORDER_KEY) %> <% if can?(:manage, account_config) %> <%= form_for account_config, url: account_configs_path, method: :post do |f| %> @@ -264,7 +264,7 @@ <% end %> <% end %> <% end %> - <% if !Docuseal.multitenant? || can?(:manage, :personalization_advanced) %> + <% if !Wabosign.multitenant? || can?(:manage, :personalization_advanced) %> <% account_config = AccountConfig.find_or_initialize_by(account: current_account, key: AccountConfig::WITH_FILE_LINKS_KEY) %> <% if can?(:manage, account_config) %> <%= form_for account_config, url: account_configs_path, method: :post do |f| %> @@ -281,7 +281,7 @@ <% end %> <% end %> <%= render 'extra_preferences' %> - <% if !Docuseal.multitenant? && SearchEntry.table_exists? && (!Docuseal.fulltext_search? || params[:reindex] == 'true') && can?(:manage, EncryptedConfig) %> + <% if !Wabosign.multitenant? && SearchEntry.table_exists? && (!Wabosign.fulltext_search? || params[:reindex] == 'true') && can?(:manage, EncryptedConfig) %>
<%= t('efficient_search_with_search_index') %> @@ -293,7 +293,7 @@ <% end %> <%= render 'compliances' %> <%= render 'integrations' %> - <% if can?(:manage, current_account) && Docuseal.multitenant? && true_user == current_user %> + <% if can?(:manage, current_account) && Wabosign.multitenant? && true_user == current_user %>

<%= t('danger_zone') %> diff --git a/app/views/api_settings/index.html.erb b/app/views/api_settings/index.html.erb index 6c15c755..c5bb0955 100644 --- a/app/views/api_settings/index.html.erb +++ b/app/views/api_settings/index.html.erb @@ -118,7 +118,7 @@

- <%= link_to t('open_full_api_reference'), "#{Docuseal::PRODUCT_URL}/docs/api", class: 'btn btn-warning text-base mt-4 px-8', target: '_blank', rel: 'noopener' %> + <%= link_to t('open_full_api_reference'), "#{Wabosign::PRODUCT_URL}/docs/api", class: 'btn btn-warning text-base mt-4 px-8', target: '_blank', rel: 'noopener' %>
diff --git a/app/views/devise/mailer/reset_password_instructions.html.erb b/app/views/devise/mailer/reset_password_instructions.html.erb index ae3aa1a4..e6e9060c 100644 --- a/app/views/devise/mailer/reset_password_instructions.html.erb +++ b/app/views/devise/mailer/reset_password_instructions.html.erb @@ -5,6 +5,6 @@

<%= t('if_you_didnt_request_this_you_can_ignore_this_email') %>

<%= t('thanks') %>,
- <%= Docuseal.product_name %> + <%= Wabosign.product_name %>

<% content_for(:remove_attribution, true) %> diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb index 350e5169..3cf4b06c 100644 --- a/app/views/devise/sessions/new.html.erb +++ b/app/views/devise/sessions/new.html.erb @@ -1,6 +1,6 @@ <%= content_for(:canonical_url, new_user_session_url) %>
- <%= render 'devise/shared/select_server' if Docuseal.multitenant? %> + <%= render 'devise/shared/select_server' if Wabosign.multitenant? %>

<%= t('sign_in') %>

<%= form_for(resource, as: resource_name, html: { class: 'space-y-6' }, data: { turbo: params[:redir].blank? }, url: session_path(resource_name)) do |f| %> <%= render 'hidden_fields' %> diff --git a/app/views/email_smtp_settings/index.html.erb b/app/views/email_smtp_settings/index.html.erb index 821d8335..e4f5af25 100644 --- a/app/views/email_smtp_settings/index.html.erb +++ b/app/views/email_smtp_settings/index.html.erb @@ -35,7 +35,7 @@ <%= ff.select :authentication, options_for_select([%w[Plain plain], %w[Login login], %w[CRAM-MD5 cram_md5]], value.fetch('authentication', 'plain')), { prompt: true }, required: true, class: 'base-select' %>
- <% if !Docuseal.multitenant? || can?(:manage, :personalization_advanced) %> + <% if !Wabosign.multitenant? || can?(:manage, :personalization_advanced) %>
<%= ff.label :security_label, 'SMTP Security', class: 'label' %>
@@ -50,7 +50,7 @@ <% end %>
<%= ff.label :from_email, t('send_from_email'), class: 'label' %> - <%= ff.email_field :from_email, value: value['from_email'], required: !Docuseal.multitenant?, class: 'base-input' %> + <%= ff.email_field :from_email, value: value['from_email'], required: !Wabosign.multitenant?, class: 'base-input' %>
<% end %>
diff --git a/app/views/esign_settings/_default_signature_row.html.erb b/app/views/esign_settings/_default_signature_row.html.erb index 899f99b3..b8dda50d 100644 --- a/app/views/esign_settings/_default_signature_row.html.erb +++ b/app/views/esign_settings/_default_signature_row.html.erb @@ -2,20 +2,20 @@ <%= svg_icon('discount_check_filled', class: 'w-6 h-6 text-green-500') %> - <%= t('docuseal_trusted_signature') %> + <%= t('wabosign_trusted_signature') %>
<%= svg_icon('circle_question', class: 'w-4 h-4 stroke-1') %>
- " class="btn btn-neutral btn-sm text-white"> + " class="btn btn-neutral btn-sm text-white"> <%= t('unlock_with_docuseal_pro') %>
- <%= button_to settings_esign_path, method: :put, params: { name: Docuseal::AATL_CERT_NAME }, class: 'btn btn-outline btn-neutral btn-xs whitespace-nowrap', title: t('make_default'), disabled: true do %> + <%= button_to settings_esign_path, method: :put, params: { name: Wabosign::AATL_CERT_NAME }, class: 'btn btn-outline btn-neutral btn-xs whitespace-nowrap', title: t('make_default'), disabled: true do %> <%= t('make_default') %> <% end %>
diff --git a/app/views/esign_settings/show.html.erb b/app/views/esign_settings/show.html.erb index f22700b8..74bd96c8 100644 --- a/app/views/esign_settings/show.html.erb +++ b/app/views/esign_settings/show.html.erb @@ -99,14 +99,14 @@ <% end %> - <% unless Docuseal.multitenant? %> + <% unless Wabosign.multitenant? %> <%= render 'default_signature_row' %> <% end %>
<% encrypted_config = EncryptedConfig.find_or_initialize_by(account: current_account, key: EncryptedConfig::TIMESTAMP_SERVER_URL_KEY) %> - <% if !Docuseal.multitenant? && can?(:manage, encrypted_config) %> + <% if !Wabosign.multitenant? && can?(:manage, encrypted_config) %>

diff --git a/app/views/invitations/edit.html.erb b/app/views/invitations/edit.html.erb index 1513d612..2f348964 100644 --- a/app/views/invitations/edit.html.erb +++ b/app/views/invitations/edit.html.erb @@ -1,7 +1,7 @@

<%= svg_icon('waving_hand', class: 'h-10 w-10') %> - <%= t('welcome_to_product_name', product_name: Docuseal.product_name) %> + <%= t('welcome_to_product_name', product_name: Wabosign.product_name) %>

<%= form_for(resource, as: resource_name, url: invitation_path, html: { method: :put, class: 'space-y-6' }) do |f| %>
diff --git a/app/views/layouts/_head_tags.html.erb b/app/views/layouts/_head_tags.html.erb index a6426f4f..5dd01fcf 100644 --- a/app/views/layouts/_head_tags.html.erb +++ b/app/views/layouts/_head_tags.html.erb @@ -1,4 +1,4 @@ - <%= content_for(:html_title) || (signed_in? ? 'DocuSeal' : 'DocuSeal | Open Source Document Signing') %> + <%= content_for(:html_title) || (signed_in? ? 'WaboSign' : 'WaboSign | Open Source Document Signing') %> <%= render 'shared/meta' %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 09cfb218..9b3bd4d4 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,8 +1,8 @@ - + <%= render 'layouts/head_tags' %> - <% if Docuseal.enable_pwa? %> + <% if Wabosign.enable_pwa? %> <% end %> diff --git a/app/views/layouts/form.html.erb b/app/views/layouts/form.html.erb index 756f8f83..4c7d57e5 100644 --- a/app/views/layouts/form.html.erb +++ b/app/views/layouts/form.html.erb @@ -1,5 +1,5 @@ - + <%= render 'layouts/head_tags' %> diff --git a/app/views/layouts/plain.html.erb b/app/views/layouts/plain.html.erb index 88916977..56796f5c 100644 --- a/app/views/layouts/plain.html.erb +++ b/app/views/layouts/plain.html.erb @@ -1,5 +1,5 @@ - + <%= render 'layouts/head_tags' %> diff --git a/app/views/mcp_settings/index.html.erb b/app/views/mcp_settings/index.html.erb index 736f011b..a6116658 100644 --- a/app/views/mcp_settings/index.html.erb +++ b/app/views/mcp_settings/index.html.erb @@ -36,7 +36,7 @@

<%= t('connect_to_docuseal_mcp') %>

<%= t('add_the_following_to_your_mcp_client_configuration') %>:

- <% text = JSON.pretty_generate({ mcpServers: { docuseal: { type: 'http', url: "#{root_url(Docuseal.default_url_options)}mcp", headers: { Authorization: "Bearer #{@mcp_token.token}" } } } }).strip %> + <% text = JSON.pretty_generate({ mcpServers: { wabosign: { type: 'http', url: "#{root_url(Wabosign.default_url_options)}mcp", headers: { Authorization: "Bearer #{@mcp_token.token}" } } } }).strip %> <%= render 'shared/clipboard_copy', icon: 'copy', text:, class: 'btn btn-ghost text-white', icon_class: 'w-6 h-6 text-white', copy_title: t('copy'), copied_title: t('copied') %> diff --git a/app/views/notifications_settings/_reminder_form.html.erb b/app/views/notifications_settings/_reminder_form.html.erb index 40a077b7..d38ccc22 100644 --- a/app/views/notifications_settings/_reminder_form.html.erb +++ b/app/views/notifications_settings/_reminder_form.html.erb @@ -2,7 +2,7 @@ <%= f.hidden_field :key %>
<% record = Struct.new(:first_duration, :second_duration, :third_duration).new(*(f.object.value || {}).values_at('first_duration', 'second_duration', 'third_duration')) %> - <% durations = (Docuseal.multitenant? ? AccountConfigs::REMINDER_DURATIONS.except('one_hour', 'two_hours') : AccountConfigs::REMINDER_DURATIONS).keys.map { |v| [t(v.underscore), v] } %> + <% durations = (Wabosign.multitenant? ? AccountConfigs::REMINDER_DURATIONS.except('one_hour', 'two_hours') : AccountConfigs::REMINDER_DURATIONS).keys.map { |v| [t(v.underscore), v] } %>
<%= f.fields_for :value, record do |ff| %> diff --git a/app/views/notifications_settings/_reminder_placeholder.html.erb b/app/views/notifications_settings/_reminder_placeholder.html.erb index 38b05ce5..f030668d 100644 --- a/app/views/notifications_settings/_reminder_placeholder.html.erb +++ b/app/views/notifications_settings/_reminder_placeholder.html.erb @@ -7,7 +7,7 @@

<%= t('send_automatic_email_reminders_to_your_recipients') %>
- " data-turbo="false"> + " data-turbo="false"> <%= t('learn_more') %>

diff --git a/app/views/pages/landing.html.erb b/app/views/pages/landing.html.erb index 78cc823e..4f20ea0f 100644 --- a/app/views/pages/landing.html.erb +++ b/app/views/pages/landing.html.erb @@ -5,11 +5,11 @@
<%= render 'shared/logo', width: '100', height: '100' %>

- DocuSeal + WaboSign

- <% if Docuseal.version.present? %> - - v<%= Docuseal.version %> + <% if Wabosign.version.present? %> + + v<%= Wabosign.version %> <% end %>
@@ -27,7 +27,7 @@

Easy to Start

- Run on your own host using Docker container, or deploy on your favorite managed PaaS with a single click. + Run on your own host using Docker container, or deploy on your favorite managed PaaS with a single click.

@@ -41,7 +41,7 @@

Mobile Optimized

Review and sign digital documents online from any device. - Docuseal document forms are optimized for screens of all sizes. + Wabosign document forms are optimized for screens of all sizes.

@@ -67,7 +67,7 @@

Open Source

- Source code is available under github.com/docusealco.
+ Source code is available under github.com/docusealco.
Open-source contributors are always ready to help!

diff --git a/app/views/personalization_settings/_documents_copy_email_form.html.erb b/app/views/personalization_settings/_documents_copy_email_form.html.erb index e4f777d4..5e37cf6a 100644 --- a/app/views/personalization_settings/_documents_copy_email_form.html.erb +++ b/app/views/personalization_settings/_documents_copy_email_form.html.erb @@ -33,7 +33,7 @@ <%= ff.check_box :attach_audit_log, { checked: ff.object.attach_audit_log != false, class: 'toggle' }, 'true', 'false' %>
- <% unless Docuseal.multitenant? %> + <% unless Wabosign.multitenant? %>
<%= t('bcc_recipients') %> @@ -41,7 +41,7 @@ <%= ff.check_box :bcc_recipients, { checked: ff.object.bcc_recipients == true, class: 'toggle' }, 'true', 'false' %>
<% end %> - <% if !Docuseal.multitenant? || can?(:manage, :personalization_advanced) %> + <% if !Wabosign.multitenant? || can?(:manage, :personalization_advanced) %>
<%= t('send_emails_automatically_on_completion') %> diff --git a/app/views/personalization_settings/_form_policy_links_form.html.erb b/app/views/personalization_settings/_form_policy_links_form.html.erb index cabf1b83..29df8379 100644 --- a/app/views/personalization_settings/_form_policy_links_form.html.erb +++ b/app/views/personalization_settings/_form_policy_links_form.html.erb @@ -1,4 +1,4 @@ -<% unless Docuseal.multitenant? %> +<% unless Wabosign.multitenant? %>
diff --git a/app/views/personalization_settings/_logo_placeholder.html.erb b/app/views/personalization_settings/_logo_placeholder.html.erb index 9a8358e3..a4759ad3 100644 --- a/app/views/personalization_settings/_logo_placeholder.html.erb +++ b/app/views/personalization_settings/_logo_placeholder.html.erb @@ -7,7 +7,7 @@

<%= t('display_your_company_name_and_logo_when_signing_documents') %>
- " data-turbo="false"> + " data-turbo="false"> <%= t('learn_more') %>

diff --git a/app/views/pwa/manifest.json.erb b/app/views/pwa/manifest.json.erb index 68022061..18aafb96 100644 --- a/app/views/pwa/manifest.json.erb +++ b/app/views/pwa/manifest.json.erb @@ -1,6 +1,6 @@ { - "name": "<%= Docuseal.product_name %>", - "short_name": "<%= Docuseal.product_name %>", + "name": "<%= Wabosign.product_name %>", + "short_name": "<%= Wabosign.product_name %>", "id": "/", "icons": [ { @@ -18,7 +18,7 @@ "display": "standalone", "scope": "/", "orientation": "any", - "description": "<%= Docuseal.product_name %> is an open source platform that provides secure and efficient digital document signing and processing.", + "description": "<%= Wabosign.product_name %> is an open source platform that provides secure and efficient digital document signing and processing.", "categories": ["productivity", "utilities"], "theme_color": "#FAF7F4", "background_color": "#FAF7F4" diff --git a/app/views/shared/_github.html.erb b/app/views/shared/_github.html.erb index 7fa11f0b..4060b7ac 100644 --- a/app/views/shared/_github.html.erb +++ b/app/views/shared/_github.html.erb @@ -1,4 +1,4 @@ - + <%= svg_icon('start', class: 'h-3 w-3') %> 16k diff --git a/app/views/shared/_github_button.html.erb b/app/views/shared/_github_button.html.erb index 5bb4bdde..369c891e 100644 --- a/app/views/shared/_github_button.html.erb +++ b/app/views/shared/_github_button.html.erb @@ -1,4 +1,4 @@ - + diff --git a/app/views/shared/_meta.html.erb b/app/views/shared/_meta.html.erb index a6d492f9..d2908749 100644 --- a/app/views/shared/_meta.html.erb +++ b/app/views/shared/_meta.html.erb @@ -1,14 +1,14 @@ -<% if Docuseal.demo? || (request.path != '/' && !devise_controller?) %> +<% if Wabosign.demo? || (request.path != '/' && !devise_controller?) %> <% end %> -<% title = content_for(:html_title) || (signed_in? ? 'DocuSeal' : 'DocuSeal | Open Source Document Signing') %> +<% title = content_for(:html_title) || (signed_in? ? 'WaboSign' : 'WaboSign | Open Source Document Signing') %> <% description = content_for(:html_description) || 'Open source, self-hosted tool to streamline document filling and signing. Create custom PDF forms to complete and sign with an easy to use online tool.' %> - + <% if content_for(:disable_image_preview) %> diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index c647dc27..4fe90a4a 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -10,8 +10,8 @@
<% if signed_in? %>
- <% if Docuseal.demo? %> - + <% if Wabosign.demo? %> + <%= t('sign_up') %>
<% elsif submitters.size == 1 %> - + <%= f.text_area :emails, required: true, class: 'base-textarea w-full !text-lg', placeholder: "#{t('type_emails_here')}...", rows: 2 %> diff --git a/app/views/submissions/_send_email_base.html.erb b/app/views/submissions/_send_email_base.html.erb index f143d875..88ba0cdc 100644 --- a/app/views/submissions/_send_email_base.html.erb +++ b/app/views/submissions/_send_email_base.html.erb @@ -22,7 +22,7 @@ <% end %>
- <% if !Docuseal.multitenant? && !can_send_emails %> + <% if !Wabosign.multitenant? && !can_send_emails %>
<%= svg_icon('info_circle', class: 'w-6 h-6') %>
diff --git a/app/views/submissions/_send_sms_button.html.erb b/app/views/submissions/_send_sms_button.html.erb index b8df27cf..203a6099 100644 --- a/app/views/submissions/_send_sms_button.html.erb +++ b/app/views/submissions/_send_sms_button.html.erb @@ -1,5 +1,5 @@
- <%= link_to submitter.sent_at? ? t('re_send_sms') : t('send_sms'), Docuseal.multitenant? ? console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/plans") : "#{Docuseal::CLOUD_URL}/sign_up?#{{ redir: "#{Docuseal::CONSOLE_URL}/on_premises" }.to_query}", class: 'btn btn-sm btn-primary text-gray-400 w-full' %> + <%= link_to submitter.sent_at? ? t('re_send_sms') : t('send_sms'), Wabosign.multitenant? ? console_redirect_index_path(redir: "#{Wabosign::CONSOLE_URL}/plans") : "#{Wabosign::CLOUD_URL}/sign_up?#{{ redir: "#{Wabosign::CONSOLE_URL}/on_premises" }.to_query}", class: 'btn btn-sm btn-primary text-gray-400 w-full' %>
diff --git a/app/views/submissions_dashboard/index.html.erb b/app/views/submissions_dashboard/index.html.erb index d61943d6..6686caf7 100644 --- a/app/views/submissions_dashboard/index.html.erb +++ b/app/views/submissions_dashboard/index.html.erb @@ -1,6 +1,6 @@ <% filter_params = params.permit(Submissions::Filter::ALLOWED_PARAMS).compact_blank %> <% is_show_tabs = (@pagy.count.nil? || @pagy.count >= 5) || params[:status].present? || filter_params.present? %> -<% if Docuseal.demo? %><%= render 'shared/demo_alert' %><% end %> +<% if Wabosign.demo? %><%= render 'shared/demo_alert' %><% end %>
diff --git a/app/views/submissions_preview/completed.html.erb b/app/views/submissions_preview/completed.html.erb index 60370a46..f4448ad6 100644 --- a/app/views/submissions_preview/completed.html.erb +++ b/app/views/submissions_preview/completed.html.erb @@ -22,7 +22,7 @@
- <% if Docuseal.multitenant? || Accounts.can_send_emails?(@submission.account) %> + <% if Wabosign.multitenant? || Accounts.can_send_emails?(@submission.account) %> <%= form_for '', url: send_submission_email_index_path, method: :post, html: { class: 'space-y-4' } do |f| %>
<%= f.hidden_field :submission_slug, value: @submission.slug %> diff --git a/app/views/submit_form/_banner.html.erb b/app/views/submit_form/_banner.html.erb index cf07a792..727f310e 100644 --- a/app/views/submit_form/_banner.html.erb +++ b/app/views/submit_form/_banner.html.erb @@ -1,3 +1,3 @@
- <%= render 'submit_form/docuseal_logo' %> + <%= render 'submit_form/wabosign_logo' %>
diff --git a/app/views/submit_form/_docuseal_logo.html.erb b/app/views/submit_form/_docuseal_logo.html.erb index 645f7fc5..c633f860 100644 --- a/app/views/submit_form/_docuseal_logo.html.erb +++ b/app/views/submit_form/_docuseal_logo.html.erb @@ -1,4 +1,4 @@ <%= render 'shared/logo', class: 'w-9 h-9 md:w-12 md:h-12' %> - <%= Docuseal.product_name %> + <%= Wabosign.product_name %> diff --git a/app/views/submit_form/_submission_form.html.erb b/app/views/submit_form/_submission_form.html.erb index b56123ff..0abc48ec 100644 --- a/app/views/submit_form/_submission_form.html.erb +++ b/app/views/submit_form/_submission_form.html.erb @@ -2,4 +2,4 @@ <% data_fields = Submissions.filtered_conditions_fields(submitter).to_json %> <% invite_submitters = (submitter.submission.template_submitters || submitter.submission.template.submitters).select { |s| s['invite_by_uuid'] == submitter.uuid && submitter.submission.submitters.none? { |e| e.uuid == s['uuid'] } }.to_json %> <% optional_invite_submitters = (submitter.submission.template_submitters || submitter.submission.template.submitters).select { |s| s['optional_invite_by_uuid'] == submitter.uuid && submitter.submission.submitters.none? { |e| e.uuid == s['uuid'] } }.to_json %> - + diff --git a/app/views/submit_form/completed.html.erb b/app/views/submit_form/completed.html.erb index 85ec64ea..d3650e62 100644 --- a/app/views/submit_form/completed.html.erb +++ b/app/views/submit_form/completed.html.erb @@ -19,7 +19,7 @@
- <% if (Docuseal.multitenant? || Accounts.can_send_emails?(@submitter.account)) && @submitter.email.present? %> + <% if (Wabosign.multitenant? || Accounts.can_send_emails?(@submitter.account)) && @submitter.email.present? %> <%= button_to button_title(title: t('send_copy_to_email'), disabled_with: t('sending'), icon: svg_icon('mail_forward', class: 'w-6 h-6')), send_submission_email_index_path, params: { submitter_slug: @submitter.slug }, class: 'white-button w-full' %> diff --git a/app/views/submit_form/email_2fa.html.erb b/app/views/submit_form/email_2fa.html.erb index 319a3c80..2e7f1d19 100644 --- a/app/views/submit_form/email_2fa.html.erb +++ b/app/views/submit_form/email_2fa.html.erb @@ -1,4 +1,4 @@ -<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | DocuSeal") %> +<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | WaboSign") %> <% I18n.with_locale(@submitter.account.locale) do %> <% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @submitter.account.name)) %> <% end %> diff --git a/app/views/submit_form/show.html.erb b/app/views/submit_form/show.html.erb index a08cbee5..d6c02948 100644 --- a/app/views/submit_form/show.html.erb +++ b/app/views/submit_form/show.html.erb @@ -1,4 +1,4 @@ -<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | DocuSeal") %> +<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | WaboSign") %> <% I18n.with_locale(@submitter.account.locale) do %> <% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @submitter.account.name)) %> <% end %> diff --git a/app/views/submit_form_draw_signature/show.html.erb b/app/views/submit_form_draw_signature/show.html.erb index f1ffebf0..952413e1 100644 --- a/app/views/submit_form_draw_signature/show.html.erb +++ b/app/views/submit_form_draw_signature/show.html.erb @@ -1,5 +1,5 @@ - + <%= render 'layouts/head_tags' %> diff --git a/app/views/submitter_mailer/documents_copy_email.html.erb b/app/views/submitter_mailer/documents_copy_email.html.erb index 9e230cf2..8c49c75b 100644 --- a/app/views/submitter_mailer/documents_copy_email.html.erb +++ b/app/views/submitter_mailer/documents_copy_email.html.erb @@ -5,7 +5,7 @@

<%= t('please_check_the_copy_of_your_name_in_the_email_attachments', name: @submitter.submission.name || @submitter.submission.template.name) %>

<%= t('alternatively_you_can_review_and_download_your_copy_using_the_link_below') %>

- <%= link_to @submitter.submission.name || @submitter.submission.template.name, submissions_preview_url(@submitter.submission.slug, { sig: @sig, host: @custom_domain || ENV.fetch('EMAIL_HOST', Docuseal.default_url_options[:host]) }.compact) %> + <%= link_to @submitter.submission.name || @submitter.submission.template.name, submissions_preview_url(@submitter.submission.slug, { sig: @sig, host: @custom_domain || ENV.fetch('EMAIL_HOST', Wabosign.default_url_options[:host]) }.compact) %>

<%= t('thanks') %>,
<%= @current_account.name %> diff --git a/app/views/submitter_mailer/invitation_email.html.erb b/app/views/submitter_mailer/invitation_email.html.erb index 408016df..adcff2f8 100644 --- a/app/views/submitter_mailer/invitation_email.html.erb +++ b/app/views/submitter_mailer/invitation_email.html.erb @@ -1,12 +1,12 @@ <% if @body.present? %> <%= render 'custom_content', content: @body, submitter: @submitter %> <% if !@body.match?(ReplaceEmailVariables::SUBMITTER_LINK) && !@body.match?(ReplaceEmailVariables::SUBMITTER_ID) && !@body.match?(ReplaceEmailVariables::SUBMISSION_LINK) && !@body.match?(ReplaceEmailVariables::TEMPLATE_ID) && !@submitter.submission.source.in?(%w[api embed]) %> -

<%= link_to nil, submit_form_url(slug: @submitter.slug, t: SubmissionEvents.build_tracking_param(@submitter, 'click_email'), host: @custom_domain || ENV.fetch('EMAIL_HOST', Docuseal.default_url_options[:host])) %>

+

<%= link_to nil, submit_form_url(slug: @submitter.slug, t: SubmissionEvents.build_tracking_param(@submitter, 'click_email'), host: @custom_domain || ENV.fetch('EMAIL_HOST', Wabosign.default_url_options[:host])) %>

<% end %> <% else %>

<%= t('hi_there') %>,

<%= I18n.t(@submitter.with_signature_fields? ? :you_have_been_invited_to_sign_the_name : :you_have_been_invited_to_submit_the_name_form, name: @submitter.submission.name || @submitter.submission.template.name) %>

-

<%= link_to I18n.t(@submitter.with_signature_fields? ? :review_and_sign : :review_and_submit), submit_form_url(slug: @submitter.slug, t: SubmissionEvents.build_tracking_param(@submitter, 'click_email'), host: @custom_domain || ENV.fetch('EMAIL_HOST', Docuseal.default_url_options[:host])) %>

+

<%= link_to I18n.t(@submitter.with_signature_fields? ? :review_and_sign : :review_and_submit), submit_form_url(slug: @submitter.slug, t: SubmissionEvents.build_tracking_param(@submitter, 'click_email'), host: @custom_domain || ENV.fetch('EMAIL_HOST', Wabosign.default_url_options[:host])) %>

<%= t('please_contact_us_by_replying_to_this_email_if_you_have_any_questions') %>

<%= t('thanks') %>,
<%= @current_account.name %> diff --git a/app/views/templates/_dropzone.html.erb b/app/views/templates/_dropzone.html.erb index 5ddec4c5..ab26675e 100644 --- a/app/views/templates/_dropzone.html.erb +++ b/app/views/templates/_dropzone.html.erb @@ -5,7 +5,7 @@

- + <%= svg_icon('cloud_upload', class: 'w-10 h-10') %> @@ -15,7 +15,7 @@
<%= t('click_to_upload_or_drag_and_drop_html') %>
- <% if Docuseal.multitenant? %> + <% if Wabosign.multitenant? %> <%= t('or_add_from') %> <%= svg_icon('brand_gdrive', class: 'w-4 h-4 ml-1') %> @@ -30,7 +30,7 @@
- " multiple> + " multiple>
diff --git a/app/views/templates/_embedding.html.erb b/app/views/templates/_embedding.html.erb index 468a51fa..03bb7056 100644 --- a/app/views/templates/_embedding.html.erb +++ b/app/views/templates/_embedding.html.erb @@ -55,8 +55,8 @@
- <%= link_to t('learn_more'), console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/embedding/form"), target: '_blank', data: { turbo: false }, class: 'btn btn-ghost text-gray-100 flex', rel: 'noopener' %> - + @@ -78,7 +78,7 @@ -
<script src="<%= Docuseal::CDN_URL %>/js/form.js"></script>
+      
<script src="<%= Wabosign::CDN_URL %>/js/form.js"></script>
 
 <docuseal-form data-src="<%= start_form_url(slug: template.slug) %>"></docuseal-form>
 
@@ -88,7 +88,7 @@
<% end %> diff --git a/config/application.rb b/config/application.rb index a2bcddaf..2bdb81af 100644 --- a/config/application.rb +++ b/config/application.rb @@ -15,7 +15,7 @@ require_relative '../lib/normalize_client_ip_middleware' Bundler.require(*Rails.groups) -module DocuSeal +module WaboSign class Application < Rails::Application config.load_defaults 8.1 diff --git a/config/database.yml b/config/database.yml index cedeaa09..99f7adf7 100644 --- a/config/database.yml +++ b/config/database.yml @@ -5,11 +5,11 @@ default: &default development: <<: *default - database: docuseal_dev + database: wabosign_dev test: <<: *default - database: docuseal_test + database: wabosign_test production: <% if !ENV['DATABASE_HOST'].to_s.empty? %> diff --git a/config/dotenv.rb b/config/dotenv.rb index cb0f8e7c..e4aae052 100644 --- a/config/dotenv.rb +++ b/config/dotenv.rb @@ -6,12 +6,12 @@ if ENV['RAILS_ENV'] == 'production' workdir = ENV.fetch('WORKDIR', '.') if File.exist?(workdir) && File.stat(workdir).uid != 2000 - puts 'Changing the owner of the docuseal directory...' unless Dir.empty?(workdir) + puts 'Changing the owner of the wabosign directory...' unless Dir.empty?(workdir) FileUtils.chown_R(2000, 2000, workdir) end rescue StandardError - puts 'Unable to change docuseal directory owner' + puts 'Unable to change wabosign directory owner' end end @@ -33,7 +33,7 @@ if ENV['RAILS_ENV'] == 'production' require 'dotenv' require 'securerandom' - dotenv_path = "#{ENV.fetch('WORKDIR', '.')}/docuseal.env" + dotenv_path = "#{ENV.fetch('WORKDIR', '.')}/wabosign.env" unless File.exist?(dotenv_path) default_env = <<~TEXT diff --git a/config/initializers/active_storage.rb b/config/initializers/active_storage.rb index 9481cb2d..dc28f33b 100644 --- a/config/initializers/active_storage.rb +++ b/config/initializers/active_storage.rb @@ -22,7 +22,7 @@ ActiveSupport.on_load(:active_storage_blob) do def self.proxy_url(blob, expires_at: nil, filename: nil, host: nil) Rails.application.routes.url_helpers.blobs_proxy_url( signed_uuid: blob.signed_uuid(expires_at:), filename: filename || blob.filename, - **Docuseal.default_url_options, + **Wabosign.default_url_options, **{ host: }.compact ) end diff --git a/config/locales/i18n.yml b/config/locales/i18n.yml index 0739846b..12f3e9a3 100644 --- a/config/locales/i18n.yml +++ b/config/locales/i18n.yml @@ -80,15 +80,15 @@ en: &en accessiable_by: Accessible by team_access: Team access document_download_filename_format: Document download filename format - docuseal_trusted_signature: DocuSeal Trusted Signature + wabosign_trusted_signature: WaboSign Trusted Signature hello_name: Hi %{name} you_are_invited_to_product_name: You are invited to %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'You have been invited to %{account_name} %{product_name}. Please sign up using the link below:' sent_using_product_name_in_testing_mode_html: 'Sent using %{product_name} in testing mode' sent_using_product_name_free_document_signing_html: 'Sent using %{product_name} free document signing.' - sent_with_docuseal_pro_html: 'Sent with DocuSeal Pro' - show_send_with_docuseal_pro_attribution_in_emails_html: Show "Sent with DocuSeal Pro" attribution in emails - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Sign documents with trusted certificate provided by DocuSeal. Your documents and data are never shared with DocuSeal. PDF checksum is provided to generate a trusted signature. + sent_with_docuseal_pro_html: 'Sent with WaboSign Pro' + show_send_with_docuseal_pro_attribution_in_emails_html: Show "Sent with WaboSign Pro" attribution in emails + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Sign documents with trusted certificate provided by WaboSign. Your documents and data are never shared with WaboSign. PDF checksum is provided to generate a trusted signature. you_have_been_invited_to_submit_the_name_form: 'You have been invited to submit the "%{name}" form.' you_have_been_invited_to_sign_the_name: 'You have been invited to sign the "%{name}".' alternatively_you_can_review_and_download_your_copy_using_the_link_below: "Alternatively, you can review and download your copy using the link below:" @@ -190,7 +190,7 @@ en: &en profile_details: Profile Details sign_up_with_google: Sign up with Google sign_up_with_microsoft: Sign up with Microsoft - by_creating_an_account_you_agree_to_our_html: 'By creating an account, you agree to our Privacy Policy and Terms of Service.' + by_creating_an_account_you_agree_to_our_html: 'By creating an account, you agree to our Privacy Policy and Terms of Service.' enter_email_to_continue: Enter email to continue account: Account preferences: Preferences @@ -212,7 +212,7 @@ en: &en combine_completed_documents_and_audit_log: Combine completed documents and Audit Log salesforce_integration: Salesforce Integration salesforce_has_been_connected: Salesforce has been connected. - connect_salesforce_account_to_integrate_with_docuseal: Connect Salesforce account to integrate with DocuSeal + connect_salesforce_account_to_integrate_with_docuseal: Connect Salesforce account to integrate with WaboSign re_connect_salesforce: Re-connect Salesforce connect_salesforce: Connect Salesforce danger_zone: Danger Zone @@ -241,13 +241,13 @@ en: &en resetting_password: Resetting password sign_in_with_name_account: 'Sign in with %{name} account' two_factor_code_from_authenticator_app: Two-Factor Code from Authenticator App - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Sign up in DocuSeal Console to upgrade. On-premises app is completely standalone, Console is used only to manage your license. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Sign up in WaboSign Console to upgrade. On-premises app is completely standalone, Console is used only to manage your license. send_from_email: Send from Email optional: optional save: Save saving: Saving changes_have_been_saved: Changes have been saved. - unlock_with_docuseal_pro: Unlock with DocuSeal Pro + unlock_with_docuseal_pro: Unlock with WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Use your own certificates to sign and verify PDF files. upload_certificate: Upload Certificate name: Name @@ -347,7 +347,7 @@ en: &en password_has_been_changed: Password has been changed. email_integration: Email Integration send_via_connected_email: Send via connected email - activate_with_docuseal_pro: Activate with DocuSeal Pro + activate_with_docuseal_pro: Activate with WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Send signature request to your recipients directly from your email connect_gmail: Connect Gmail re_connect_gmail: Re-connect Gmail @@ -427,7 +427,7 @@ en: &en upgrade_to_send_unlimited_signature_requests: Upgrade to send unlimited signature requests add_without_sending: Add without sending upgade_now: Upgrade Now - send_signature_request_emails_without_limits_with_docuseal_pro: Send signature request emails without limits with DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Send signature request emails without limits with WaboSign Pro count_emails_used: '%{count} emails used' has_been_connected: has been connected sms_not_configured: SMS not Configured @@ -529,7 +529,7 @@ en: &en new_user: New User unarchive: Unarchive last_session: Last session - unlock_more_user_roles_with_docuseal_pro: Unlock more user roles with DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Unlock more user roles with WaboSign Pro. view_active: View Active team_account: Team account team_accounts: Team Accounts @@ -747,7 +747,7 @@ en: &en use_otp_code_to_sign_in_or_click_the_link_below_html: 'Use %{code} code to sign in or click the link below:' complete_sign_in: Complete Sign In please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Please reply to this email if you don't recognize this sign in attempt. - docuseal_support: DocuSeal Support + wabosign_support: WaboSign Support use_the_edit_form_to_move_it_to_another_team: Use the edit form to move it to another team. too_many_sms_attempts_try_again_in_a_few_seconds: Too many SMS attempts. Try again in a few seconds. number_phone_number_is_invalid: "+%{number} phone number is invalid" @@ -756,25 +756,25 @@ en: &en seamlessly_automate_your_document_signing_process_with_make_com: Seamlessly automate your document signing process with Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Find suitable Zapier templates to automate your workflow. get_started: Get started - click_here_to_learn_more_about_user_roles_and_permissions_html: 'Click here to learn more about user roles and permissions.' + click_here_to_learn_more_about_user_roles_and_permissions_html: 'Click here to learn more about user roles and permissions.' count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 signature request emails sent this month. Upgrade to Pro to send unlimited signature request emails.' test_mode_emails_limit_will_be_reset_within_24_hours: Test mode emails limit will be reset within 24 hours. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: On a scale of 1 to 10, how satisfied are you with the DocuSeal product? + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: On a scale of 1 to 10, how satisfied are you with the WaboSign product? tell_us_more_about_your_experience: Tell us more about your experience extremely_dissatisfied: Extremely Dissatisfied extremely_satisfied: Extremely Satisfied your_pro_plan_payment_is_overdue: Your Pro plan payment is overdue. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: Click here to update your payment details and clear the invoice to ensure uninterrupted service. overdue_payment: Overdue Payment - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Your Pro Plan has been suspended due to unpaid invoices. You can update your payment details to settle the invoice and continue using DocuSeal or cancel your subscription. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Your Pro Plan has been suspended due to unpaid invoices. You can update your payment details to settle the invoice and continue using WaboSign or cancel your subscription. manage_subscription: Manage Subscription submission_created_by_email_html: 'Submission created by %{email}' submission_created_by_email_via_source_html: 'Submission created by %{email} via %{source}' submission_created_via_source_html: 'Submission created via %{source}' pro_user_seats_used: Pro user seats used manage_plan: Manage plan - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: This submission has multiple signers, which prevents the use of a sharing link as it's unclear which signer is responsible for specific fields. To resolve this, follow this guide to define the default signer details. - welcome_to_docuseal: Welcome to DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: This submission has multiple signers, which prevents the use of a sharing link as it's unclear which signer is responsible for specific fields. To resolve this, follow this guide to define the default signer details. + welcome_to_docuseal: Welcome to WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Start a quick tour to learn how to create and send your first document start_tour: Start Tour name_a_z: Name A-Z @@ -850,13 +850,13 @@ en: &en use_otp_code_to_access_the_api_key_html: Use %{code} code to access the API key. please_reply_to_this_email_if_you_dont_recognize_this_request: Please reply to this email if you don't recognize this request. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Your user account has been archived. Contact your administrator to restore access to your account. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Your email could not be reached. This may happen if there was a typo in your address or if your mailbox is not available. Please contact support@docuseal.com to log in. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Your email could not be reached. This may happen if there was a typo in your address or if your mailbox is not available. Please contact support@wabosign.com to log in. efficient_search_with_search_index: Efficient search with search index reindex: Reindex build_search_index: Build Search Index require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: Require two-factor authentication (2FA) with an authenticator app (e.g., Google Authenticator, Authy). All users signing documents must pass the second factor verification using a secure code in addition to their password. - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: "Add a unique Signature ID and timestamp to each signature for audit and traceability purposes along with the timestamp. Part of DocuSeal's 21 CFR Part 11 compliance settings." - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Require signers to provide a reason for signing before completing their signature (e.g., approvals, certifications). Part of DocuSeal's 21 CFR Part 11 compliance settings." + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: "Add a unique Signature ID and timestamp to each signature for audit and traceability purposes along with the timestamp. Part of WaboSign's 21 CFR Part 11 compliance settings." + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Require signers to provide a reason for signing before completing their signature (e.g., approvals, certifications). Part of WaboSign's 21 CFR Part 11 compliance settings." allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Allow signers to create signatures by typing their name instead of drawing or uploading one. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Allow signers to resubmit forms after completion, useful when corrections or multiple submissions are needed. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Allow recipients to decline signing a document. The decline reason notification will be sent to the signature requester. @@ -931,7 +931,7 @@ en: &en mcp_token_has_been_removed: MCP token has been removed. enable_mcp_server: Enable MCP server all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: All existing MCP connections will be stopped immediately when this setting is disabled. - connect_to_docuseal_mcp: Connect to DocuSeal MCP + connect_to_docuseal_mcp: Connect to WaboSign MCP add_the_following_to_your_mcp_client_configuration: Add the following to your MCP client configuration works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Works with Claude Desktop, Cursor, Windsurf, VS Code, and any MCP-compatible client. your_email_address_has_been_changed: Your email address has been changed @@ -1031,7 +1031,7 @@ en: &en settings: 'Settings' settings_account_description: 'With comprehensive account settings, you can customize the eSigning experience and invite more users.' support: 'Support' - support_description: 'You can use our self-service AI assistant or email us at support@docuseal.com if you have any questions.' + support_description: 'You can use our self-service AI assistant or email us at support@wabosign.com if you have any questions.' settings_template_description: 'Use this button to access your account settings page.' doorkeeper: scopes: @@ -1133,15 +1133,15 @@ es: &es awaiting_completion_by_the_other_party: "Esperando la finalización por la otra parte" enforce_recipients_order: 'Hacer cumplir el orden de los destinatarios' first_party: 'Primera Parte' - docuseal_trusted_signature: Firma de confianza DocuSeal + wabosign_trusted_signature: Firma de confianza WaboSign hello_name: Hola %{name} you_are_invited_to_product_name: Estás invitado a %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'Has sido invitado a %{account_name} %{product_name}. Por favor, regístrate usando el enlace a continuación:' sent_using_product_name_in_testing_mode_html: 'Enviado usando %{product_name} en Modo de Prueba' sent_using_product_name_free_document_signing_html: 'Enviado usando la firma de documentos gratuita de %{product_name}.' - sent_with_docuseal_pro_html: 'Enviado con DocuSeal Pro' - show_send_with_docuseal_pro_attribution_in_emails_html: Mostrar el mensaje "Enviado con DocuSeal Pro" en los correos electrónicos - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Firme documentos con un certificado de confianza proporcionado por DocuSeal. Sus documentos y datos nunca se comparten con DocuSeal. Se proporciona un checksum de PDF para generar una firma de confianza. + sent_with_docuseal_pro_html: 'Enviado con WaboSign Pro' + show_send_with_docuseal_pro_attribution_in_emails_html: Mostrar el mensaje "Enviado con WaboSign Pro" en los correos electrónicos + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Firme documentos con un certificado de confianza proporcionado por WaboSign. Sus documentos y datos nunca se comparten con WaboSign. Se proporciona un checksum de PDF para generar una firma de confianza. hi_there: Hola thanks: Gracias you_have_been_invited_to_submit_the_name_form: 'Has sido invitado/a a enviar el formulario "%{name}".' @@ -1243,7 +1243,7 @@ es: &es profile_details: Detalles del perfil sign_up_with_google: Registrarse con Google sign_up_with_microsoft: Registrarse con Microsoft - by_creating_an_account_you_agree_to_our_html: 'Al crear una cuenta, aceptas nuestra Política de Privacidad y Términos de Servicio.' + by_creating_an_account_you_agree_to_our_html: 'Al crear una cuenta, aceptas nuestra Política de Privacidad y Términos de Servicio.' enter_email_to_continue: Ingresa tu correo electrónico para continuar account: Cuenta preferences: Preferencias @@ -1265,7 +1265,7 @@ es: &es combine_completed_documents_and_audit_log: Combinar documentos completados y Registro de Auditoría salesforce_integration: Integración con Salesforce salesforce_has_been_connected: Salesforce ha sido conectado. - connect_salesforce_account_to_integrate_with_docuseal: Conectar cuenta de Salesforce para integrar con DocuSeal + connect_salesforce_account_to_integrate_with_docuseal: Conectar cuenta de Salesforce para integrar con WaboSign re_connect_salesforce: Volver a conectar Salesforce connect_salesforce: Conectar Salesforce danger_zone: Zona de peligro @@ -1294,13 +1294,13 @@ es: &es resetting_password: Restableciendo contraseña sign_in_with_name_account: 'Iniciar sesión con la cuenta de %{name}' two_factor_code_from_authenticator_app: Código de dos factores de la aplicación Authenticator - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Regístrate en la consola de DocuSeal para actualizar. La aplicación local es completamente independiente, la consola solo se utiliza para gestionar tu licencia. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Regístrate en la consola de WaboSign para actualizar. La aplicación local es completamente independiente, la consola solo se utiliza para gestionar tu licencia. send_from_email: Enviar desde correo electrónico optional: opcional save: Guardar saving: Guardando changes_have_been_saved: Los cambios han sido guardados. - unlock_with_docuseal_pro: Desbloquear con DocuSeal Pro + unlock_with_docuseal_pro: Desbloquear con WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Usa tus propios certificados para firmar y verificar archivos PDF. upload_certificate: Subir certificado name: Nombre @@ -1400,7 +1400,7 @@ es: &es password_has_been_changed: La contraseña ha sido cambiada. email_integration: Integración de correo electrónico send_via_connected_email: Enviar vía correo electrónico conectado - activate_with_docuseal_pro: Activar con DocuSeal Pro + activate_with_docuseal_pro: Activar con WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Envía la solicitud de firma a tus destinatarios directamente desde tu correo electrónico connect_gmail: Conectar Gmail re_connect_gmail: Volver a conectar Gmail @@ -1480,7 +1480,7 @@ es: &es upgrade_to_send_unlimited_signature_requests: Actualiza para enviar solicitudes de firma ilimitadas add_without_sending: Agregar sin enviar upgade_now: Actualizar ahora - send_signature_request_emails_without_limits_with_docuseal_pro: Envía solicitudes de firma sin límites con DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Envía solicitudes de firma sin límites con WaboSign Pro count_emails_used: '%{count} correos electrónicos utilizados' has_been_connected: ha sido conectado sms_not_configured: SMS no configurado @@ -1582,7 +1582,7 @@ es: &es new_user: Nuevo usuario unarchive: Desarchivar last_session: Última sesión - unlock_more_user_roles_with_docuseal_pro: Desbloquea más roles de usuario con DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Desbloquea más roles de usuario con WaboSign Pro. view_active: Ver activos team_account: Cuenta de equipo team_accounts: Cuentas de equipo @@ -1797,7 +1797,7 @@ es: &es use_otp_code_to_sign_in_or_click_the_link_below_html: 'Usa el código %{code} para iniciar sesión o haz clic en el enlace a continuación:' complete_sign_in: Completar Inicio de Sesión please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Responde a este correo electrónico si no reconoces este intento de inicio de sesión. - docuseal_support: Soporte DocuSeal + wabosign_support: Soporte WaboSign use_the_edit_form_to_move_it_to_another_team: Usa el formulario de edición para moverlo a otro equipo. too_many_sms_attempts_try_again_in_a_few_seconds: Demasiados intentos de SMS. Intenta de nuevo en unos segundos. number_phone_number_is_invalid: "El número de teléfono +%{number} no es válido" @@ -1806,25 +1806,25 @@ es: &es seamlessly_automate_your_document_signing_process_with_make_com: Automatiza sin problemas tu proceso de firma de documentos con Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Encuentra plantillas de Zapier adecuadas para automatizar tu flujo de trabajo. get_started: Comenzar - click_here_to_learn_more_about_user_roles_and_permissions_html: 'Haz clic aquí para obtener más información sobre los roles y permisos de usuario.' + click_here_to_learn_more_about_user_roles_and_permissions_html: 'Haz clic aquí para obtener más información sobre los roles y permisos de usuario.' count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 correos electrónicos de solicitud de firma enviados este mes. Mejora a Pro para enviar solicitudes de firma ilimitadas.' test_mode_emails_limit_will_be_reset_within_24_hours: El límite de correos electrónicos en modo de prueba se restablecerá en 24 horas. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'En una escala del 1 al 10, ¿qué tan satisfecho estás con el producto DocuSeal?' + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'En una escala del 1 al 10, ¿qué tan satisfecho estás con el producto WaboSign?' tell_us_more_about_your_experience: Cuéntanos más sobre tu experiencia extremely_dissatisfied: Extremadamente insatisfecho extremely_satisfied: Extremadamente satisfecho your_pro_plan_payment_is_overdue: El pago de tu plan Pro está atrasado. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: 'Haz clic aquí para actualizar tus datos de pago y liquidar la factura para garantizar un servicio ininterrumpido.' overdue_payment: Pago Atrasado - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Tu plan Pro ha sido suspendido debido a facturas impagas. Puedes actualizar tus datos de pago para liquidar la factura y seguir usando DocuSeal o cancelar tu suscripción. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Tu plan Pro ha sido suspendido debido a facturas impagas. Puedes actualizar tus datos de pago para liquidar la factura y seguir usando WaboSign o cancelar tu suscripción. manage_subscription: Gestionar Suscripción submission_created_by_email_html: 'Envío creado por %{email}' submission_created_by_email_via_source_html: 'Envío creado por %{email} a través de %{source}' submission_created_via_source_html: 'Envío creado a través de %{source}' pro_user_seats_used: Plazas de usuario Pro en uso manage_plan: Gestionar plan - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Este envío tiene múltiples firmantes, lo que impide el uso de un enlace para compartir, ya que no está claro qué firmante es responsable de los campos específicos. Para resolver esto, sigue esta guía para definir los detalles predeterminados del firmante.' - welcome_to_docuseal: Bienvenido a DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Este envío tiene múltiples firmantes, lo que impide el uso de un enlace para compartir, ya que no está claro qué firmante es responsable de los campos específicos. Para resolver esto, sigue esta guía para definir los detalles predeterminados del firmante.' + welcome_to_docuseal: Bienvenido a WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Inicia una guía rápida para aprender a crear y enviar tu primer documento. start_tour: Iniciar guía name_a_z: Nombre A-Z @@ -1900,13 +1900,13 @@ es: &es use_otp_code_to_access_the_api_key_html: Usa el código %{code} para acceder a la clave API. please_reply_to_this_email_if_you_dont_recognize_this_request: Responde a este correo si no reconoces esta solicitud. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Tu cuenta de usuario ha sido archivada. Contacta a tu administrador para restaurar el acceso a tu cuenta. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: No se pudo acceder a tu correo electrónico. Esto puede ocurrir si hubo un error tipográfico en tu dirección o si tu buzón no está disponible. Por favor, contacta a support@docuseal.com para iniciar sesión. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: No se pudo acceder a tu correo electrónico. Esto puede ocurrir si hubo un error tipográfico en tu dirección o si tu buzón no está disponible. Por favor, contacta a support@wabosign.com para iniciar sesión. efficient_search_with_search_index: Búsqueda eficiente con índice de búsqueda reindex: Reindexar build_search_index: Construir índice de búsqueda require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: Requerir autenticación de dos factores (2FA) con una aplicación de autenticación (p. ej., Google Authenticator, Authy). Todos los usuarios que firman documentos deben pasar la verificación del segundo factor usando un código seguro además de su contraseña. - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Agregar un ID de firma único y una marca de tiempo a cada firma para fines de auditoría y trazabilidad junto con la marca de tiempo. Parte de la configuración de cumplimiento 21 CFR Parte 11 de DocuSeal. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Requerir que los firmantes proporcionen un motivo para firmar antes de completar su firma (p. ej., aprobaciones, certificaciones). Parte de la configuración de cumplimiento 21 CFR Parte 11 de DocuSeal. + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Agregar un ID de firma único y una marca de tiempo a cada firma para fines de auditoría y trazabilidad junto con la marca de tiempo. Parte de la configuración de cumplimiento 21 CFR Parte 11 de WaboSign. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Requerir que los firmantes proporcionen un motivo para firmar antes de completar su firma (p. ej., aprobaciones, certificaciones). Parte de la configuración de cumplimiento 21 CFR Parte 11 de WaboSign. allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Permitir que los firmantes creen firmas escribiendo su nombre en lugar de dibujar o subir una. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Permitir que los firmantes vuelvan a enviar formularios después de completarlos, útil cuando se necesitan correcciones o múltiples envíos. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Permitir que los destinatarios rechacen firmar un documento. La notificación del motivo del rechazo se enviará al solicitante de la firma. @@ -1981,7 +1981,7 @@ es: &es mcp_token_has_been_removed: El token MCP ha sido eliminado. enable_mcp_server: Habilitar servidor MCP all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Todas las conexiones MCP existentes se detendrán inmediatamente cuando se desactive esta configuración. - connect_to_docuseal_mcp: Conectar a DocuSeal MCP + connect_to_docuseal_mcp: Conectar a WaboSign MCP add_the_following_to_your_mcp_client_configuration: Agregue lo siguiente a la configuración de su cliente MCP works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Funciona con Claude Desktop, Cursor, Windsurf, VS Code y cualquier cliente compatible con MCP. your_email_address_has_been_changed: Tu dirección de correo electrónico ha sido cambiada @@ -2081,7 +2081,7 @@ es: &es settings: 'Configuración' settings_account_description: 'Con una configuración completa de la cuenta, puedes personalizar la experiencia de firma y añadir más usuarios.' support: 'Soporte' - support_description: 'Puedes usar nuestro asistente de IA o escribirnos a support@docuseal.com si tienes preguntas.' + support_description: 'Puedes usar nuestro asistente de IA o escribirnos a support@wabosign.com si tienes preguntas.' settings_template_description: 'Usa este botón para acceder a la configuración de tu cuenta.' doorkeeper: scopes: @@ -2183,15 +2183,15 @@ it: &it awaiting_completion_by_the_other_party: "In attesa di completamento da parte dell'altra parte" enforce_recipients_order: "Applicare l'ordine dei destinatari" first_party: 'Prima parte' - docuseal_trusted_signature: "Firma Fiduciaria DocuSeal" + wabosign_trusted_signature: "Firma Fiduciaria WaboSign" hello_name: Ciao %{name} you_are_invited_to_product_name: Sei stato invitato a %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'Sei stato invitato a %{account_name} %{product_name}. Registrati utilizzando il link qui sotto:' sent_using_product_name_in_testing_mode_html: 'Inviato utilizzando %{product_name} in Modalità di Test' sent_using_product_name_free_document_signing_html: 'Inviato utilizzando la firma di documenti gratuita di %{product_name}.' - sent_with_docuseal_pro_html: 'Inviato con DocuSeal Pro' - show_send_with_docuseal_pro_attribution_in_emails_html: Mostra la dicitura "Inviato con DocuSeal Pro" nelle email - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: "Firma documenti con un certificato di fiducia fornito da DocuSeal. I tuoi documenti e i tuoi dati non vengono mai condivisi con DocuSeal. Il checksum PDF è fornito per generare una firma di fiducia." + sent_with_docuseal_pro_html: 'Inviato con WaboSign Pro' + show_send_with_docuseal_pro_attribution_in_emails_html: Mostra la dicitura "Inviato con WaboSign Pro" nelle email + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: "Firma documenti con un certificato di fiducia fornito da WaboSign. I tuoi documenti e i tuoi dati non vengono mai condivisi con WaboSign. Il checksum PDF è fornito per generare una firma di fiducia." hi_there: Ciao thanks: Grazie you_have_been_invited_to_submit_the_name_form: 'Sei stato invitato a inviare il modulo "%{name}".' @@ -2293,7 +2293,7 @@ it: &it profile_details: Dettagli del profilo sign_up_with_google: Registrati con Google sign_up_with_microsoft: Registrati con Microsoft - by_creating_an_account_you_agree_to_our_html: 'Creando un account, accetti la nostra Privacy Policy e i nostri Termini di servizio.' + by_creating_an_account_you_agree_to_our_html: 'Creando un account, accetti la nostra Privacy Policy e i nostri Termini di servizio.' enter_email_to_continue: "Inserisci l'email per continuare" account: Account preferences: Preferenze @@ -2315,7 +2315,7 @@ it: &it combine_completed_documents_and_audit_log: Combinare i documenti completati e il Registro di Audit salesforce_integration: Integrazione con Salesforce salesforce_has_been_connected: Salesforce è stato connesso. - connect_salesforce_account_to_integrate_with_docuseal: "Connetti l'account Salesforce per integrare con DocuSeal" + connect_salesforce_account_to_integrate_with_docuseal: "Connetti l'account Salesforce per integrare con WaboSign" re_connect_salesforce: Riconnetti Salesforce connect_salesforce: Connetti Salesforce danger_zone: Zona di pericolo @@ -2344,13 +2344,13 @@ it: &it resetting_password: Reimpostazione password in corso sign_in_with_name_account: "Accedi con l'account %{name}" two_factor_code_from_authenticator_app: "Codice a due fattori dall'app Authenticator" - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: "Registrati nella console di DocuSeal per aggiornare. L'applicazione on-premise è completamente autonoma, la console viene utilizzata solo per gestire la tua licenza." + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: "Registrati nella console di WaboSign per aggiornare. L'applicazione on-premise è completamente autonoma, la console viene utilizzata solo per gestire la tua licenza." send_from_email: Invia da Email optional: opzionale save: Salva saving: Salvataggio in corso changes_have_been_saved: Le modifiche sono state salvate. - unlock_with_docuseal_pro: Sblocca con DocuSeal Pro + unlock_with_docuseal_pro: Sblocca con WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Usa i tuoi certificati per firmare e verificare i file PDF. upload_certificate: Carica certificato name: Nome @@ -2450,7 +2450,7 @@ it: &it password_has_been_changed: La password è stata cambiata. email_integration: Integrazione email send_via_connected_email: Invia tramite email connessa - activate_with_docuseal_pro: Attiva con DocuSeal Pro + activate_with_docuseal_pro: Attiva con WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Invia la richiesta di firma ai tuoi destinatari direttamente dalla tua email connect_gmail: Connetti Gmail re_connect_gmail: Riconnetti Gmail @@ -2530,7 +2530,7 @@ it: &it upgrade_to_send_unlimited_signature_requests: Aggiorna per inviare richieste di firma illimitate add_without_sending: Aggiungi senza inviare upgade_now: Aggiorna ora - send_signature_request_emails_without_limits_with_docuseal_pro: Invia email di richiesta di firma senza limiti con DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Invia email di richiesta di firma senza limiti con WaboSign Pro count_emails_used: '%{count} email utilizzate' has_been_connected: è stato connesso sms_not_configured: SMS non configurato @@ -2632,7 +2632,7 @@ it: &it new_user: Nuovo utente unarchive: Disarchivia last_session: Ultima sessione - unlock_more_user_roles_with_docuseal_pro: Sblocca più ruoli utente con DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Sblocca più ruoli utente con WaboSign Pro. view_active: Visualizza attivi team_account: Account di squadra team_accounts: Account di squadra @@ -2847,7 +2847,7 @@ it: &it use_otp_code_to_sign_in_or_click_the_link_below_html: 'Usa il codice %{code} per accedere o clicca sul link qui sotto:' complete_sign_in: "Completa l'Accesso" please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Rispondi a questa e-mail se non riconosci questo tentativo di accesso. - docuseal_support: Supporto DocuSeal + wabosign_support: Supporto WaboSign use_the_edit_form_to_move_it_to_another_team: Usa il modulo di modifica per spostarlo in un altro team. too_many_sms_attempts_try_again_in_a_few_seconds: Troppi tentativi di SMS. Riprova tra qualche secondo. number_phone_number_is_invalid: "Il numero di telefono +%{number} non è valido" @@ -2856,25 +2856,25 @@ it: &it seamlessly_automate_your_document_signing_process_with_make_com: Automatizza senza problemi il tuo processo di firma dei documenti con Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Trova modelli Zapier adatti per automatizzare il tuo flusso di lavoro. get_started: Inizia - click_here_to_learn_more_about_user_roles_and_permissions_html: 'Fai clic qui per saperne di più sui ruoli e le autorizzazioni degli utenti.' + click_here_to_learn_more_about_user_roles_and_permissions_html: 'Fai clic qui per saperne di più sui ruoli e le autorizzazioni degli utenti.' count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 e-mail di richiesta di firma inviate questo mese. Passa a Pro per inviare richieste di firma illimitate.' test_mode_emails_limit_will_be_reset_within_24_hours: Il limite di e-mail in modalità di test verrà ripristinato entro 24 ore. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Su una scala da 1 a 10, quanto sei soddisfatto del prodotto DocuSeal?' + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Su una scala da 1 a 10, quanto sei soddisfatto del prodotto WaboSign?' tell_us_more_about_your_experience: Raccontaci di più sulla tua esperienza extremely_dissatisfied: Estremamente insoddisfatto extremely_satisfied: Estremamente soddisfatto your_pro_plan_payment_is_overdue: Il pagamento del tuo piano Pro è in ritardo. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: 'Fai clic qui per aggiornare i tuoi dati di pagamento e saldare la fattura per garantire un servizio ininterrotto.' overdue_payment: Pagamento Scaduto - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Il tuo piano Pro è stato sospeso a causa di fatture non pagate. Puoi aggiornare i tuoi dati di pagamento per saldare la fattura e continuare a utilizzare DocuSeal o annullare l'abbonamento. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Il tuo piano Pro è stato sospeso a causa di fatture non pagate. Puoi aggiornare i tuoi dati di pagamento per saldare la fattura e continuare a utilizzare WaboSign o annullare l'abbonamento. manage_subscription: Gestisci Abbonamento submission_created_by_email_html: 'Invio creato da %{email}' submission_created_by_email_via_source_html: 'Invio creato da %{email} tramite %{source}' submission_created_via_source_html: 'Invio creato tramite %{source}' pro_user_seats_used: Posti utente Pro in uso manage_plan: Gestisci piano - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: "Questa sottomissione ha più firmatari, il che impedisce l'uso di un link di condivisione poiché non è chiaro quale firmatario sia responsabile di specifici campi. Per risolvere questo problema, segui questa guida per definire i dettagli predefiniti del firmatario." - welcome_to_docuseal: Benvenuto in DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: "Questa sottomissione ha più firmatari, il che impedisce l'uso di un link di condivisione poiché non è chiaro quale firmatario sia responsabile di specifici campi. Per risolvere questo problema, segui questa guida per definire i dettagli predefiniti del firmatario." + welcome_to_docuseal: Benvenuto in WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Inizia un tour rapido per imparare a creare e inviare il tuo primo documento. start_tour: Inizia il tour name_a_z: Nome A-Z @@ -2950,13 +2950,13 @@ it: &it use_otp_code_to_access_the_api_key_html: Usa il codice %{code} per accedere alla chiave API. please_reply_to_this_email_if_you_dont_recognize_this_request: Rispondi a questa email se non riconosci questa richiesta. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Il tuo account utente è stato archiviato. Contatta il tuo amministratore per ripristinare l'accesso al tuo account. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Non è stato possibile raggiungere la tua email. Questo può accadere se c'è stato un errore di digitazione nell'indirizzo o se la tua casella di posta non è disponibile. Contatta support@docuseal.com per accedere. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Non è stato possibile raggiungere la tua email. Questo può accadere se c'è stato un errore di digitazione nell'indirizzo o se la tua casella di posta non è disponibile. Contatta support@wabosign.com per accedere. efficient_search_with_search_index: Ricerca efficiente con indice di ricerca reindex: Reindicizza build_search_index: Crea indice di ricerca require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: "Richiedere l'autenticazione a due fattori (2FA) con un'app di autenticazione (es. Google Authenticator, Authy). Tutti gli utenti che firmano documenti devono superare la verifica del secondo fattore utilizzando un codice sicuro oltre alla password." - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Aggiungere un ID firma univoco e una marca temporale a ogni firma per scopi di audit e tracciabilità insieme alla marca temporale. Parte delle impostazioni di conformità 21 CFR Parte 11 di DocuSeal. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Richiedere ai firmatari di fornire una motivazione prima di completare la firma (es. approvazioni, certificazioni). Parte delle impostazioni di conformità 21 CFR Parte 11 di DocuSeal. + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Aggiungere un ID firma univoco e una marca temporale a ogni firma per scopi di audit e tracciabilità insieme alla marca temporale. Parte delle impostazioni di conformità 21 CFR Parte 11 di WaboSign. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Richiedere ai firmatari di fornire una motivazione prima di completare la firma (es. approvazioni, certificazioni). Parte delle impostazioni di conformità 21 CFR Parte 11 di WaboSign. allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Consentire ai firmatari di creare firme digitando il proprio nome invece di disegnarle o caricarle. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Consentire ai firmatari di reinviare i moduli dopo il completamento, utile quando sono necessarie correzioni o più invii. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Consentire ai destinatari di rifiutare di firmare un documento. La notifica del motivo del rifiuto verrà inviata al richiedente della firma. @@ -3031,7 +3031,7 @@ it: &it mcp_token_has_been_removed: Il token MCP è stato rimosso. enable_mcp_server: Abilita server MCP all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Tutte le connessioni MCP esistenti verranno interrotte immediatamente quando questa impostazione viene disattivata. - connect_to_docuseal_mcp: Connetti a DocuSeal MCP + connect_to_docuseal_mcp: Connetti a WaboSign MCP add_the_following_to_your_mcp_client_configuration: Aggiungi quanto segue alla configurazione del tuo client MCP works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Funziona con Claude Desktop, Cursor, Windsurf, VS Code e qualsiasi client compatibile con MCP. your_email_address_has_been_changed: Il tuo indirizzo email è stato modificato @@ -3131,7 +3131,7 @@ it: &it settings: 'Impostazioni' settings_account_description: "Con impostazioni complete dell'account, puoi personalizzare l'esperienza di firma elettronica e invitare altri utenti." support: 'Supporto' - support_description: 'Puoi usare il nostro assistente AI oppure scriverci a support@docuseal.com se hai domande.' + support_description: 'Puoi usare il nostro assistente AI oppure scriverci a support@wabosign.com se hai domande.' settings_template_description: "Usa questo pulsante per accedere alla pagina delle impostazioni dell'account." doorkeeper: scopes: @@ -3233,15 +3233,15 @@ fr: &fr awaiting_completion_by_the_other_party: En attente de finalisation par l’autre partie enforce_recipients_order: Imposer l’ordre des destinataires first_party: Première partie - docuseal_trusted_signature: Signature de confiance DocuSeal + wabosign_trusted_signature: Signature de confiance WaboSign hello_name: Bonjour %{name} you_are_invited_to_product_name: Vous êtes invité à %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'Vous avez été invité à %{account_name} %{product_name}. Veuillez vous inscrire en utilisant le lien ci-dessous :' sent_using_product_name_in_testing_mode_html: Envoyé avec %{product_name} en mode test sent_using_product_name_free_document_signing_html: Envoyé avec %{product_name} signature de documents gratuite. - sent_with_docuseal_pro_html: Envoyé avec DocuSeal Pro - show_send_with_docuseal_pro_attribution_in_emails_html: Afficher l’attribution "Envoyé avec DocuSeal Pro" dans les e‑mails - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Signez des documents avec un certificat de confiance fourni par DocuSeal. Vos documents et données ne sont jamais partagés avec DocuSeal. Une empreinte (checksum) PDF est fournie pour générer une signature de confiance. + sent_with_docuseal_pro_html: Envoyé avec WaboSign Pro + show_send_with_docuseal_pro_attribution_in_emails_html: Afficher l’attribution "Envoyé avec WaboSign Pro" dans les e‑mails + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Signez des documents avec un certificat de confiance fourni par WaboSign. Vos documents et données ne sont jamais partagés avec WaboSign. Une empreinte (checksum) PDF est fournie pour générer une signature de confiance. hi_there: Bonjour thanks: Merci you_have_been_invited_to_submit_the_name_form: Vous avez été invité à soumettre le formulaire "%{name}". @@ -3343,7 +3343,7 @@ fr: &fr profile_details: Détails du profil sign_up_with_google: S’inscrire avec Google sign_up_with_microsoft: S’inscrire avec Microsoft - by_creating_an_account_you_agree_to_our_html: En créant un compte, vous acceptez notre Politique de confidentialité et nos Conditions d’utilisation. + by_creating_an_account_you_agree_to_our_html: En créant un compte, vous acceptez notre Politique de confidentialité et nos Conditions d’utilisation. enter_email_to_continue: Entrez votre e‑mail pour continuer account: Compte preferences: Préférences @@ -3365,7 +3365,7 @@ fr: &fr combine_completed_documents_and_audit_log: Combiner les documents complétés et le journal d’audit salesforce_integration: Intégration Salesforce salesforce_has_been_connected: Salesforce a été connecté. - connect_salesforce_account_to_integrate_with_docuseal: Connectez un compte Salesforce pour l’intégrer à DocuSeal + connect_salesforce_account_to_integrate_with_docuseal: Connectez un compte Salesforce pour l’intégrer à WaboSign re_connect_salesforce: Reconnecter Salesforce connect_salesforce: Connecter Salesforce danger_zone: Zone de danger @@ -3394,13 +3394,13 @@ fr: &fr resetting_password: Réinitialisation du mot de passe sign_in_with_name_account: Se connecter avec le compte %{name} two_factor_code_from_authenticator_app: Code 2FA de l’application d’authentification - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Inscrivez-vous sur la Console DocuSeal pour mettre à niveau. L’application on‑premises est entièrement autonome ; la Console sert uniquement à gérer votre licence. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Inscrivez-vous sur la Console WaboSign pour mettre à niveau. L’application on‑premises est entièrement autonome ; la Console sert uniquement à gérer votre licence. send_from_email: Envoyer depuis l’e‑mail optional: facultatif save: Enregistrer saving: Enregistrement changes_have_been_saved: Les modifications ont été enregistrées. - unlock_with_docuseal_pro: Débloquer avec DocuSeal Pro + unlock_with_docuseal_pro: Débloquer avec WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Utilisez vos propres certificats pour signer et vérifier des fichiers PDF. upload_certificate: Téléverser un certificat name: Nom @@ -3500,7 +3500,7 @@ fr: &fr password_has_been_changed: Le mot de passe a été modifié. email_integration: Intégration e‑mail send_via_connected_email: Envoyer via l’e‑mail connecté - activate_with_docuseal_pro: Activer avec DocuSeal Pro + activate_with_docuseal_pro: Activer avec WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Envoyez des demandes de signature directement depuis votre e‑mail connect_gmail: Connecter Gmail re_connect_gmail: Reconnecter Gmail @@ -3580,7 +3580,7 @@ fr: &fr upgrade_to_send_unlimited_signature_requests: Passez à la version Pro pour envoyer un nombre illimité de demandes de signature add_without_sending: Ajouter sans envoyer upgade_now: Mettre à niveau maintenant - send_signature_request_emails_without_limits_with_docuseal_pro: Envoyez des e‑mails de demande de signature sans limites avec DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Envoyez des e‑mails de demande de signature sans limites avec WaboSign Pro count_emails_used: "%{count} e‑mails utilisés" has_been_connected: a été connecté sms_not_configured: SMS non configuré @@ -3682,7 +3682,7 @@ fr: &fr new_user: Nouvel utilisateur unarchive: Désarchiver last_session: Dernière session - unlock_more_user_roles_with_docuseal_pro: Débloquez davantage de rôles utilisateurs avec DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Débloquez davantage de rôles utilisateurs avec WaboSign Pro. view_active: Voir actifs team_account: Compte d’équipe team_accounts: Comptes d’équipe @@ -3897,7 +3897,7 @@ fr: &fr use_otp_code_to_sign_in_or_click_the_link_below_html: 'Utilisez le code %{code} pour vous connecter ou cliquez sur le lien ci‑dessous :' complete_sign_in: Terminer la connexion please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Veuillez répondre à cet e‑mail si vous ne reconnaissez pas cette tentative de connexion. - docuseal_support: Support DocuSeal + wabosign_support: Support WaboSign use_the_edit_form_to_move_it_to_another_team: Utilisez le formulaire d’édition pour le déplacer vers une autre équipe. too_many_sms_attempts_try_again_in_a_few_seconds: Trop de tentatives SMS. Réessayez dans quelques secondes. number_phone_number_is_invalid: Le numéro de téléphone +%{number} est invalide @@ -3906,25 +3906,25 @@ fr: &fr seamlessly_automate_your_document_signing_process_with_make_com: Automatisez en toute fluidité votre processus de signature de documents avec Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Trouvez des modèles Zapier adaptés pour automatiser votre flux de travail. get_started: Commencer - click_here_to_learn_more_about_user_roles_and_permissions_html: Cliquez ici pour en savoir plus sur les rôles et permissions des utilisateurs. + click_here_to_learn_more_about_user_roles_and_permissions_html: Cliquez ici pour en savoir plus sur les rôles et permissions des utilisateurs. count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: "%{count} / 10 e‑mails de demande de signature envoyés ce mois‑ci. Passez à Pro pour envoyer des e‑mails de demande de signature illimités." test_mode_emails_limit_will_be_reset_within_24_hours: La limite d’e‑mails en mode test sera réinitialisée sous 24 heures. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: Sur une échelle de 1 à 10, quel est votre niveau de satisfaction du produit DocuSeal ? + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: Sur une échelle de 1 à 10, quel est votre niveau de satisfaction du produit WaboSign ? tell_us_more_about_your_experience: Dites‑nous en plus sur votre expérience extremely_dissatisfied: Extrêmement insatisfait extremely_satisfied: Extrêmement satisfait your_pro_plan_payment_is_overdue: Le paiement de votre offre Pro est en retard. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: Cliquez ici pour mettre à jour vos informations de paiement et régler la facture afin de garantir la continuité du service. overdue_payment: Paiement en retard - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: "Votre offre Pro a été suspendue en raison de factures impayées.\nVous pouvez mettre à jour vos informations de paiement pour régler la facture et continuer à utiliser DocuSeal, ou annuler votre abonnement." + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: "Votre offre Pro a été suspendue en raison de factures impayées.\nVous pouvez mettre à jour vos informations de paiement pour régler la facture et continuer à utiliser WaboSign, ou annuler votre abonnement." manage_subscription: Gérer l’abonnement submission_created_by_email_html: "Soumission créée par %{email}" submission_created_by_email_via_source_html: "Soumission créée par %{email} via %{source}" submission_created_via_source_html: "Soumission créée via %{source}" pro_user_seats_used: Places d’utilisateurs Pro utilisées manage_plan: Gérer la formule - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: Cette soumission comporte plusieurs signataires, ce qui empêche l’utilisation d’un lien de partage car il n’est pas clair quel signataire est responsable de quels champs. Pour résoudre cela, suivez ce guide pour définir les détails du signataire par défaut. - welcome_to_docuseal: Bienvenue sur DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: Cette soumission comporte plusieurs signataires, ce qui empêche l’utilisation d’un lien de partage car il n’est pas clair quel signataire est responsable de quels champs. Pour résoudre cela, suivez ce guide pour définir les détails du signataire par défaut. + welcome_to_docuseal: Bienvenue sur WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Lancez une visite rapide pour apprendre à créer et envoyer votre premier document start_tour: Démarrer la visite name_a_z: Nom A‑Z @@ -3996,13 +3996,13 @@ fr: &fr use_otp_code_to_access_the_api_key_html: Utilisez le code %{code} pour accéder à la clé API. please_reply_to_this_email_if_you_dont_recognize_this_request: Veuillez répondre à cet e‑mail si vous ne reconnaissez pas cette demande. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Votre compte utilisateur a été archivé. Contactez votre administrateur pour rétablir l’accès à votre compte. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Votre e‑mail n’a pas pu être joint. Cela peut se produire en cas de faute de frappe dans votre adresse ou si votre boîte aux lettres n’est pas disponible. Veuillez contacter support@docuseal.com pour vous connecter. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Votre e‑mail n’a pas pu être joint. Cela peut se produire en cas de faute de frappe dans votre adresse ou si votre boîte aux lettres n’est pas disponible. Veuillez contacter support@wabosign.com pour vous connecter. efficient_search_with_search_index: Recherche efficace avec index de recherche reindex: Réindexer build_search_index: Construire l’index de recherche require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: Exiger l’authentification à deux facteurs (2FA) avec une application d’authentification (p. ex., Google Authenticator, Authy). Tous les utilisateurs qui signent des documents doivent passer la vérification du second facteur à l’aide d’un code sécurisé en plus de leur mot de passe. - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Ajouter un identifiant de signature unique et un horodatage à chaque signature à des fins d’audit et de traçabilité, avec l’horodatage. Fait partie des paramètres de conformité 21 CFR Part 11 de DocuSeal. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Exiger que les signataires fournissent un motif de signature avant de finaliser leur signature (p. ex., approbations, certifications). Fait partie des paramètres de conformité 21 CFR Part 11 de DocuSeal. + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Ajouter un identifiant de signature unique et un horodatage à chaque signature à des fins d’audit et de traçabilité, avec l’horodatage. Fait partie des paramètres de conformité 21 CFR Part 11 de WaboSign. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Exiger que les signataires fournissent un motif de signature avant de finaliser leur signature (p. ex., approbations, certifications). Fait partie des paramètres de conformité 21 CFR Part 11 de WaboSign. allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Autoriser les signataires à créer des signatures en tapant leur nom au lieu de dessiner ou téléverser une signature. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Autoriser les signataires à soumettre à nouveau les formulaires après finalisation, utile pour des corrections ou soumissions multiples. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Autoriser les destinataires à refuser de signer un document. Le motif du refus sera notifié au demandeur de signature. @@ -4078,7 +4078,7 @@ fr: &fr mcp_token_has_been_removed: Le jeton MCP a été supprimé. enable_mcp_server: Activer le serveur MCP all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Toutes les connexions MCP existantes seront arrêtées immédiatement lorsque ce paramètre est désactivé. - connect_to_docuseal_mcp: Se connecter à DocuSeal MCP + connect_to_docuseal_mcp: Se connecter à WaboSign MCP add_the_following_to_your_mcp_client_configuration: Ajoutez ce qui suit à la configuration de votre client MCP works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Fonctionne avec Claude Desktop, Cursor, Windsurf, VS Code et tout client compatible MCP. your_email_address_has_been_changed: Votre adresse e-mail a été modifiée @@ -4178,7 +4178,7 @@ fr: &fr settings: Paramètres settings_account_description: Des paramètres de compte complets pour personnaliser l’expérience de signature et inviter d’autres utilisateurs. support: Support - support_description: Utilisez notre assistant IA en libre‑service ou contactez‑nous à support@docuseal.com pour toute question. + support_description: Utilisez notre assistant IA en libre‑service ou contactez‑nous à support@wabosign.com pour toute question. settings_template_description: Utilisez ce bouton pour accéder à la page des paramètres de votre compte. doorkeeper: scopes: @@ -4280,15 +4280,15 @@ pt: &pt awaiting_completion_by_the_other_party: "Aguardando a conclusão pela outra parte" enforce_recipients_order: 'Forçar a ordem dos destinatários' first_party: 'Primeira Parte' - docuseal_trusted_signature: Assinatura Confiável DocuSeal + wabosign_trusted_signature: Assinatura Confiável WaboSign hello_name: Olá %{name} you_are_invited_to_product_name: Você está convidado para %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'Você foi convidado para %{account_name} %{product_name}. Inscreva-se usando o link abaixo:' sent_using_product_name_in_testing_mode_html: 'Enviado usando %{product_name} no Modo de Teste' sent_using_product_name_free_document_signing_html: 'Enviado usando a assinatura gratuita de documentos de %{product_name}.' - sent_with_docuseal_pro_html: 'Enviado com DocuSeal Pro' - show_send_with_docuseal_pro_attribution_in_emails_html: Mostrar "Enviado com DocuSeal Pro" nos e-mails - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Assine documentos com certificado confiável fornecido pela DocuSeal. Seus documentos e dados nunca são compartilhados com a DocuSeal. O checksum do PDF é fornecido para gerar uma assinatura confiável. + sent_with_docuseal_pro_html: 'Enviado com WaboSign Pro' + show_send_with_docuseal_pro_attribution_in_emails_html: Mostrar "Enviado com WaboSign Pro" nos e-mails + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Assine documentos com certificado confiável fornecido pela WaboSign. Seus documentos e dados nunca são compartilhados com a WaboSign. O checksum do PDF é fornecido para gerar uma assinatura confiável. hi_there: Olá thanks: Obrigado you_have_been_invited_to_submit_the_name_form: 'Você foi convidado a submeter o formulário "%{name}".' @@ -4390,7 +4390,7 @@ pt: &pt profile_details: Detalhes do perfil sign_up_with_google: Inscrever-se com Google sign_up_with_microsoft: Inscrever-se com Microsoft - by_creating_an_account_you_agree_to_our_html: 'Ao criar uma conta, você concorda com nossa Política de Privacidade e Termos de Serviço.' + by_creating_an_account_you_agree_to_our_html: 'Ao criar uma conta, você concorda com nossa Política de Privacidade e Termos de Serviço.' enter_email_to_continue: Insira o e-mail para continuar account: Conta preferences: Preferências @@ -4412,7 +4412,7 @@ pt: &pt combine_completed_documents_and_audit_log: Combinar documentos concluídos e log de auditoria salesforce_integration: Integração com Salesforce salesforce_has_been_connected: Salesforce foi conectado. - connect_salesforce_account_to_integrate_with_docuseal: Conecte a conta Salesforce para integrar com o DocuSeal + connect_salesforce_account_to_integrate_with_docuseal: Conecte a conta Salesforce para integrar com o WaboSign re_connect_salesforce: Reconectar Salesforce connect_salesforce: Conectar Salesforce danger_zone: Zona de perigo @@ -4441,13 +4441,13 @@ pt: &pt resetting_password: Redefinindo senha sign_in_with_name_account: 'Entrar com conta %{name}' two_factor_code_from_authenticator_app: Código de autenticação de dois fatores do aplicativo Authenticator - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Inscreva-se no console do DocuSeal para fazer o upgrade. O aplicativo local é totalmente independente, o console é usado apenas para gerenciar sua licença. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Inscreva-se no console do WaboSign para fazer o upgrade. O aplicativo local é totalmente independente, o console é usado apenas para gerenciar sua licença. send_from_email: Enviar do e-mail optional: opcional save: Salvar saving: Salvando changes_have_been_saved: As alterações foram salvas. - unlock_with_docuseal_pro: Desbloquear com o DocuSeal Pro + unlock_with_docuseal_pro: Desbloquear com o WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Use seus próprios certificados para assinar e verificar arquivos PDF. upload_certificate: Enviar certificado name: Nome @@ -4547,7 +4547,7 @@ pt: &pt password_has_been_changed: A senha foi alterada. email_integration: Integração de e-mail send_via_connected_email: Enviar via e-mail conectado - activate_with_docuseal_pro: Ativar com DocuSeal Pro + activate_with_docuseal_pro: Ativar com WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Envie solicitações de assinatura diretamente do seu e-mail connect_gmail: Conectar Gmail re_connect_gmail: Reconectar Gmail @@ -4627,7 +4627,7 @@ pt: &pt upgrade_to_send_unlimited_signature_requests: Faça upgrade para enviar solicitações de assinatura ilimitadas add_without_sending: Adicionar sem enviar upgade_now: Fazer upgrade agora - send_signature_request_emails_without_limits_with_docuseal_pro: Enviar e-mails de solicitação de assinatura sem limites com o DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Enviar e-mails de solicitação de assinatura sem limites com o WaboSign Pro count_emails_used: '%{count} e-mails usados' has_been_connected: foi conectado sms_not_configured: SMS não configurado @@ -4729,7 +4729,7 @@ pt: &pt new_user: Novo usuário unarchive: Desarquivar last_session: Última sessão - unlock_more_user_roles_with_docuseal_pro: Desbloqueie mais funções de usuário com DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Desbloqueie mais funções de usuário com WaboSign Pro. view_active: Ver ativos team_account: Conta de equipe team_accounts: Contas de equipe @@ -4944,7 +4944,7 @@ pt: &pt use_otp_code_to_sign_in_or_click_the_link_below_html: 'Use o código %{code} para entrar ou clique no link abaixo:' complete_sign_in: Concluir Login please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Responda a este e-mail se você não reconhecer esta tentativa de login. - docuseal_support: Suporte DocuSeal + wabosign_support: Suporte WaboSign use_the_edit_form_to_move_it_to_another_team: Use o formulário de edição para movê-lo para outra equipe. too_many_sms_attempts_try_again_in_a_few_seconds: Muitas tentativas de SMS. Tente novamente em alguns segundos. number_phone_number_is_invalid: "O número de telefone +%{number} é inválido" @@ -4953,25 +4953,25 @@ pt: &pt seamlessly_automate_your_document_signing_process_with_make_com: Automatize perfeitamente seu processo de assinatura de documentos com o Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Encontre modelos Zapier adequados para automatizar seu fluxo de trabalho. get_started: Começar - click_here_to_learn_more_about_user_roles_and_permissions_html: 'Clique aqui para saber mais sobre os papéis e permissões dos usuários.' + click_here_to_learn_more_about_user_roles_and_permissions_html: 'Clique aqui para saber mais sobre os papéis e permissões dos usuários.' count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 e-mails de solicitação de assinatura enviados este mês. Faça upgrade para Pro para enviar solicitações de assinatura ilimitadas.' test_mode_emails_limit_will_be_reset_within_24_hours: O limite de e-mails no modo de teste será redefinido em 24 horas. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Em uma escala de 1 a 10, quão satisfeito você está com o produto DocuSeal?' + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Em uma escala de 1 a 10, quão satisfeito você está com o produto WaboSign?' tell_us_more_about_your_experience: Conte-nos mais sobre sua experiência extremely_dissatisfied: Extremamente insatisfeito extremely_satisfied: Extremamente satisfeito your_pro_plan_payment_is_overdue: O pagamento do seu plano Pro está atrasado. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: 'Clique aqui para atualizar seus dados de pagamento e quitar a fatura para garantir um serviço ininterrupto.' overdue_payment: Pagamento Atrasado - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Seu plano Pro foi suspenso devido a faturas não pagas. Você pode atualizar seus dados de pagamento para quitar a fatura e continuar usando o DocuSeal ou cancelar sua assinatura. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Seu plano Pro foi suspenso devido a faturas não pagas. Você pode atualizar seus dados de pagamento para quitar a fatura e continuar usando o WaboSign ou cancelar sua assinatura. manage_subscription: Gerenciar Assinatura submission_created_by_email_html: 'Envio criado por %{email}' submission_created_by_email_via_source_html: 'Envio criado por %{email} via %{source}' submission_created_via_source_html: 'Envio criado via %{source}' pro_user_seats_used: Lugares de usuário Pro em uso manage_plan: Gerenciar plano - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Este envio tem vários signatários, o que impede o uso de um link de compartilhamento, pois não está claro qual signatário é responsável por quais campos. Para resolver isso, siga este guia para definir os detalhes padrão do signatário.' - welcome_to_docuseal: Bem-vindo ao DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Este envio tem vários signatários, o que impede o uso de um link de compartilhamento, pois não está claro qual signatário é responsável por quais campos. Para resolver isso, siga este guia para definir os detalhes padrão do signatário.' + welcome_to_docuseal: Bem-vindo ao WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Comece um tour rápido para aprender a criar e enviar seu primeiro documento. start_tour: Iniciar tour name_a_z: Nome A-Z @@ -5047,13 +5047,13 @@ pt: &pt use_otp_code_to_access_the_api_key_html: Use o código %{code} para acessar a chave API. please_reply_to_this_email_if_you_dont_recognize_this_request: Responda a este e-mail se você não reconhecer esta solicitação. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Sua conta de usuário foi arquivada. Entre em contato com o administrador para restaurar o acesso à sua conta. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Seu e-mail não pôde ser acessado. Isso pode acontecer se houve um erro de digitação no endereço ou se sua caixa de correio não estiver disponível. Entre em contato com support@docuseal.com para fazer login. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Seu e-mail não pôde ser acessado. Isso pode acontecer se houve um erro de digitação no endereço ou se sua caixa de correio não estiver disponível. Entre em contato com support@wabosign.com para fazer login. efficient_search_with_search_index: Pesquisa eficiente com índice de busca reindex: Reindexar build_search_index: Construir índice de busca require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: "Exigir autenticação de dois fatores (2FA) com um aplicativo autenticador (ex.: Google Authenticator, Authy). Todos os usuários que assinam documentos devem passar pela verificação do segundo fator usando um código seguro além da senha." - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Adicionar um ID de assinatura exclusivo e um carimbo de data/hora a cada assinatura para fins de auditoria e rastreabilidade junto com o carimbo de data/hora. Parte das configurações de conformidade 21 CFR Parte 11 do DocuSeal. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Exigir que os signatários forneçam uma razão antes de completar a assinatura (ex.: aprovações, certificações). Parte das configurações de conformidade 21 CFR Parte 11 do DocuSeal." + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Adicionar um ID de assinatura exclusivo e um carimbo de data/hora a cada assinatura para fins de auditoria e rastreabilidade junto com o carimbo de data/hora. Parte das configurações de conformidade 21 CFR Parte 11 do WaboSign. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Exigir que os signatários forneçam uma razão antes de completar a assinatura (ex.: aprovações, certificações). Parte das configurações de conformidade 21 CFR Parte 11 do WaboSign." allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Permitir que os signatários criem assinaturas digitando seu nome em vez de desenhá-las ou carregá-las. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Permitir que os signatários reenviem formulários após o término, útil quando são necessárias correções ou múltiplos envios. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Permitir que os destinatários recusem assinar um documento. A notificação do motivo da recusa será enviada ao solicitante da assinatura. @@ -5128,7 +5128,7 @@ pt: &pt mcp_token_has_been_removed: O token MCP foi removido. enable_mcp_server: Ativar servidor MCP all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Todas as conexões MCP existentes serão interrompidas imediatamente quando esta configuração for desativada. - connect_to_docuseal_mcp: Conectar ao DocuSeal MCP + connect_to_docuseal_mcp: Conectar ao WaboSign MCP add_the_following_to_your_mcp_client_configuration: Adicione o seguinte à configuração do seu cliente MCP works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Funciona com Claude Desktop, Cursor, Windsurf, VS Code e qualquer cliente compatível com MCP. your_email_address_has_been_changed: Seu endereço de e-mail foi alterado @@ -5228,7 +5228,7 @@ pt: &pt settings: 'Configurações' settings_account_description: 'Com configurações completas de conta, você pode personalizar a experiência de assinatura eletrônica e convidar mais usuários.' support: 'Suporte' - support_description: 'Você pode usar nosso assistente de IA ou nos escrever para support@docuseal.com se tiver dúvidas.' + support_description: 'Você pode usar nosso assistente de IA ou nos escrever para support@wabosign.com se tiver dúvidas.' settings_template_description: 'Use este botão para acessar a página de configurações da sua conta.' doorkeeper: scopes: @@ -5330,15 +5330,15 @@ de: &de accessiable_by: Zugänglich für team_access: Teamzugang document_download_filename_format: Format des Dateinamens beim Herunterladen von Dokumenten - docuseal_trusted_signature: DocuSeal-Vertrauenssignatur + wabosign_trusted_signature: WaboSign-Vertrauenssignatur hello_name: Hallo %{name} you_are_invited_to_product_name: Sie sind zu %{product_name} eingeladen you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'Sie wurden zu %{account_name} %{product_name} eingeladen. Bitte registrieren Sie sich über den folgenden Link:' sent_using_product_name_in_testing_mode_html: 'Gesendet über %{product_name} im Testmodus' sent_using_product_name_free_document_signing_html: 'Gesendet mit der kostenlosen Dokumentensignierung von %{product_name}.' - sent_with_docuseal_pro_html: Gesendet mit DocuSeal Pro - show_send_with_docuseal_pro_attribution_in_emails_html: '"Gesendet mit DocuSeal Pro" in E-Mails anzeigen' - sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Unterzeichnen Sie Dokumente mit einem vertrauenswürdigen Zertifikat von DocuSeal. Ihre Dokumente und Daten werden niemals mit DocuSeal geteilt. Eine PDF-Prüfsumme wird bereitgestellt, um eine vertrauenswürdige Signatur zu generieren. + sent_with_docuseal_pro_html: Gesendet mit WaboSign Pro + show_send_with_docuseal_pro_attribution_in_emails_html: '"Gesendet mit WaboSign Pro" in E-Mails anzeigen' + sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: Unterzeichnen Sie Dokumente mit einem vertrauenswürdigen Zertifikat von WaboSign. Ihre Dokumente und Daten werden niemals mit WaboSign geteilt. Eine PDF-Prüfsumme wird bereitgestellt, um eine vertrauenswürdige Signatur zu generieren. you_have_been_invited_to_submit_the_name_form: 'Sie wurden eingeladen, das Formular "%{name}" einzureichen.' you_have_been_invited_to_sign_the_name: 'Sie wurden eingeladen, "%{name}" zu unterschreiben.' alternatively_you_can_review_and_download_your_copy_using_the_link_below: 'Alternativ können Sie Ihre Kopie über den untenstehenden Link ansehen und herunterladen:' @@ -5440,7 +5440,7 @@ de: &de profile_details: Profildetails sign_up_with_google: Mit Google registrieren sign_up_with_microsoft: Mit Microsoft registrieren - by_creating_an_account_you_agree_to_our_html: 'Durch die Erstellung eines Kontos stimmen Sie unseren Datenschutzrichtlinien und Nutzungsbedingungen zu.' + by_creating_an_account_you_agree_to_our_html: 'Durch die Erstellung eines Kontos stimmen Sie unseren Datenschutzrichtlinien und Nutzungsbedingungen zu.' enter_email_to_continue: E-Mail eingeben, um fortzufahren account: Konto preferences: Einstellungen @@ -5462,7 +5462,7 @@ de: &de combine_completed_documents_and_audit_log: Abgeschlossene Dokumente und Prüfprotokoll kombinieren salesforce_integration: Salesforce-Integration salesforce_has_been_connected: Salesforce wurde verbunden. - connect_salesforce_account_to_integrate_with_docuseal: Verbinden Sie Ihr Salesforce-Konto, um es mit DocuSeal zu integrieren + connect_salesforce_account_to_integrate_with_docuseal: Verbinden Sie Ihr Salesforce-Konto, um es mit WaboSign zu integrieren re_connect_salesforce: Salesforce erneut verbinden connect_salesforce: Salesforce verbinden danger_zone: Gefahrenzone @@ -5491,13 +5491,13 @@ de: &de resetting_password: Passwort wird zurückgesetzt sign_in_with_name_account: 'Mit %{name}-Konto anmelden' two_factor_code_from_authenticator_app: Zwei-Faktor-Code aus der Authenticator-App - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Melden Sie sich in der DocuSeal-Konsole an, um ein Upgrade durchzuführen. Die lokale App ist vollständig eigenständig; die Konsole wird nur zur Verwaltung Ihrer Lizenz verwendet. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Melden Sie sich in der WaboSign-Konsole an, um ein Upgrade durchzuführen. Die lokale App ist vollständig eigenständig; die Konsole wird nur zur Verwaltung Ihrer Lizenz verwendet. send_from_email: Von E-Mail senden optional: optional save: Speichern saving: Wird gespeichert changes_have_been_saved: Änderungen wurden gespeichert. - unlock_with_docuseal_pro: Mit DocuSeal Pro freischalten + unlock_with_docuseal_pro: Mit WaboSign Pro freischalten use_your_own_certificates_to_sign_and_verify_pdf_files: Verwenden Sie Ihre eigenen Zertifikate, um PDF-Dateien zu signieren und zu verifizieren. upload_certificate: Zertifikat hochladen name: Name @@ -5597,7 +5597,7 @@ de: &de password_has_been_changed: Das Passwort wurde geändert. email_integration: E-Mail-Integration send_via_connected_email: Über verbundenes E-Mail-Konto senden - activate_with_docuseal_pro: Mit DocuSeal Pro aktivieren + activate_with_docuseal_pro: Mit WaboSign Pro aktivieren send_signature_request_to_your_recipients_directly_from_your_email: Senden Sie Signaturanfragen direkt aus Ihrem E-Mail-Konto connect_gmail: Gmail verbinden re_connect_gmail: Gmail erneut verbinden @@ -5677,7 +5677,7 @@ de: &de upgrade_to_send_unlimited_signature_requests: Upgrade durchführen, um unbegrenzte Signaturanfragen zu senden add_without_sending: Hinzufügen ohne zu senden upgade_now: Jetzt upgraden - send_signature_request_emails_without_limits_with_docuseal_pro: Signaturanfragen per E-Mail ohne Limits mit DocuSeal Pro senden + send_signature_request_emails_without_limits_with_docuseal_pro: Signaturanfragen per E-Mail ohne Limits mit WaboSign Pro senden count_emails_used: '%{count} E-Mails verwendet' has_been_connected: wurde verbunden sms_not_configured: SMS nicht konfiguriert @@ -5779,7 +5779,7 @@ de: &de new_user: Neuer Benutzer unarchive: Entarchivieren last_session: Letzte Sitzung - unlock_more_user_roles_with_docuseal_pro: Weitere Benutzerrollen mit DocuSeal Pro freischalten. + unlock_more_user_roles_with_docuseal_pro: Weitere Benutzerrollen mit WaboSign Pro freischalten. view_active: Aktive anzeigen team_account: Teamkonto team_accounts: Teamkonten @@ -5994,7 +5994,7 @@ de: &de use_otp_code_to_sign_in_or_click_the_link_below_html: 'Verwenden Sie den Code %{code}, um sich anzumelden, oder klicken Sie auf den untenstehenden Link:' complete_sign_in: Anmeldung abschließen please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Bitte antworten Sie auf diese E-Mail, wenn Sie diesen Anmeldeversuch nicht erkennen. - docuseal_support: DocuSeal Support + wabosign_support: WaboSign Support use_the_edit_form_to_move_it_to_another_team: Verwenden Sie das Bearbeitungsformular, um es in ein anderes Team zu verschieben. too_many_sms_attempts_try_again_in_a_few_seconds: Zu viele SMS-Versuche. Versuchen Sie es in ein paar Sekunden erneut. number_phone_number_is_invalid: "Die Telefonnummer +%{number} ist ungültig" @@ -6003,25 +6003,25 @@ de: &de seamlessly_automate_your_document_signing_process_with_make_com: Automatisieren Sie Ihren Dokumentenunterzeichnungsprozess nahtlos mit Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Finden Sie passende Zapier-Vorlagen, um Ihren Workflow zu automatisieren. get_started: Loslegen - click_here_to_learn_more_about_user_roles_and_permissions_html: 'Klicken Sie hier, um mehr über Benutzerrollen und -berechtigungen zu erfahren.' + click_here_to_learn_more_about_user_roles_and_permissions_html: 'Klicken Sie hier, um mehr über Benutzerrollen und -berechtigungen zu erfahren.' count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 E-Mails für Signaturanfragen wurden diesen Monat gesendet. Upgraden Sie zu Pro, um unbegrenzte Signaturanfragen zu senden.' test_mode_emails_limit_will_be_reset_within_24_hours: Das Limit für E-Mails im Testmodus wird innerhalb von 24 Stunden zurückgesetzt. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Auf einer Skala von 1 bis 10: Wie zufrieden sind Sie mit dem DocuSeal-Produkt?' + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: 'Auf einer Skala von 1 bis 10: Wie zufrieden sind Sie mit dem WaboSign-Produkt?' tell_us_more_about_your_experience: Erzählen Sie uns mehr über Ihre Erfahrung extremely_dissatisfied: Extrem unzufrieden extremely_satisfied: Extrem zufrieden your_pro_plan_payment_is_overdue: Ihre Zahlung für den Pro-Plan ist überfällig. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: 'Klicken Sie hier, um Ihre Zahlungsdaten zu aktualisieren und die Rechnung zu begleichen, um einen unterbrechungsfreien Service sicherzustellen.' overdue_payment: Überfällige Zahlung - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Ihr Pro-Plan wurde aufgrund unbezahlter Rechnungen ausgesetzt. Sie können Ihre Zahlungsdaten aktualisieren, um die Rechnung zu begleichen und DocuSeal weiterhin zu nutzen, oder Ihr Abonnement kündigen. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Ihr Pro-Plan wurde aufgrund unbezahlter Rechnungen ausgesetzt. Sie können Ihre Zahlungsdaten aktualisieren, um die Rechnung zu begleichen und WaboSign weiterhin zu nutzen, oder Ihr Abonnement kündigen. manage_subscription: Abonnement verwalten submission_created_by_email_html: 'Einreichung erstellt von %{email}' submission_created_by_email_via_source_html: 'Einreichung erstellt von %{email} über %{source}' submission_created_via_source_html: 'Einreichung erstellt über %{source}' pro_user_seats_used: Verwendete Pro-Benutzerplätze manage_plan: Plan verwalten - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Diese Einreichung hat mehrere Unterzeichner, was die Nutzung eines Freigabelinks verhindert, da unklar ist, welcher Unterzeichner für welche Felder verantwortlich ist. Um dies zu lösen, folgen Sie dieser Anleitung, um die Standarddetails des Unterzeichners festzulegen.' - welcome_to_docuseal: Willkommen bei DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Diese Einreichung hat mehrere Unterzeichner, was die Nutzung eines Freigabelinks verhindert, da unklar ist, welcher Unterzeichner für welche Felder verantwortlich ist. Um dies zu lösen, folgen Sie dieser Anleitung, um die Standarddetails des Unterzeichners festzulegen.' + welcome_to_docuseal: Willkommen bei WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Starten Sie eine kurze Tour, um zu lernen, wie Sie Ihr erstes Dokument erstellen und versenden. start_tour: Starten name_a_z: Name A-Z @@ -6097,13 +6097,13 @@ de: &de use_otp_code_to_access_the_api_key_html: Verwenden Sie den Code %{code}, um auf den API-Schlüssel zuzugreifen. please_reply_to_this_email_if_you_dont_recognize_this_request: Bitte antworten Sie auf diese E-Mail, wenn Sie diese Anfrage nicht erkennen. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Ihr Benutzerkonto wurde archiviert. Wenden Sie sich an Ihren Administrator, um den Zugriff wiederherzustellen. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Ihre E-Mail konnte nicht erreicht werden. Dies kann passieren, wenn sich ein Tippfehler in Ihrer Adresse befindet oder Ihr Postfach nicht verfügbar ist. Bitte kontaktieren Sie support@docuseal.com, um sich anzumelden. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Ihre E-Mail konnte nicht erreicht werden. Dies kann passieren, wenn sich ein Tippfehler in Ihrer Adresse befindet oder Ihr Postfach nicht verfügbar ist. Bitte kontaktieren Sie support@wabosign.com, um sich anzumelden. efficient_search_with_search_index: Effiziente Suche mit Suchindex reindex: Neu indexieren build_search_index: Suchindex erstellen require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: Zwei-Faktor-Authentifizierung (2FA) mit einer Authentifizierungs-App (z. B. Google Authenticator, Authy) erforderlich. Alle Benutzer, die Dokumente unterzeichnen, müssen zusätzlich zu ihrem Passwort die zweite Faktorprüfung mit einem sicheren Code bestehen. - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Fügen Sie jeder Signatur eine eindeutige Signatur-ID und einen Zeitstempel für Prüf- und Nachverfolgbarkeitszwecke hinzu. Teil der DocuSeal-Einstellungen zur 21 CFR Part 11-Compliance. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Unterzeichner müssen vor Abschluss ihrer Signatur einen Grund für die Unterzeichnung angeben (z. B. Genehmigungen, Zertifizierungen). Teil der DocuSeal-Einstellungen zur 21 CFR Part 11-Compliance. + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Fügen Sie jeder Signatur eine eindeutige Signatur-ID und einen Zeitstempel für Prüf- und Nachverfolgbarkeitszwecke hinzu. Teil der WaboSign-Einstellungen zur 21 CFR Part 11-Compliance. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Unterzeichner müssen vor Abschluss ihrer Signatur einen Grund für die Unterzeichnung angeben (z. B. Genehmigungen, Zertifizierungen). Teil der WaboSign-Einstellungen zur 21 CFR Part 11-Compliance. allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Unterzeichner dürfen Signaturen erstellen, indem sie ihren Namen eingeben, statt eine Signatur zu zeichnen oder hochzuladen. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Unterzeichner dürfen Formulare nach Abschluss erneut einreichen – nützlich für Korrekturen oder mehrere Einreichungen. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Empfänger dürfen die Unterzeichnung eines Dokuments ablehnen. Die Benachrichtigung mit dem Ablehnungsgrund wird an den Anforderer der Signatur gesendet. @@ -6178,7 +6178,7 @@ de: &de mcp_token_has_been_removed: Das MCP-Token wurde entfernt. enable_mcp_server: MCP-Server aktivieren all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Alle bestehenden MCP-Verbindungen werden sofort gestoppt, wenn diese Einstellung deaktiviert wird. - connect_to_docuseal_mcp: Mit DocuSeal MCP verbinden + connect_to_docuseal_mcp: Mit WaboSign MCP verbinden add_the_following_to_your_mcp_client_configuration: Fügen Sie Folgendes zu Ihrer MCP-Client-Konfiguration hinzu works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Funktioniert mit Claude Desktop, Cursor, Windsurf, VS Code und jedem MCP-kompatiblen Client. your_email_address_has_been_changed: Ihre E-Mail-Adresse wurde geändert @@ -6278,7 +6278,7 @@ de: &de settings: 'Einstellungen' settings_account_description: 'Mit umfangreichen Kontoeinstellungen können Sie das Signiererlebnis anpassen und weitere Benutzer einladen.' support: 'Support' - support_description: 'Sie können unseren KI-Assistenten nutzen oder uns bei Fragen an support@docuseal.com schreiben.' + support_description: 'Sie können unseren KI-Assistenten nutzen oder uns bei Fragen an support@wabosign.com schreiben.' settings_template_description: 'Über diese Schaltfläche gelangen Sie zu den Kontoeinstellungen.' doorkeeper: scopes: @@ -6383,7 +6383,7 @@ pl: profile_details: Szczegóły profilu sign_up_with_google: Zarejestruj się przez Google sign_up_with_microsoft: Zarejestruj się przez Microsoft - by_creating_an_account_you_agree_to_our_html: 'Tworząc konto, akceptujesz naszą Politykę Prywatności i Regulamin.' + by_creating_an_account_you_agree_to_our_html: 'Tworząc konto, akceptujesz naszą Politykę Prywatności i Regulamin.' enter_email_to_continue: Wprowadź e-mail, aby kontynuować the_code_has_been_sent_to_your_email: Kod został wysłany na Twój e-mail. enter_the_verification_code_from_your_email: Wprowadź kod weryfikacyjny z Twojego e-maila. @@ -6410,7 +6410,7 @@ pl: your_verification_code_to_access_the_name: 'Twój kod weryfikacyjny do uzyskania dostępu do "%{name}":' please_reply_to_this_email_if_you_didnt_request_this: Odpowiedz na ten e-mail, jeśli nie prosiłeś o to. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Twoje konto użytkownika zostało zarchiwizowane. Skontaktuj się z administratorem, aby przywrócić dostęp do konta. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Nie udało się uzyskać dostępu do Twojego adresu e-mail. Może to być spowodowane literówką w adresie lub niedostępnością skrzynki. Skontaktuj się z support@docuseal.com, aby się zalogować. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Nie udało się uzyskać dostępu do Twojego adresu e-mail. Może to być spowodowane literówką w adresie lub niedostępnością skrzynki. Skontaktuj się z support@wabosign.com, aby się zalogować. verification_required_refresh_the_page_and_pass_2fa: Weryfikacja wymagana, odśwież stronę i przejdź uwierzytelnienie dwuskładnikowe. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: Nadawca zażądał uwierzytelniania dwuskładnikowego za pośrednictwem hasła jednorazowego wysłanego na Twój adres e-mail %{email}. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: Skontaktuj się z nadawcą, aby podać swój adres e-mail do uwierzytelniania dwuskładnikowego. @@ -6484,7 +6484,7 @@ uk: profile_details: Дані профілю sign_up_with_google: Зареєструватися через Google sign_up_with_microsoft: Зареєструватися через Microsoft - by_creating_an_account_you_agree_to_our_html: 'Створюючи акаунт, ви погоджуєтесь з нашою Політикою конфіденційності і Умовами надання послуг.' + by_creating_an_account_you_agree_to_our_html: 'Створюючи акаунт, ви погоджуєтесь з нашою Політикою конфіденційності і Умовами надання послуг.' enter_email_to_continue: Введіть електронну пошту, щоб продовжити the_code_has_been_sent_to_your_email: Код було надіслано на вашу електронну пошту. enter_the_verification_code_from_your_email: Введіть код перевірки з вашої електронної пошти. @@ -6511,7 +6511,7 @@ uk: your_verification_code_to_access_the_name: 'Ваш код доступу до "%{name}":' please_reply_to_this_email_if_you_didnt_request_this: Відповідайте на цей лист, якщо ви цього не запитували. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Ваш обліковий запис було архівовано. Зверніться до адміністратора, щоб відновити доступ. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Не вдалося отримати доступ до вашої електронної пошти. Це може статися, якщо була допущена помилка в адресі або ваша скринька недоступна. Зверніться до support@docuseal.com, щоб увійти. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Не вдалося отримати доступ до вашої електронної пошти. Це може статися, якщо була допущена помилка в адресі або ваша скринька недоступна. Зверніться до support@wabosign.com, щоб увійти. verification_required_refresh_the_page_and_pass_2fa: Необхідна верифікація, оновіть сторінку та пройдіть двофакторну автентифікацію. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: Відправник запитав двофакторну автентифікацію за допомогою одноразового пароля, надісланого на вашу електронну пошту %{email}. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: Будь ласка, зв'яжіться з відправником, щоб вказати вашу електронну пошту для двофакторної автентифікації. @@ -6585,7 +6585,7 @@ cs: profile_details: Detaily profilu sign_up_with_google: Zaregistrovat se pomocí Googlu sign_up_with_microsoft: Zaregistrovat se pomocí Microsoftu - by_creating_an_account_you_agree_to_our_html: 'Vytvořením účtu souhlasíte s našimi Zásadami ochrany osobních údajů a Podmínkami služby.' + by_creating_an_account_you_agree_to_our_html: 'Vytvořením účtu souhlasíte s našimi Zásadami ochrany osobních údajů a Podmínkami služby.' enter_email_to_continue: Zadejte e-mail pro pokračování the_code_has_been_sent_to_your_email: Kód byl odeslán na váš e-mail. enter_the_verification_code_from_your_email: Zadejte ověřovací kód z vašeho e-mailu. @@ -6612,7 +6612,7 @@ cs: your_verification_code_to_access_the_name: 'Váš ověřovací kód pro přístup k "%{name}":' please_reply_to_this_email_if_you_didnt_request_this: Odpovězte na tento e-mail, pokud jste o to nežádali. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Váš uživatelský účet byl archivován. Kontaktujte svého administrátora pro obnovení přístupu. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Na váš e-mail se nepodařilo doručit zprávu. To se může stát, pokud je v adrese překlep nebo vaše schránka není dostupná. Pro přihlášení kontaktujte support@docuseal.com. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Na váš e-mail se nepodařilo doručit zprávu. To se může stát, pokud je v adrese překlep nebo vaše schránka není dostupná. Pro přihlášení kontaktujte support@wabosign.com. verification_required_refresh_the_page_and_pass_2fa: Ověření vyžadováno. Aktualizujte stránku a dokončete dvoufaktorové ověření. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: Odesílatel požádal o dvoufaktorové ověření pomocí jednorázového hesla odeslaného na vaši e-mailovou adresu %{email}. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: Prosím kontaktujte odesílatele a uveďte svůj e-mail pro dvoufaktorové ověření. @@ -6686,7 +6686,7 @@ he: profile_details: פרטי הפרופיל sign_up_with_google: הירשם עם גוגל sign_up_with_microsoft: הירשם עם מיקרוסופט - by_creating_an_account_you_agree_to_our_html: 'על ידי יצירת חשבון, אתה מסכים למדיניות הפרטיות ולתנאי השירות שלנו.' + by_creating_an_account_you_agree_to_our_html: 'על ידי יצירת חשבון, אתה מסכים למדיניות הפרטיות ולתנאי השירות שלנו.' enter_email_to_continue: הכנס דוא"ל כדי להמשיך the_code_has_been_sent_to_your_email: הקוד נשלח לדוא"ל שלך. enter_the_verification_code_from_your_email: הזן את קוד האימות מדוא"ל שלך. @@ -6713,7 +6713,7 @@ he: your_verification_code_to_access_the_name: 'קוד האימות שלך לגישה ל-%{name}:' please_reply_to_this_email_if_you_didnt_request_this: 'השב למייל זה אם לא ביקשת זאת.' your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: החשבון שלך הועבר לארכיון. פנה למנהל המערכת כדי לשחזר את הגישה. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: לא ניתן היה לגשת לדוא"ל שלך. ייתכן שזה קרה עקב שגיאת כתיב בכתובת או אם תיבת הדואר אינה זמינה. אנא פנה ל־support@docuseal.com כדי להתחבר. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: לא ניתן היה לגשת לדוא"ל שלך. ייתכן שזה קרה עקב שגיאת כתיב בכתובת או אם תיבת הדואר אינה זמינה. אנא פנה ל־support@wabosign.com כדי להתחבר. verification_required_refresh_the_page_and_pass_2fa: נדרש אימות. רענן את הדף והשלם אימות דו-שלבי. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: השולח ביקש אימות דו-שלבי באמצעות סיסמה חד-פעמית שנשלחה לכתובת הדוא"ל שלך %{email}. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: אנא פנה לשולח וציין את כתובת הדוא"ל שלך לאימות דו-שלבי. @@ -6784,16 +6784,16 @@ nl: &nl accessiable_by: Toegankelijk voor team_access: Teamtoegang document_download_filename_format: Bestandsnaamformaat voor documentdownload - docuseal_trusted_signature: DocuSeal Vertrouwde handtekening + wabosign_trusted_signature: WaboSign Vertrouwde handtekening hello_name: Hallo %{name} you_are_invited_to_product_name: U bent uitgenodigd voor %{product_name} you_have_been_invited_to_account_name_product_name_please_sign_up_using_the_link_below_: 'U bent uitgenodigd voor %{account_name} %{product_name}. Meld u aan via de onderstaande link:' sent_using_product_name_in_testing_mode_html: Verzonden met %{product_name} in testmodus sent_using_product_name_free_document_signing_html: Verzonden met %{product_name} gratis documentondertekening. - sent_with_docuseal_pro_html: Verzonden met DocuSeal Pro - show_send_with_docuseal_pro_attribution_in_emails_html: Toon de vermelding 'Verzonden met DocuSeal Pro' in e-mails + sent_with_docuseal_pro_html: Verzonden met WaboSign Pro + show_send_with_docuseal_pro_attribution_in_emails_html: Toon de vermelding 'Verzonden met WaboSign Pro' in e-mails ? sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature - : Onderteken documenten met een vertrouwd certificaat geleverd door DocuSeal. Uw documenten en gegevens worden nooit gedeeld met DocuSeal. PDF-checksum wordt verstrekt om een vertrouwde handtekening te genereren. + : Onderteken documenten met een vertrouwd certificaat geleverd door WaboSign. Uw documenten en gegevens worden nooit gedeeld met WaboSign. PDF-checksum wordt verstrekt om een vertrouwde handtekening te genereren. you_have_been_invited_to_submit_the_name_form: U bent uitgenodigd om het formulier "%{name}" in te dienen. you_have_been_invited_to_sign_the_name: U bent uitgenodigd om "%{name}" te ondertekenen. alternatively_you_can_review_and_download_your_copy_using_the_link_below: 'U kunt uw exemplaar ook bekijken en downloaden via de onderstaande link:' @@ -6895,7 +6895,7 @@ nl: &nl profile_details: Profielgegevens sign_up_with_google: Registreren met Google sign_up_with_microsoft: Registreren met Microsoft - by_creating_an_account_you_agree_to_our_html: Door een account aan te maken gaat u akkoord met ons Privacybeleid en onze Servicevoorwaarden. + by_creating_an_account_you_agree_to_our_html: Door een account aan te maken gaat u akkoord met ons Privacybeleid en onze Servicevoorwaarden. enter_email_to_continue: Voer e-mailadres in om door te gaan account: Account preferences: Voorkeuren @@ -6917,7 +6917,7 @@ nl: &nl combine_completed_documents_and_audit_log: Voltooide documenten en auditlogboek combineren salesforce_integration: Salesforce-integratie salesforce_has_been_connected: Salesforce is verbonden. - connect_salesforce_account_to_integrate_with_docuseal: Verbind een Salesforce-account om te integreren met DocuSeal + connect_salesforce_account_to_integrate_with_docuseal: Verbind een Salesforce-account om te integreren met WaboSign re_connect_salesforce: Salesforce opnieuw verbinden connect_salesforce: Salesforce verbinden danger_zone: Gevarenzone @@ -6946,13 +6946,13 @@ nl: &nl resetting_password: Wachtwoord resetten sign_in_with_name_account: Inloggen met %{name}-account two_factor_code_from_authenticator_app: Twee-factorcode van authenticator-app - sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Meld u aan in de DocuSeal Console om te upgraden. De on-premises app is volledig zelfstandig; de Console wordt alleen gebruikt om uw licentie te beheren. + sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: Meld u aan in de WaboSign Console om te upgraden. De on-premises app is volledig zelfstandig; de Console wordt alleen gebruikt om uw licentie te beheren. send_from_email: Verzenden vanaf e-mailadres optional: optioneel save: Opslaan saving: Opslaan changes_have_been_saved: Wijzigingen zijn opgeslagen. - unlock_with_docuseal_pro: Ontgrendel met DocuSeal Pro + unlock_with_docuseal_pro: Ontgrendel met WaboSign Pro use_your_own_certificates_to_sign_and_verify_pdf_files: Gebruik uw eigen certificaten om PDF-bestanden te ondertekenen en te verifiëren. upload_certificate: Certificaat uploaden name: Naam @@ -7052,7 +7052,7 @@ nl: &nl password_has_been_changed: Wachtwoord is gewijzigd. email_integration: E-mailintegratie send_via_connected_email: Verzenden via gekoppeld e-mailaccount - activate_with_docuseal_pro: Activeren met DocuSeal Pro + activate_with_docuseal_pro: Activeren met WaboSign Pro send_signature_request_to_your_recipients_directly_from_your_email: Stuur een ondertekenverzoek rechtstreeks vanuit uw eigen e-mail naar uw ontvangers connect_gmail: Gmail verbinden re_connect_gmail: Gmail opnieuw verbinden @@ -7132,7 +7132,7 @@ nl: &nl upgrade_to_send_unlimited_signature_requests: Upgrade om onbeperkte ondertekenverzoeken te verzenden add_without_sending: Toevoegen zonder te verzenden upgade_now: Nu upgraden - send_signature_request_emails_without_limits_with_docuseal_pro: Verzend onbeperkt e-mails voor ondertekenverzoeken met DocuSeal Pro + send_signature_request_emails_without_limits_with_docuseal_pro: Verzend onbeperkt e-mails voor ondertekenverzoeken met WaboSign Pro count_emails_used: "%{count} e-mails gebruikt" has_been_connected: is verbonden sms_not_configured: SMS niet geconfigureerd @@ -7234,7 +7234,7 @@ nl: &nl new_user: Nieuwe gebruiker unarchive: Dearchiveren last_session: Laatste sessie - unlock_more_user_roles_with_docuseal_pro: Ontgrendel meer gebruikersrollen met DocuSeal Pro. + unlock_more_user_roles_with_docuseal_pro: Ontgrendel meer gebruikersrollen met WaboSign Pro. view_active: Actieve items bekijken team_account: Teamaccount team_accounts: Teamaccounts @@ -7449,7 +7449,7 @@ nl: &nl use_otp_code_to_sign_in_or_click_the_link_below_html: 'Gebruik de code %{code} om in te loggen of klik op de onderstaande link:' complete_sign_in: Inloggen voltooien please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Reageer op deze e-mail als u deze aanmeldpoging niet herkent. - docuseal_support: DocuSeal Support + wabosign_support: WaboSign Support use_the_edit_form_to_move_it_to_another_team: Gebruik het bewerkingsformulier om het naar een ander team te verplaatsen. too_many_sms_attempts_try_again_in_a_few_seconds: Te veel SMS-pogingen. Probeer het over enkele seconden opnieuw. number_phone_number_is_invalid: Telefoonnummer +%{number} is ongeldig @@ -7458,25 +7458,25 @@ nl: &nl seamlessly_automate_your_document_signing_process_with_make_com: Automatiseer uw documentondertekeningsproces naadloos met Make.com. find_suitable_zapier_templates_to_automate_your_workflow: Vind geschikte Zapier-sjablonen om uw workflow te automatiseren. get_started: Aan de slag - click_here_to_learn_more_about_user_roles_and_permissions_html: Klik hier voor meer informatie over gebruikersrollen en machtigingen. + click_here_to_learn_more_about_user_roles_and_permissions_html: Klik hier voor meer informatie over gebruikersrollen en machtigingen. count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: "%{count} / 10 e-mails voor ondertekenverzoeken deze maand verzonden. Upgrade naar Pro om onbeperkt e-mails voor ondertekenverzoeken te verzenden." test_mode_emails_limit_will_be_reset_within_24_hours: Limiet voor testmodus-e-mails wordt binnen 24 uur opnieuw ingesteld. - on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: Op een schaal van 1 tot 10, hoe tevreden bent u over het DocuSeal-product? + on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: Op een schaal van 1 tot 10, hoe tevreden bent u over het WaboSign-product? tell_us_more_about_your_experience: Vertel ons meer over uw ervaring extremely_dissatisfied: Zeer ontevreden extremely_satisfied: Zeer tevreden your_pro_plan_payment_is_overdue: Uw betaling voor het Pro-abonnement is achterstallig. click_here_to_update_your_payment_details_and_clear_the_invoice_to_ensure_uninterrupted_service_html: Klik hier om uw betaalgegevens bij te werken en de factuur te voldoen om ononderbroken service te garanderen. overdue_payment: Achterstallige betaling - your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Uw Pro-abonnement is opgeschort vanwege onbetaalde facturen. U kunt uw betaalgegevens bijwerken om de factuur te voldoen en DocuSeal te blijven gebruiken of uw abonnement opzeggen. + your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: Uw Pro-abonnement is opgeschort vanwege onbetaalde facturen. U kunt uw betaalgegevens bijwerken om de factuur te voldoen en WaboSign te blijven gebruiken of uw abonnement opzeggen. manage_subscription: Abonnement beheren submission_created_by_email_html: "Inzending aangemaakt door %{email}" submission_created_by_email_via_source_html: "Inzending aangemaakt door %{email} via %{source}" submission_created_via_source_html: "Inzending aangemaakt via %{source}" pro_user_seats_used: Gebruikersplaatsen Pro gebruikt manage_plan: Abonnement beheren - this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: Deze inzending heeft meerdere ondertekenaars, waardoor het gebruik van een deellink niet mogelijk is omdat onduidelijk is welke ondertekenaar verantwoordelijk is voor specifieke velden. Volg deze handleiding om de standaardgegevens van de ondertekenaar te definiëren. - welcome_to_docuseal: Welkom bij DocuSeal + this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: Deze inzending heeft meerdere ondertekenaars, waardoor het gebruik van een deellink niet mogelijk is omdat onduidelijk is welke ondertekenaar verantwoordelijk is voor specifieke velden. Volg deze handleiding om de standaardgegevens van de ondertekenaar te definiëren. + welcome_to_docuseal: Welkom bij WaboSign start_a_quick_tour_to_learn_how_to_create_and_send_your_first_document: Start een korte rondleiding om te leren hoe u uw eerste document maakt en verzendt start_tour: Rondleiding starten name_a_z: Naam A-Z @@ -7548,13 +7548,13 @@ nl: &nl use_otp_code_to_access_the_api_key_html: Gebruik de code %{code} om toegang te krijgen tot de API-sleutel. please_reply_to_this_email_if_you_dont_recognize_this_request: Reageer op deze e-mail als u dit verzoek niet herkent. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: Uw gebruikersaccount is gearchiveerd. Neem contact op met uw beheerder om de toegang tot uw account te herstellen. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Uw e-mailadres kon niet worden bereikt. Dit kan gebeuren als er een typefout in uw adres zit of als uw mailbox niet beschikbaar is. Neem contact op met support@docuseal.com om in te loggen. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: Uw e-mailadres kon niet worden bereikt. Dit kan gebeuren als er een typefout in uw adres zit of als uw mailbox niet beschikbaar is. Neem contact op met support@wabosign.com om in te loggen. efficient_search_with_search_index: Efficiënt zoeken met zoekindex reindex: Opnieuw indexeren build_search_index: Zoekindex opbouwen require_two_factor_authentication_2fa_with_an_authenticator_app_e_g_google_authenticator_authy_all_users_signing_documents_must_pass_the_second_factor_verification_using_a_secure_code_in_addition_to_their_password: Tweeledige verificatie (2FA) met een authenticator-app (bijv. Google Authenticator, Authy) vereisen. Alle gebruikers die documenten ondertekenen moeten naast hun wachtwoord de tweede factor verifiëren met een beveiligde code. - add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Voeg voor audit- en traceerbaarheidsdoeleinden een unieke handtekening-ID en tijdstempel toe aan elke handtekening. Onderdeel van de 21 CFR Part 11-nalevingsinstellingen van DocuSeal. - require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Vereist dat de ondertekenaar vóór het voltooien van zijn handtekening een reden opgeeft (bijv. goedkeuringen, certificeringen). Onderdeel van de 21 CFR Part 11-nalevingsinstellingen van DocuSeal. + add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: Voeg voor audit- en traceerbaarheidsdoeleinden een unieke handtekening-ID en tijdstempel toe aan elke handtekening. Onderdeel van de 21 CFR Part 11-nalevingsinstellingen van WaboSign. + require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: Vereist dat de ondertekenaar vóór het voltooien van zijn handtekening een reden opgeeft (bijv. goedkeuringen, certificeringen). Onderdeel van de 21 CFR Part 11-nalevingsinstellingen van WaboSign. allow_signers_to_create_signatures_by_typing_their_name_instead_of_drawing_or_uploading_one: Sta ondertekenaars toe handtekeningen te maken door hun naam te typen in plaats van te tekenen of te uploaden. allow_signers_to_resubmit_forms_after_completion_useful_when_corrections_or_multiple_submissions_are_needed: Sta ondertekenaars toe formulieren na voltooiing opnieuw in te dienen; nuttig wanneer correcties of meerdere inzendingen nodig zijn. allow_recipients_to_decline_signing_a_document_the_decline_reason_notification_will_be_sent_to_the_signature_requester: Sta ontvangers toe het ondertekenen van een document te weigeren. De melding met de reden van weigering wordt naar de aanvrager van de handtekening gestuurd. @@ -7629,7 +7629,7 @@ nl: &nl mcp_token_has_been_removed: Het MCP-token is verwijderd. enable_mcp_server: MCP-server inschakelen all_existing_mcp_connections_will_be_stopped_immediately_when_this_setting_is_disabled: Alle bestaande MCP-verbindingen worden onmiddellijk gestopt wanneer deze instelling wordt uitgeschakeld. - connect_to_docuseal_mcp: Verbinden met DocuSeal MCP + connect_to_docuseal_mcp: Verbinden met WaboSign MCP add_the_following_to_your_mcp_client_configuration: Voeg het volgende toe aan uw MCP-clientconfiguratie works_with_claude_desktop_cursor_windsurf_vs_code_and_any_mcp_compatible_client: Werkt met Claude Desktop, Cursor, Windsurf, VS Code en elke MCP-compatibele client. your_email_address_has_been_changed: Uw e-mailadres is gewijzigd @@ -7729,7 +7729,7 @@ nl: &nl settings: Instellingen settings_account_description: Met uitgebreide accountinstellingen kunt u de eSigning-ervaring aanpassen en meer gebruikers uitnodigen. support: Ondersteuning - support_description: U kunt onze selfservice AI-assistent gebruiken of ons e-mailen op support@docuseal.com als u vragen heeft. + support_description: U kunt onze selfservice AI-assistent gebruiken of ons e-mailen op support@wabosign.com als u vragen heeft. settings_template_description: Gebruik deze knop om naar uw accountinstellingenpagina te gaan. doorkeeper: scopes: @@ -7834,7 +7834,7 @@ ar: profile_details: تفاصيل الملف الشخصي sign_up_with_google: الاشتراك باستخدام جوجل sign_up_with_microsoft: الاشتراك باستخدام مايكروسوفت - by_creating_an_account_you_agree_to_our_html: 'من خلال إنشاء حساب، فإنك توافق على سياسة الخصوصية وشروط الخدمة الخاصة بنا.' + by_creating_an_account_you_agree_to_our_html: 'من خلال إنشاء حساب، فإنك توافق على سياسة الخصوصية وشروط الخدمة الخاصة بنا.' enter_email_to_continue: أدخل البريد الإلكتروني للمتابعة the_code_has_been_sent_to_your_email: تم إرسال الرمز إلى بريدك الإلكتروني. enter_the_verification_code_from_your_email: أدخل رمز التحقق من بريدك الإلكتروني. @@ -7861,7 +7861,7 @@ ar: your_verification_code_to_access_the_name: 'رمز التحقق الخاص بك للوصول إلى "%{name}":' please_reply_to_this_email_if_you_didnt_request_this: 'يرجى الرد على هذا البريد إذا لم تطلب ذلك.' your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: تمت أرشفة حسابك. يرجى التواصل مع المسؤول لاستعادة الوصول إلى حسابك. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: تعذّر الوصول إلى بريدك الإلكتروني. قد يحدث هذا في حال وجود خطأ في العنوان أو إذا كان صندوق البريد غير متاح. يرجى التواصل مع support@docuseal.com لتسجيل الدخول. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: تعذّر الوصول إلى بريدك الإلكتروني. قد يحدث هذا في حال وجود خطأ في العنوان أو إذا كان صندوق البريد غير متاح. يرجى التواصل مع support@wabosign.com لتسجيل الدخول. verification_required_refresh_the_page_and_pass_2fa: مطلوب التحقق. قم بتحديث الصفحة وأكمل المصادقة الثنائية. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: طلب المرسل المصادقة الثنائية عبر كلمة مرور لمرة واحدة مرسلة إلى عنوان بريدك الإلكتروني %{email}. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: يرجى الاتصال بالمرسل لتحديد عنوان بريدك الإلكتروني للمصادقة الثنائية. @@ -7935,7 +7935,7 @@ ko: profile_details: 프로필 세부 정보 sign_up_with_google: Google로 가입 sign_up_with_microsoft: Microsoft로 가입 - by_creating_an_account_you_agree_to_our_html: '계정을 생성함으로써, 개인정보 처리방침서비스 약관에 동의하게 됩니다.' + by_creating_an_account_you_agree_to_our_html: '계정을 생성함으로써, 개인정보 처리방침서비스 약관에 동의하게 됩니다.' enter_email_to_continue: 계속하려면 이메일을 입력하세요 the_code_has_been_sent_to_your_email: 코드가 이메일로 전송되었습니다. enter_the_verification_code_from_your_email: 이메일로 받은 인증 코드를 입력하세요. @@ -7962,7 +7962,7 @@ ko: your_verification_code_to_access_the_name: '"%{name}"에 액세스하기 위한 인증 코드:' please_reply_to_this_email_if_you_didnt_request_this: 요청하지 않았다면 이 이메일에 회신하세요. your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: 사용자 계정이 보관되었습니다. 계정 접근을 복원하려면 관리자에게 문의하세요. - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: 이메일에 접근할 수 없습니다. 주소에 오타가 있거나 메일박스가 사용 불가능한 경우 발생할 수 있습니다. 로그인하려면 support@docuseal.com에 문의하세요. + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: 이메일에 접근할 수 없습니다. 주소에 오타가 있거나 메일박스가 사용 불가능한 경우 발생할 수 있습니다. 로그인하려면 support@wabosign.com에 문의하세요. verification_required_refresh_the_page_and_pass_2fa: 인증이 필요합니다. 페이지를 새로 고치고 2단계 인증을 완료하세요. the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: 발신자가 %{email} 이메일 주소로 전송된 일회용 비밀번호를 통해 2단계 인증을 요청했습니다. please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: 2단계 인증을 위해 이메일 주소를 지정하려면 요청자에게 문의하세요. @@ -8036,7 +8036,7 @@ ja: profile_details: プロフィールの詳細 sign_up_with_google: Googleで登録 sign_up_with_microsoft: Microsoftで登録 - by_creating_an_account_you_agree_to_our_html: 'プライバシーポリシーおよび利用規約に同意の上、アカウントを作成します。' + by_creating_an_account_you_agree_to_our_html: 'プライバシーポリシーおよび利用規約に同意の上、アカウントを作成します。' enter_email_to_continue: 続行するにはメールを入力してください the_code_has_been_sent_to_your_email: コードがあなたのメールに送信されました enter_the_verification_code_from_your_email: メールに記載された認証コードを入力してください @@ -8063,7 +8063,7 @@ ja: your_verification_code_to_access_the_name: '"%{name}" へアクセスするための認証コード:' please_reply_to_this_email_if_you_didnt_request_this: このリクエストを行っていない場合は、このメールに返信してください。 your_user_account_has_been_archived_contact_your_administrator_to_restore_access_to_your_account: あなたのユーザーアカウントはアーカイブされました。アクセスを復元するには管理者に連絡してください。 - your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: メールにアクセスできませんでした。アドレスの入力ミスやメールボックスが利用できない場合に発生することがあります。ログインするには support@docuseal.com に連絡してください。 + your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: メールにアクセスできませんでした。アドレスの入力ミスやメールボックスが利用できない場合に発生することがあります。ログインするには support@wabosign.com に連絡してください。 verification_required_refresh_the_page_and_pass_2fa: 認証が必要です。ページを更新して2段階認証を完了してください。 the_sender_has_requested_a_two_factor_authentication_via_one_time_password_sent_to_your_email_html: 送信者は、%{email} メールアドレスに送信されたワンタイムパスワードによる2段階認証を要求しました。 please_contact_the_requester_to_specify_your_email_for_two_factor_authentication: 2段階認証用にメールアドレスを指定するために、送信者にお問い合わせください。 diff --git a/config/routes.rb b/config/routes.rb index 1da136c5..f6e19cdd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,7 +3,7 @@ Rails.application.routes.draw do mount LetterOpenerWeb::Engine, at: '/letter_opener' if Rails.env.development? - if !Docuseal.multitenant? && defined?(Sidekiq::Web) + if !Wabosign.multitenant? && defined?(Sidekiq::Web) authenticated :user, ->(u) { u.sidekiq? } do mount Sidekiq::Web => '/jobs' end @@ -56,7 +56,7 @@ Rails.application.routes.draw do resources :account_custom_fields, only: %i[create] resources :user_configs, only: %i[create] resources :encrypted_user_configs, only: %i[destroy] - resources :timestamp_server, only: %i[create] unless Docuseal.multitenant? + resources :timestamp_server, only: %i[create] unless Wabosign.multitenant? resources :dashboard, only: %i[index] resources :setup, only: %i[index create] resource :newsletter, only: %i[show update] @@ -100,7 +100,7 @@ Rails.application.routes.draw do resource :debug, only: %i[show], controller: 'templates_debug' if Rails.env.development? resources :documents, only: %i[index create], controller: 'template_documents' resources :clone_and_replace, only: %i[create], controller: 'templates_clone_and_replace' - resources :detect_fields, only: %i[create], controller: 'templates_detect_fields' unless Docuseal.multitenant? + resources :detect_fields, only: %i[create], controller: 'templates_detect_fields' unless Wabosign.multitenant? resources :restore, only: %i[create], controller: 'templates_restore' resources :archived, only: %i[index], controller: 'templates_archived_submissions' resources :submissions, only: %i[new create] @@ -122,7 +122,7 @@ Rails.application.routes.draw do resource :blobs_proxy, only: %i[show], path: '/blobs_proxy/:signed_uuid/*filename', controller: 'api/active_storage_blobs_proxy' - if Docuseal.multitenant? + if Wabosign.multitenant? resource :blobs_proxy_legacy, only: %i[show], path: '/blobs/proxy/:signed_id/*filename', controller: 'api/active_storage_blobs_proxy_legacy', @@ -175,13 +175,13 @@ Rails.application.routes.draw do end scope '/settings', as: :settings do - unless Docuseal.multitenant? + unless Wabosign.multitenant? resources :storage, only: %i[index create], controller: 'storage_settings' resources :search_entries_reindex, only: %i[create] resources :sms, only: %i[index], controller: 'sms_settings' resources :mcp, only: %i[index new create destroy], controller: 'mcp_settings' end - if Docuseal.demo? || !Docuseal.multitenant? + if Wabosign.demo? || !Wabosign.multitenant? resources :api, only: %i[index create], controller: 'api_settings' resource :reveal_access_token, only: %i[show create], controller: 'reveal_access_token' end diff --git a/db/migrate/20240428112400_populate_account_linked_accounts.rb b/db/migrate/20240428112400_populate_account_linked_accounts.rb index 02103330..292fa9fe 100644 --- a/db/migrate/20240428112400_populate_account_linked_accounts.rb +++ b/db/migrate/20240428112400_populate_account_linked_accounts.rb @@ -10,7 +10,7 @@ class PopulateAccountLinkedAccounts < ActiveRecord::Migration[7.1] end def up - return if Docuseal.multitenant? + return if Wabosign.multitenant? MigrationAccount.order(:id).each do |account| next if account.id == 1 diff --git a/docker-compose.yml b/docker-compose.yml index fcc697be..aae9458c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,14 +3,14 @@ services: depends_on: postgres: condition: service_healthy - image: docuseal/docuseal:latest + image: wabosign/wabosign:latest ports: - 3000:3000 volumes: - - ./docuseal:/data/docuseal + - ./wabosign:/data/wabosign environment: - FORCE_SSL=${HOST} - - DATABASE_URL=postgresql://postgres:postgres@postgres:5432/docuseal + - DATABASE_URL=postgresql://postgres:postgres@postgres:5432/wabosign postgres: image: postgres:18 @@ -19,7 +19,7 @@ services: environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres - POSTGRES_DB: docuseal + POSTGRES_DB: wabosign healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s diff --git a/docs/api/csharp.md b/docs/api/csharp.md index a5668413..2218da17 100644 --- a/docs/api/csharp.md +++ b/docs/api/csharp.md @@ -3,7 +3,7 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```csharp -var client = new RestClient("https://api.docuseal.com/submissions"); +var client = new RestClient("https://api.wabosign.com/submissions"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -119,7 +119,7 @@ var response = client.Execute(request); The API endpoint provides the functionality to retrieve information about a submission. ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/1001"); +var client = new RestClient("https://api.wabosign.com/submissions/1001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -157,7 +157,7 @@ var response = client.Execute(request); This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/1001/documents"); +var client = new RestClient("https://api.wabosign.com/submissions/1001/documents"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -192,10 +192,10 @@ var response = client.Execute(request); ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```csharp -var client = new RestClient("https://api.docuseal.com/submissions"); +var client = new RestClient("https://api.wabosign.com/submissions"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -229,7 +229,7 @@ var response = client.Execute(request); "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -605,11 +605,11 @@ var response = client.Execute(request); ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/pdf"); +var client = new RestClient("https://api.wabosign.com/submissions/pdf"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -1163,10 +1163,10 @@ var response = client.Execute(request); ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/docx"); +var client = new RestClient("https://api.wabosign.com/submissions/docx"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -1618,10 +1618,10 @@ var response = client.Execute(request); ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/html"); +var client = new RestClient("https://api.wabosign.com/submissions/html"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -2091,7 +2091,7 @@ var response = client.Execute(request); The API endpoint allows you to archive a submission. ```csharp -var client = new RestClient("https://api.docuseal.com/submissions/1001"); +var client = new RestClient("https://api.wabosign.com/submissions/1001"); var request = new RestRequest("", Method.Delete); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -2129,7 +2129,7 @@ var response = client.Execute(request); The API endpoint provides the ability to retrieve a list of submitters. ```csharp -var client = new RestClient("https://api.docuseal.com/submitters"); +var client = new RestClient("https://api.wabosign.com/submitters"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -2243,7 +2243,7 @@ var response = client.Execute(request); The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```csharp -var client = new RestClient("https://api.docuseal.com/submitters/500001"); +var client = new RestClient("https://api.wabosign.com/submitters/500001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -2278,10 +2278,10 @@ var response = client.Execute(request); ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```csharp -var client = new RestClient("https://api.docuseal.com/submitters/500001"); +var client = new RestClient("https://api.wabosign.com/submitters/500001"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -2605,7 +2605,7 @@ var response = client.Execute(request); The API endpoint provides the ability to retrieve a list of available document templates. ```csharp -var client = new RestClient("https://api.docuseal.com/templates"); +var client = new RestClient("https://api.wabosign.com/templates"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -2706,7 +2706,7 @@ var response = client.Execute(request); The API endpoint provides the functionality to retrieve information about a document template. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/1000001"); +var client = new RestClient("https://api.wabosign.com/templates/1000001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); @@ -2741,11 +2741,11 @@ var response = client.Execute(request); ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp -var client = new RestClient("https://api.docuseal.com/templates/pdf"); +var client = new RestClient("https://api.wabosign.com/templates/pdf"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3089,11 +3089,11 @@ var response = client.Execute(request); ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp -var client = new RestClient("https://api.docuseal.com/templates/docx"); +var client = new RestClient("https://api.wabosign.com/templates/docx"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3419,10 +3419,10 @@ var response = client.Execute(request); ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```csharp -var client = new RestClient("https://api.docuseal.com/templates/html"); +var client = new RestClient("https://api.wabosign.com/templates/html"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3539,7 +3539,7 @@ var response = client.Execute(request); The API endpoint allows you to clone existing template into a new template. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/1000001/clone"); +var client = new RestClient("https://api.wabosign.com/templates/1000001/clone"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3604,7 +3604,7 @@ var response = client.Execute(request); The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/merge"); +var client = new RestClient("https://api.wabosign.com/templates/merge"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3688,7 +3688,7 @@ var response = client.Execute(request); The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/1000001"); +var client = new RestClient("https://api.wabosign.com/templates/1000001"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3765,7 +3765,7 @@ var response = client.Execute(request); The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/1000001/documents"); +var client = new RestClient("https://api.wabosign.com/templates/1000001/documents"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); @@ -3860,7 +3860,7 @@ var response = client.Execute(request); The API endpoint allows you to archive a document template. ```csharp -var client = new RestClient("https://api.docuseal.com/templates/1000001"); +var client = new RestClient("https://api.wabosign.com/templates/1000001"); var request = new RestRequest("", Method.Delete); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); diff --git a/docs/api/go.md b/docs/api/go.md index a141ac3a..32677917 100644 --- a/docs/api/go.md +++ b/docs/api/go.md @@ -13,7 +13,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions" + url := "https://api.wabosign.com/submissions" req, _ := http.NewRequest("GET", url, nil) @@ -150,7 +150,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/1001" + url := "https://api.wabosign.com/submissions/1001" req, _ := http.NewRequest("GET", url, nil) @@ -209,7 +209,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/1001/documents" + url := "https://api.wabosign.com/submissions/1001/documents" req, _ := http.NewRequest("GET", url, nil) @@ -255,7 +255,7 @@ func main() { ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```go package main @@ -269,7 +269,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions" + url := "https://api.wabosign.com/submissions" payload := strings.NewReader("{\"template_id\":1000001,\"send_email\":true,\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -315,7 +315,7 @@ func main() { "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -691,7 +691,7 @@ func main() { ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```go @@ -706,7 +706,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/pdf" + url := "https://api.wabosign.com/submissions/pdf" payload := strings.NewReader("{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -1272,7 +1272,7 @@ func main() { ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```go package main @@ -1286,7 +1286,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/docx" + url := "https://api.wabosign.com/submissions/docx" payload := strings.NewReader("{\"name\":\"Test Submission Document\",\"variables\":{\"variable_name\":\"value\"},\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -1750,7 +1750,7 @@ func main() { ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```go package main @@ -1764,7 +1764,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/html" + url := "https://api.wabosign.com/submissions/html" payload := strings.NewReader("{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"Test Document\",\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -2256,7 +2256,7 @@ import ( func main() { - url := "https://api.docuseal.com/submissions/1001" + url := "https://api.wabosign.com/submissions/1001" req, _ := http.NewRequest("DELETE", url, nil) @@ -2315,7 +2315,7 @@ import ( func main() { - url := "https://api.docuseal.com/submitters" + url := "https://api.wabosign.com/submitters" req, _ := http.NewRequest("GET", url, nil) @@ -2450,7 +2450,7 @@ import ( func main() { - url := "https://api.docuseal.com/submitters/500001" + url := "https://api.wabosign.com/submitters/500001" req, _ := http.NewRequest("GET", url, nil) @@ -2496,7 +2496,7 @@ func main() { ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```go package main @@ -2510,7 +2510,7 @@ import ( func main() { - url := "https://api.docuseal.com/submitters/500001" + url := "https://api.wabosign.com/submitters/500001" payload := strings.NewReader("{\"email\":\"john.doe@example.com\",\"fields\":[{\"name\":\"First Name\",\"default_value\":\"Acme\"}]}") @@ -2856,7 +2856,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates" + url := "https://api.wabosign.com/templates" req, _ := http.NewRequest("GET", url, nil) @@ -2978,7 +2978,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/1000001" + url := "https://api.wabosign.com/templates/1000001" req, _ := http.NewRequest("GET", url, nil) @@ -3024,7 +3024,7 @@ func main() { ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```go @@ -3039,7 +3039,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/pdf" + url := "https://api.wabosign.com/templates/pdf" payload := strings.NewReader("{\"name\":\"Test PDF\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}]}") @@ -3395,7 +3395,7 @@ func main() { ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```go @@ -3410,7 +3410,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/docx" + url := "https://api.wabosign.com/templates/docx" payload := strings.NewReader("{\"name\":\"Test DOCX\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}]}") @@ -3748,7 +3748,7 @@ func main() { ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```go package main @@ -3762,7 +3762,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/html" + url := "https://api.wabosign.com/templates/html" payload := strings.NewReader("{\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\",\"name\":\"Test Template\"}") @@ -3902,7 +3902,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/1000001/clone" + url := "https://api.wabosign.com/templates/1000001/clone" payload := strings.NewReader("{\"name\":\"Cloned Template\"}") @@ -3990,7 +3990,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/merge" + url := "https://api.wabosign.com/templates/merge" payload := strings.NewReader("{\"template_ids\":[321,432],\"name\":\"Merged Template\"}") @@ -4097,7 +4097,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/1000001" + url := "https://api.wabosign.com/templates/1000001" payload := strings.NewReader("{\"name\":\"New Document Name\",\"folder_name\":\"New Folder\"}") @@ -4197,7 +4197,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/1000001/documents" + url := "https://api.wabosign.com/templates/1000001/documents" payload := strings.NewReader("{\"documents\":[{\"file\":\"string\"}]}") @@ -4314,7 +4314,7 @@ import ( func main() { - url := "https://api.docuseal.com/templates/1000001" + url := "https://api.wabosign.com/templates/1000001" req, _ := http.NewRequest("DELETE", url, nil) diff --git a/docs/api/java.md b/docs/api/java.md index 59b55aad..94e5ead6 100644 --- a/docs/api/java.md +++ b/docs/api/java.md @@ -3,7 +3,7 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/submissions") +HttpResponse response = Unirest.get("https://api.wabosign.com/submissions") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -118,7 +118,7 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/submission The API endpoint provides the functionality to retrieve information about a submission. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/submissions/1001") +HttpResponse response = Unirest.get("https://api.wabosign.com/submissions/1001") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -155,7 +155,7 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/submission This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/submissions/1001/documents") +HttpResponse response = Unirest.get("https://api.wabosign.com/submissions/1001/documents") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -189,10 +189,10 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/submission ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/submissions") +HttpResponse response = Unirest.post("https://api.wabosign.com/submissions") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"template_id\":1000001,\"send_email\":true,\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -225,7 +225,7 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/submissio "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -601,11 +601,11 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/submissio ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/submissions/pdf") +HttpResponse response = Unirest.post("https://api.wabosign.com/submissions/pdf") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -1158,10 +1158,10 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/submissio ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/submissions/docx") +HttpResponse response = Unirest.post("https://api.wabosign.com/submissions/docx") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Test Submission Document\",\"variables\":{\"variable_name\":\"value\"},\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -1612,10 +1612,10 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/submissio ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/submissions/html") +HttpResponse response = Unirest.post("https://api.wabosign.com/submissions/html") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"Test Document\",\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}") @@ -2084,7 +2084,7 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/submissio The API endpoint allows you to archive a submission. ```java -HttpResponse response = Unirest.delete("https://api.docuseal.com/submissions/1001") +HttpResponse response = Unirest.delete("https://api.wabosign.com/submissions/1001") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -2121,7 +2121,7 @@ HttpResponse response = Unirest.delete("https://api.docuseal.com/submiss The API endpoint provides the ability to retrieve a list of submitters. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/submitters") +HttpResponse response = Unirest.get("https://api.wabosign.com/submitters") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -2234,7 +2234,7 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/submitters The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/submitters/500001") +HttpResponse response = Unirest.get("https://api.wabosign.com/submitters/500001") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -2268,10 +2268,10 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/submitters ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```java -HttpResponse response = Unirest.put("https://api.docuseal.com/submitters/500001") +HttpResponse response = Unirest.put("https://api.wabosign.com/submitters/500001") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"email\":\"john.doe@example.com\",\"fields\":[{\"name\":\"First Name\",\"default_value\":\"Acme\"}]}") @@ -2594,7 +2594,7 @@ HttpResponse response = Unirest.put("https://api.docuseal.com/submitters The API endpoint provides the ability to retrieve a list of available document templates. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/templates") +HttpResponse response = Unirest.get("https://api.wabosign.com/templates") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -2694,7 +2694,7 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/templates" The API endpoint provides the functionality to retrieve information about a document template. ```java -HttpResponse response = Unirest.get("https://api.docuseal.com/templates/1000001") +HttpResponse response = Unirest.get("https://api.wabosign.com/templates/1000001") .header("X-Auth-Token", "API_KEY") .asString(); ``` @@ -2728,11 +2728,11 @@ HttpResponse response = Unirest.get("https://api.docuseal.com/templates/ ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/templates/pdf") +HttpResponse response = Unirest.post("https://api.wabosign.com/templates/pdf") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Test PDF\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}]}") @@ -3075,11 +3075,11 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/templates ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/templates/docx") +HttpResponse response = Unirest.post("https://api.wabosign.com/templates/docx") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Test DOCX\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}]}") @@ -3404,10 +3404,10 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/templates ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/templates/html") +HttpResponse response = Unirest.post("https://api.wabosign.com/templates/html") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\",\"name\":\"Test Template\"}") @@ -3523,7 +3523,7 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/templates The API endpoint allows you to clone existing template into a new template. ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/templates/1000001/clone") +HttpResponse response = Unirest.post("https://api.wabosign.com/templates/1000001/clone") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"Cloned Template\"}") @@ -3587,7 +3587,7 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/templates The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```java -HttpResponse response = Unirest.post("https://api.docuseal.com/templates/merge") +HttpResponse response = Unirest.post("https://api.wabosign.com/templates/merge") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"template_ids\":[321,432],\"name\":\"Merged Template\"}") @@ -3670,7 +3670,7 @@ HttpResponse response = Unirest.post("https://api.docuseal.com/templates The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```java -HttpResponse response = Unirest.put("https://api.docuseal.com/templates/1000001") +HttpResponse response = Unirest.put("https://api.wabosign.com/templates/1000001") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"name\":\"New Document Name\",\"folder_name\":\"New Folder\"}") @@ -3746,7 +3746,7 @@ HttpResponse response = Unirest.put("https://api.docuseal.com/templates/ The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```java -HttpResponse response = Unirest.put("https://api.docuseal.com/templates/1000001/documents") +HttpResponse response = Unirest.put("https://api.wabosign.com/templates/1000001/documents") .header("X-Auth-Token", "API_KEY") .header("content-type", "application/json") .body("{\"documents\":[{\"file\":\"string\"}]}") @@ -3840,7 +3840,7 @@ HttpResponse response = Unirest.put("https://api.docuseal.com/templates/ The API endpoint allows you to archive a document template. ```java -HttpResponse response = Unirest.delete("https://api.docuseal.com/templates/1000001") +HttpResponse response = Unirest.delete("https://api.wabosign.com/templates/1000001") .header("X-Auth-Token", "API_KEY") .asString(); ``` diff --git a/docs/api/javascript.md b/docs/api/javascript.md index 297f4c4c..f94e1dba 100644 --- a/docs/api/javascript.md +++ b/docs/api/javascript.md @@ -3,11 +3,11 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listSubmissions({ limit: 10 }); +const { data, pagination } = await wabosign.listSubmissions({ limit: 10 }); ``` ```json @@ -120,11 +120,11 @@ const { data, pagination } = await docuseal.listSubmissions({ limit: 10 }); The API endpoint provides the functionality to retrieve information about a submission. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.getSubmission(1001); +const submission = await wabosign.getSubmission(1001); ``` ```json @@ -159,11 +159,11 @@ const submission = await docuseal.getSubmission(1001); This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.getSubmissionDocuments(1001); +const submission = await wabosign.getSubmissionDocuments(1001); ``` ```json @@ -195,14 +195,14 @@ const submission = await docuseal.getSubmissionDocuments(1001); ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmission({ +const submission = await wabosign.createSubmission({ template_id: 1000001, send_email: true, submitters: [ @@ -240,7 +240,7 @@ const submission = await docuseal.createSubmission({ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -616,15 +616,15 @@ const submission = await docuseal.createSubmission({ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromPdf({ +const submission = await wabosign.createSubmissionFromPdf({ name: "Test Submission Document", documents: [ { @@ -1201,14 +1201,14 @@ const submission = await docuseal.createSubmissionFromPdf({ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromDocx({ +const submission = await wabosign.createSubmissionFromDocx({ name: "Test Submission Document", variables: { variable_name: "value" @@ -1672,14 +1672,14 @@ const submission = await docuseal.createSubmissionFromDocx({ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromHtml({ +const submission = await wabosign.createSubmissionFromHtml({ name: "Test Submission Document", documents: [ { @@ -2166,11 +2166,11 @@ and typesetting industry

The API endpoint allows you to archive a submission. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -await docuseal.archiveSubmission(1001); +await wabosign.archiveSubmission(1001); ``` ```json @@ -2205,11 +2205,11 @@ await docuseal.archiveSubmission(1001); The API endpoint provides the ability to retrieve a list of submitters. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listSubmitters({ limit: 10 }); +const { data, pagination } = await wabosign.listSubmitters({ limit: 10 }); ``` ```json @@ -2320,11 +2320,11 @@ const { data, pagination } = await docuseal.listSubmitters({ limit: 10 }); The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submitter = await docuseal.getSubmitter(500001); +const submitter = await wabosign.getSubmitter(500001); ``` ```json @@ -2356,14 +2356,14 @@ const submitter = await docuseal.getSubmitter(500001); ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submitter = await docuseal.updateSubmitter(500001, { +const submitter = await wabosign.updateSubmitter(500001, { email: "john.doe@example.com", fields: [ { @@ -2690,11 +2690,11 @@ const submitter = await docuseal.updateSubmitter(500001, { The API endpoint provides the ability to retrieve a list of available document templates. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listTemplates({ limit: 10 }); +const { data, pagination } = await wabosign.listTemplates({ limit: 10 }); ``` ```json @@ -2792,11 +2792,11 @@ const { data, pagination } = await docuseal.listTemplates({ limit: 10 }); The API endpoint provides the functionality to retrieve information about a document template. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.getTemplate(1000001); +const template = await wabosign.getTemplate(1000001); ``` ```json @@ -2828,15 +2828,15 @@ const template = await docuseal.getTemplate(1000001); ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromPdf({ +const template = await wabosign.createTemplateFromPdf({ name: "Test PDF", documents: [ { @@ -3197,15 +3197,15 @@ const template = await docuseal.createTemplateFromPdf({ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromDocx({ +const template = await wabosign.createTemplateFromDocx({ name: "Test DOCX", documents: [ { @@ -3534,14 +3534,14 @@ const template = await docuseal.createTemplateFromDocx({ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromHtml({ +const template = await wabosign.createTemplateFromHtml({ html: `

Lorem Ipsum is simply dummy text of the The API endpoint allows you to clone existing template into a new template. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.cloneTemplate(1000001, { +const template = await wabosign.cloneTemplate(1000001, { name: "Cloned Template" }); ``` @@ -3730,11 +3730,11 @@ const template = await docuseal.cloneTemplate(1000001, { The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.mergeTemplates({ +const template = await wabosign.mergeTemplates({ template_ids: [ 321, 432 @@ -3819,11 +3819,11 @@ const template = await docuseal.mergeTemplates({ The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.updateTemplate(1000001, { +const template = await wabosign.updateTemplate(1000001, { name: "New Document Name", folder_name: "New Folder" }); @@ -3898,11 +3898,11 @@ const template = await docuseal.updateTemplate(1000001, { The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.updateTemplateDocuments(1000001, { +const template = await wabosign.updateTemplateDocuments(1000001, { documents: [ { file: "string" @@ -3998,11 +3998,11 @@ const template = await docuseal.updateTemplateDocuments(1000001, { The API endpoint allows you to archive a document template. ```javascript -const docuseal = require("@docuseal/api"); +const wabosign = require("@wabosign/api"); -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -await docuseal.archiveTemplate(1000001); +await wabosign.archiveTemplate(1000001); ``` ```json diff --git a/docs/api/nodejs.md b/docs/api/nodejs.md index c1e00c63..b9d76d77 100644 --- a/docs/api/nodejs.md +++ b/docs/api/nodejs.md @@ -5,7 +5,7 @@ The API endpoint provides the ability to retrieve a list of available submission ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions", { +const resp = await fetch("https://api.wabosign.com/submissions", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -127,7 +127,7 @@ The API endpoint provides the functionality to retrieve information about a subm ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/1001", { +const resp = await fetch("https://api.wabosign.com/submissions/1001", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -171,7 +171,7 @@ This endpoint returns a list of partially filled documents for a submission. If ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/1001/documents", { +const resp = await fetch("https://api.wabosign.com/submissions/1001/documents", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -210,12 +210,12 @@ const submission = await resp.json(); ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions", { +const resp = await fetch("https://api.wabosign.com/submissions", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -261,7 +261,7 @@ const submitters = await resp.json(); "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -637,13 +637,13 @@ const submitters = await resp.json(); ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/pdf", { +const resp = await fetch("https://api.wabosign.com/submissions/pdf", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -1228,12 +1228,12 @@ const submission = await resp.json(); ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/docx", { +const resp = await fetch("https://api.wabosign.com/submissions/docx", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -1705,12 +1705,12 @@ const submitters = await resp.json(); ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/html", { +const resp = await fetch("https://api.wabosign.com/submissions/html", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -2207,7 +2207,7 @@ The API endpoint allows you to archive a submission. ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submissions/1001", { +const resp = await fetch("https://api.wabosign.com/submissions/1001", { method: "DELETE", headers: { "X-Auth-Token": "API_KEY" @@ -2251,7 +2251,7 @@ The API endpoint provides the ability to retrieve a list of submitters. ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submitters", { +const resp = await fetch("https://api.wabosign.com/submitters", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -2371,7 +2371,7 @@ The API endpoint provides functionality to retrieve information about a submitte ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submitters/500001", { +const resp = await fetch("https://api.wabosign.com/submitters/500001", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -2410,12 +2410,12 @@ const submitter = await resp.json(); ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/submitters/500001", { +const resp = await fetch("https://api.wabosign.com/submitters/500001", { method: "PUT", headers: { "X-Auth-Token": "API_KEY" @@ -2752,7 +2752,7 @@ The API endpoint provides the ability to retrieve a list of available document t ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates", { +const resp = await fetch("https://api.wabosign.com/templates", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -2859,7 +2859,7 @@ The API endpoint provides the functionality to retrieve information about a docu ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/1000001", { +const resp = await fetch("https://api.wabosign.com/templates/1000001", { method: "GET", headers: { "X-Auth-Token": "API_KEY" @@ -2898,13 +2898,13 @@ const template = await resp.json(); ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/pdf", { +const resp = await fetch("https://api.wabosign.com/templates/pdf", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -3273,13 +3273,13 @@ const template = await resp.json(); ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/docx", { +const resp = await fetch("https://api.wabosign.com/templates/docx", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -3616,12 +3616,12 @@ const template = await resp.json(); ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/html", { +const resp = await fetch("https://api.wabosign.com/templates/html", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -3754,7 +3754,7 @@ The API endpoint allows you to clone existing template into a new template. ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/1000001/clone", { +const resp = await fetch("https://api.wabosign.com/templates/1000001/clone", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -3826,7 +3826,7 @@ The API endpoint allows you to merge multiple templates with documents and field ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/merge", { +const resp = await fetch("https://api.wabosign.com/templates/merge", { method: "POST", headers: { "X-Auth-Token": "API_KEY" @@ -3921,7 +3921,7 @@ The API endpoint provides the functionality to move a document template to a dif ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/1000001", { +const resp = await fetch("https://api.wabosign.com/templates/1000001", { method: "PUT", headers: { "X-Auth-Token": "API_KEY" @@ -4006,7 +4006,7 @@ The API endpoint allows you to add, remove or replace documents in the template ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/1000001/documents", { +const resp = await fetch("https://api.wabosign.com/templates/1000001/documents", { method: "PUT", headers: { "X-Auth-Token": "API_KEY" @@ -4112,7 +4112,7 @@ The API endpoint allows you to archive a document template. ```nodejs const fetch = require("node-fetch"); -const resp = await fetch("https://api.docuseal.com/templates/1000001", { +const resp = await fetch("https://api.wabosign.com/templates/1000001", { method: "DELETE", headers: { "X-Auth-Token": "API_KEY" diff --git a/docs/api/php.md b/docs/api/php.md index a56fe2ca..6ff894b8 100644 --- a/docs/api/php.md +++ b/docs/api/php.md @@ -3,9 +3,9 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->listSubmissions(['limit' => 10]); +$wabosign->listSubmissions(['limit' => 10]); ``` ```json @@ -118,9 +118,9 @@ $docuseal->listSubmissions(['limit' => 10]); The API endpoint provides the functionality to retrieve information about a submission. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->getSubmission(1001); +$wabosign->getSubmission(1001); ``` ```json @@ -155,9 +155,9 @@ $docuseal->getSubmission(1001); This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->getSubmissionDocuments(1001); +$wabosign->getSubmissionDocuments(1001); ``` ```json @@ -189,12 +189,12 @@ $docuseal->getSubmissionDocuments(1001); ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createSubmission([ +$wabosign->createSubmission([ 'template_id' => 1000001, 'send_email' => true, 'submitters' => [ @@ -232,7 +232,7 @@ $docuseal->createSubmission([ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -608,13 +608,13 @@ $docuseal->createSubmission([ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createSubmissionFromPdf([ +$wabosign->createSubmissionFromPdf([ 'name' => 'Test Submission Document', 'documents' => [ [ @@ -1191,12 +1191,12 @@ $docuseal->createSubmissionFromPdf([ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createSubmissionFromDocx([ +$wabosign->createSubmissionFromDocx([ 'name' => 'Test Submission Document', 'variables' => [ 'variable_name' => 'value' @@ -1660,12 +1660,12 @@ $docuseal->createSubmissionFromDocx([ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createSubmissionFromHtml([ +$wabosign->createSubmissionFromHtml([ 'name' => 'Test Submission Document', 'documents' => [ [ @@ -2152,9 +2152,9 @@ and typesetting industry

The API endpoint allows you to archive a submission. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->archiveSubmission(1001); +$wabosign->archiveSubmission(1001); ``` ```json @@ -2189,9 +2189,9 @@ $docuseal->archiveSubmission(1001); The API endpoint provides the ability to retrieve a list of submitters. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->listSubmitters(['limit' => 10]); +$wabosign->listSubmitters(['limit' => 10]); ``` ```json @@ -2302,9 +2302,9 @@ $docuseal->listSubmitters(['limit' => 10]); The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->getSubmitter(500001); +$wabosign->getSubmitter(500001); ``` ```json @@ -2336,12 +2336,12 @@ $docuseal->getSubmitter(500001); ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->updateSubmitter(500001, [ +$wabosign->updateSubmitter(500001, [ 'email' => 'john.doe@example.com', 'fields' => [ [ @@ -2668,9 +2668,9 @@ $docuseal->updateSubmitter(500001, [ The API endpoint provides the ability to retrieve a list of available document templates. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->listTemplates(['limit' => 10]); +$wabosign->listTemplates(['limit' => 10]); ``` ```json @@ -2768,9 +2768,9 @@ $docuseal->listTemplates(['limit' => 10]); The API endpoint provides the functionality to retrieve information about a document template. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->getTemplate(1000001); +$wabosign->getTemplate(1000001); ``` ```json @@ -2802,13 +2802,13 @@ $docuseal->getTemplate(1000001); ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createTemplateFromPdf([ +$wabosign->createTemplateFromPdf([ 'name' => 'Test PDF', 'documents' => [ [ @@ -3169,13 +3169,13 @@ $docuseal->createTemplateFromPdf([ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createTemplateFromDocx([ +$wabosign->createTemplateFromDocx([ 'name' => 'Test DOCX', 'documents' => [ [ @@ -3504,12 +3504,12 @@ $docuseal->createTemplateFromDocx([ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->createTemplateFromHtml([ +$wabosign->createTemplateFromHtml([ 'html' => '

Lorem Ipsum is simply dummy text of the The API endpoint allows you to clone existing template into a new template. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->cloneTemplate(1000001, [ +$wabosign->cloneTemplate(1000001, [ 'name' => 'Cloned Template' ]); ``` @@ -3696,9 +3696,9 @@ $docuseal->cloneTemplate(1000001, [ The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->mergeTemplates([ +$wabosign->mergeTemplates([ 'template_ids' => [ 321, 432 @@ -3783,9 +3783,9 @@ $docuseal->mergeTemplates([ The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->updateTemplate(1000001, [ +$wabosign->updateTemplate(1000001, [ 'name' => 'New Document Name', 'folder_name' => 'New Folder' ]); @@ -3860,9 +3860,9 @@ $docuseal->updateTemplate(1000001, [ The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->updateTemplateDocuments(1000001, [ +$wabosign->updateTemplateDocuments(1000001, [ 'documents' => [ [ 'file' => 'string' @@ -3958,9 +3958,9 @@ $docuseal->updateTemplateDocuments(1000001, [ The API endpoint allows you to archive a document template. ```php -$docuseal = new \Docuseal\Api('API_KEY', 'https://api.docuseal.com'); +$wabosign = new \Wabosign\Api('API_KEY', 'https://api.wabosign.com'); -$docuseal->archiveTemplate(1000001); +$wabosign->archiveTemplate(1000001); ``` ```json diff --git a/docs/api/python.md b/docs/api/python.md index 28940996..2d26f10e 100644 --- a/docs/api/python.md +++ b/docs/api/python.md @@ -3,12 +3,12 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.list_submissions({ "limit": 10 }) +wabosign.list_submissions({ "limit": 10 }) ``` ```json @@ -121,12 +121,12 @@ docuseal.list_submissions({ "limit": 10 }) The API endpoint provides the functionality to retrieve information about a submission. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.get_submission(1001) +wabosign.get_submission(1001) ``` ```json @@ -161,12 +161,12 @@ docuseal.get_submission(1001) This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.get_submission_documents(1001) +wabosign.get_submission_documents(1001) ``` ```json @@ -198,15 +198,15 @@ docuseal.get_submission_documents(1001) ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_submission({ +wabosign.create_submission({ "template_id": 1000001, "send_email": True, "submitters": [ @@ -244,7 +244,7 @@ docuseal.create_submission({ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -620,16 +620,16 @@ docuseal.create_submission({ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_submission_from_pdf({ +wabosign.create_submission_from_pdf({ "name": "Test Submission Document", "documents": [ { @@ -1206,15 +1206,15 @@ docuseal.create_submission_from_pdf({ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_submission_from_docx({ +wabosign.create_submission_from_docx({ "name": "Test Submission Document", "variables": { "variable_name": "value" @@ -1678,15 +1678,15 @@ docuseal.create_submission_from_docx({ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_submission_from_html({ +wabosign.create_submission_from_html({ "name": "Test Submission Document", "documents": [ { @@ -2173,12 +2173,12 @@ and typesetting industry

The API endpoint allows you to archive a submission. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.archive_submission(1001) +wabosign.archive_submission(1001) ``` ```json @@ -2213,12 +2213,12 @@ docuseal.archive_submission(1001) The API endpoint provides the ability to retrieve a list of submitters. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.list_submissions({ "limit": 10 }) +wabosign.list_submissions({ "limit": 10 }) ``` ```json @@ -2329,12 +2329,12 @@ docuseal.list_submissions({ "limit": 10 }) The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.get_submitter(500001) +wabosign.get_submitter(500001) ``` ```json @@ -2366,15 +2366,15 @@ docuseal.get_submitter(500001) ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.update_submitter(500001, { +wabosign.update_submitter(500001, { "email": "john.doe@example.com", "fields": [ { @@ -2701,12 +2701,12 @@ docuseal.update_submitter(500001, { The API endpoint provides the ability to retrieve a list of available document templates. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.list_submissions({ "limit": 10 }) +wabosign.list_submissions({ "limit": 10 }) ``` ```json @@ -2804,12 +2804,12 @@ docuseal.list_submissions({ "limit": 10 }) The API endpoint provides the functionality to retrieve information about a document template. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.get_template(1000001) +wabosign.get_template(1000001) ``` ```json @@ -2841,16 +2841,16 @@ docuseal.get_template(1000001) ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_template_from_pdf({ +wabosign.create_template_from_pdf({ "name": "Test PDF", "documents": [ { @@ -3211,16 +3211,16 @@ docuseal.create_template_from_pdf({ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_template_from_docx({ +wabosign.create_template_from_docx({ "name": "Test DOCX", "documents": [ { @@ -3549,15 +3549,15 @@ docuseal.create_template_from_docx({ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.create_template_from_html({ +wabosign.create_template_from_html({ "html": """

Lorem Ipsum is simply dummy text of the The API endpoint allows you to clone existing template into a new template. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.clone_template(1000001, { +wabosign.clone_template(1000001, { "name": "Cloned Template" }) ``` @@ -3747,12 +3747,12 @@ docuseal.clone_template(1000001, { The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.merge_templates({ +wabosign.merge_templates({ "template_ids": [ 321, 432 @@ -3837,12 +3837,12 @@ docuseal.merge_templates({ The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.update_template(1000001, { +wabosign.update_template(1000001, { "name": "New Document Name", "folder_name": "New Folder" }) @@ -3917,12 +3917,12 @@ docuseal.update_template(1000001, { The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.update_template_documents(1000001, { +wabosign.update_template_documents(1000001, { "documents": [ { "file": "string" @@ -4018,12 +4018,12 @@ docuseal.update_template_documents(1000001, { The API endpoint allows you to archive a document template. ```python -from docuseal import docuseal +from wabosign import wabosign -docuseal.key = "API_KEY" -docuseal.url = "https://api.docuseal.com" +wabosign.key = "API_KEY" +wabosign.url = "https://api.wabosign.com" -docuseal.archive_template(1000001) +wabosign.archive_template(1000001) ``` ```json diff --git a/docs/api/ruby.md b/docs/api/ruby.md index cb5a84aa..c47fa6e9 100644 --- a/docs/api/ruby.md +++ b/docs/api/ruby.md @@ -3,12 +3,12 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.list_submissions(limit: 10) +Wabosign.list_submissions(limit: 10) ``` ```json @@ -121,12 +121,12 @@ Docuseal.list_submissions(limit: 10) The API endpoint provides the functionality to retrieve information about a submission. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.get_submission(1001) +Wabosign.get_submission(1001) ``` ```json @@ -161,12 +161,12 @@ Docuseal.get_submission(1001) This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.get_submission_documents(1001) +Wabosign.get_submission_documents(1001) ``` ```json @@ -198,15 +198,15 @@ Docuseal.get_submission_documents(1001) ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_submission({ +Wabosign.create_submission({ template_id: 1000001, send_email: true, submitters: [ @@ -244,7 +244,7 @@ Docuseal.create_submission({ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -620,16 +620,16 @@ Docuseal.create_submission({ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_submission_from_pdf({ +Wabosign.create_submission_from_pdf({ name: "Test Submission Document", documents: [ { @@ -1206,15 +1206,15 @@ Docuseal.create_submission_from_pdf({ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_submission_from_docx({ +Wabosign.create_submission_from_docx({ name: "Test Submission Document", variables: { variable_name: "value" @@ -1678,15 +1678,15 @@ Docuseal.create_submission_from_docx({ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_submission_from_html({ +Wabosign.create_submission_from_html({ name: "Test Submission Document", documents: [ { @@ -2173,12 +2173,12 @@ and typesetting industry

The API endpoint allows you to archive a submission. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.archive_submission(1001) +Wabosign.archive_submission(1001) ``` ```json @@ -2213,12 +2213,12 @@ Docuseal.archive_submission(1001) The API endpoint provides the ability to retrieve a list of submitters. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.list_submitters(limit: 10) +Wabosign.list_submitters(limit: 10) ``` ```json @@ -2329,12 +2329,12 @@ Docuseal.list_submitters(limit: 10) The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.get_submitter(500001) +Wabosign.get_submitter(500001) ``` ```json @@ -2366,15 +2366,15 @@ Docuseal.get_submitter(500001) ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.update_submitter(500001, { +Wabosign.update_submitter(500001, { email: "john.doe@example.com", fields: [ { @@ -2701,12 +2701,12 @@ Docuseal.update_submitter(500001, { The API endpoint provides the ability to retrieve a list of available document templates. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.list_templates(limit: 10) +Wabosign.list_templates(limit: 10) ``` ```json @@ -2804,12 +2804,12 @@ Docuseal.list_templates(limit: 10) The API endpoint provides the functionality to retrieve information about a document template. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.get_template(1000001) +Wabosign.get_template(1000001) ``` ```json @@ -2841,16 +2841,16 @@ Docuseal.get_template(1000001) ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_template_from_pdf({ +Wabosign.create_template_from_pdf({ name: "Test PDF", documents: [ { @@ -3211,16 +3211,16 @@ Docuseal.create_template_from_pdf({ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_template_from_docx({ +Wabosign.create_template_from_docx({ name: "Test DOCX", documents: [ { @@ -3549,15 +3549,15 @@ Docuseal.create_template_from_docx({ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.create_template_from_html({ +Wabosign.create_template_from_html({ html: "

Lorem Ipsum is simply dummy text of the The API endpoint allows you to clone existing template into a new template. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.clone_template(1000001, { +Wabosign.clone_template(1000001, { name: "Cloned Template" }) ``` @@ -3747,12 +3747,12 @@ Docuseal.clone_template(1000001, { The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.merge_templates({ +Wabosign.merge_templates({ template_ids: [ 321, 432 @@ -3837,12 +3837,12 @@ Docuseal.merge_templates({ The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.update_template(1000001, { +Wabosign.update_template(1000001, { name: "New Document Name", folder_name: "New Folder" }) @@ -3917,12 +3917,12 @@ Docuseal.update_template(1000001, { The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.update_template_documents(1000001, { +Wabosign.update_template_documents(1000001, { documents: [ { file: "string" @@ -4018,12 +4018,12 @@ Docuseal.update_template_documents(1000001, { The API endpoint allows you to archive a document template. ```ruby -require "docuseal" +require "wabosign" -Docuseal.key = ENV["DOCUSEAL_API_KEY"] -Docuseal.url = "https://api.docuseal.com" +Wabosign.key = ENV["DOCUSEAL_API_KEY"] +Wabosign.url = "https://api.wabosign.com" -Docuseal.archive_template(1000001) +Wabosign.archive_template(1000001) ``` ```json diff --git a/docs/api/shell.md b/docs/api/shell.md index 1e0b6cf1..93fe87f1 100644 --- a/docs/api/shell.md +++ b/docs/api/shell.md @@ -4,7 +4,7 @@ The API endpoint provides the ability to retrieve a list of available submission ```shell curl --request GET \ - --url https://api.docuseal.com/submissions \ + --url https://api.wabosign.com/submissions \ --header 'X-Auth-Token: API_KEY' ``` @@ -119,7 +119,7 @@ The API endpoint provides the functionality to retrieve information about a subm ```shell curl --request GET \ - --url https://api.docuseal.com/submissions/1001 \ + --url https://api.wabosign.com/submissions/1001 \ --header 'X-Auth-Token: API_KEY' ``` @@ -156,7 +156,7 @@ This endpoint returns a list of partially filled documents for a submission. If ```shell curl --request GET \ - --url https://api.docuseal.com/submissions/1001/documents \ + --url https://api.wabosign.com/submissions/1001/documents \ --header 'X-Auth-Token: API_KEY' ``` @@ -189,11 +189,11 @@ curl --request GET \ ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```shell curl --request POST \ - --url https://api.docuseal.com/submissions \ + --url https://api.wabosign.com/submissions \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"template_id":1000001,"send_email":true,"submitters":[{"role":"First Party","email":"john.doe@example.com"}]}' @@ -225,7 +225,7 @@ curl --request POST \ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -601,12 +601,12 @@ curl --request POST \ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```shell curl --request POST \ - --url https://api.docuseal.com/submissions/pdf \ + --url https://api.wabosign.com/submissions/pdf \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Test Submission Document","documents":[{"name":"string","file":"base64","fields":[{"name":"string","areas":[{"x":0,"y":0,"w":0,"h":0,"page":1}]}]}],"submitters":[{"role":"First Party","email":"john.doe@example.com"}]}' @@ -1158,11 +1158,11 @@ curl --request POST \ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```shell curl --request POST \ - --url https://api.docuseal.com/submissions/docx \ + --url https://api.wabosign.com/submissions/docx \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Test Submission Document","variables":{"variable_name":"value"},"documents":[{"name":"string","file":"base64"}],"submitters":[{"role":"First Party","email":"john.doe@example.com"}]}' @@ -1612,11 +1612,11 @@ curl --request POST \ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```shell curl --request POST \ - --url https://api.docuseal.com/submissions/html \ + --url https://api.wabosign.com/submissions/html \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Test Submission Document","documents":[{"name":"Test Document","html":"

Lorem Ipsum is simply dummy text of the\n\n\nand typesetting industry

\n"}],"submitters":[{"role":"First Party","email":"john.doe@example.com"}]}' @@ -2085,7 +2085,7 @@ The API endpoint allows you to archive a submission. ```shell curl --request DELETE \ - --url https://api.docuseal.com/submissions/1001 \ + --url https://api.wabosign.com/submissions/1001 \ --header 'X-Auth-Token: API_KEY' ``` @@ -2122,7 +2122,7 @@ The API endpoint provides the ability to retrieve a list of submitters. ```shell curl --request GET \ - --url https://api.docuseal.com/submitters \ + --url https://api.wabosign.com/submitters \ --header 'X-Auth-Token: API_KEY' ``` @@ -2235,7 +2235,7 @@ The API endpoint provides functionality to retrieve information about a submitte ```shell curl --request GET \ - --url https://api.docuseal.com/submitters/500001 \ + --url https://api.wabosign.com/submitters/500001 \ --header 'X-Auth-Token: API_KEY' ``` @@ -2268,11 +2268,11 @@ curl --request GET \ ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```shell curl --request PUT \ - --url https://api.docuseal.com/submitters/500001 \ + --url https://api.wabosign.com/submitters/500001 \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"email":"john.doe@example.com","fields":[{"name":"First Name","default_value":"Acme"}]}' @@ -2595,7 +2595,7 @@ The API endpoint provides the ability to retrieve a list of available document t ```shell curl --request GET \ - --url https://api.docuseal.com/templates \ + --url https://api.wabosign.com/templates \ --header 'X-Auth-Token: API_KEY' ``` @@ -2695,7 +2695,7 @@ The API endpoint provides the functionality to retrieve information about a docu ```shell curl --request GET \ - --url https://api.docuseal.com/templates/1000001 \ + --url https://api.wabosign.com/templates/1000001 \ --header 'X-Auth-Token: API_KEY' ``` @@ -2728,12 +2728,12 @@ curl --request GET \ ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```shell curl --request POST \ - --url https://api.docuseal.com/templates/pdf \ + --url https://api.wabosign.com/templates/pdf \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Test PDF","documents":[{"name":"string","file":"base64","fields":[{"name":"string","areas":[{"x":0,"y":0,"w":0,"h":0,"page":1}]}]}]}' @@ -3075,12 +3075,12 @@ curl --request POST \ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```shell curl --request POST \ - --url https://api.docuseal.com/templates/docx \ + --url https://api.wabosign.com/templates/docx \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Test DOCX","documents":[{"name":"string","file":"base64"}]}' @@ -3404,11 +3404,11 @@ curl --request POST \ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```shell curl --request POST \ - --url https://api.docuseal.com/templates/html \ + --url https://api.wabosign.com/templates/html \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"html":"

Lorem Ipsum is simply dummy text of the\n\n\nand typesetting industry

\n","name":"Test Template"}' @@ -3524,7 +3524,7 @@ The API endpoint allows you to clone existing template into a new template. ```shell curl --request POST \ - --url https://api.docuseal.com/templates/1000001/clone \ + --url https://api.wabosign.com/templates/1000001/clone \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"Cloned Template"}' @@ -3588,7 +3588,7 @@ The API endpoint allows you to merge multiple templates with documents and field ```shell curl --request POST \ - --url https://api.docuseal.com/templates/merge \ + --url https://api.wabosign.com/templates/merge \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"template_ids":[321,432],"name":"Merged Template"}' @@ -3671,7 +3671,7 @@ The API endpoint provides the functionality to move a document template to a dif ```shell curl --request PUT \ - --url https://api.docuseal.com/templates/1000001 \ + --url https://api.wabosign.com/templates/1000001 \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"name":"New Document Name","folder_name":"New Folder"}' @@ -3747,7 +3747,7 @@ The API endpoint allows you to add, remove or replace documents in the template ```shell curl --request PUT \ - --url https://api.docuseal.com/templates/1000001/documents \ + --url https://api.wabosign.com/templates/1000001/documents \ --header 'X-Auth-Token: API_KEY' \ --header 'content-type: application/json' \ --data '{"documents":[{"file":"string"}]}' @@ -3841,7 +3841,7 @@ The API endpoint allows you to archive a document template. ```shell curl --request DELETE \ - --url https://api.docuseal.com/templates/1000001 \ + --url https://api.wabosign.com/templates/1000001 \ --header 'X-Auth-Token: API_KEY' ``` diff --git a/docs/api/typescript.md b/docs/api/typescript.md index 997ed02d..4c61e224 100644 --- a/docs/api/typescript.md +++ b/docs/api/typescript.md @@ -3,11 +3,11 @@ The API endpoint provides the ability to retrieve a list of available submissions. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listSubmissions({ limit: 10 }); +const { data, pagination } = await wabosign.listSubmissions({ limit: 10 }); ``` ```json @@ -120,11 +120,11 @@ const { data, pagination } = await docuseal.listSubmissions({ limit: 10 }); The API endpoint provides the functionality to retrieve information about a submission. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.getSubmission(1001); +const submission = await wabosign.getSubmission(1001); ``` ```json @@ -159,11 +159,11 @@ const submission = await docuseal.getSubmission(1001); This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.getSubmissionDocuments(1001); +const submission = await wabosign.getSubmissionDocuments(1001); ``` ```json @@ -195,14 +195,14 @@ const submission = await docuseal.getSubmissionDocuments(1001); ### Create a submission -This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API +This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmission({ +const submission = await wabosign.createSubmission({ template_id: 1000001, send_email: true, submitters: [ @@ -240,7 +240,7 @@ const submission = await docuseal.createSubmission({ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -616,15 +616,15 @@ const submission = await docuseal.createSubmission({ ### Create a submission from PDF -The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromPdf({ +const submission = await wabosign.createSubmissionFromPdf({ name: "Test Submission Document", documents: [ { @@ -1201,14 +1201,14 @@ const submission = await docuseal.createSubmissionFromPdf({ ### Create a submission from DOCX -The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents +The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromDocx({ +const submission = await wabosign.createSubmissionFromDocx({ name: "Test Submission Document", variables: { variable_name: "value" @@ -1672,14 +1672,14 @@ const submission = await docuseal.createSubmissionFromDocx({ ### Create a submission from HTML -This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML +This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submission = await docuseal.createSubmissionFromHtml({ +const submission = await wabosign.createSubmissionFromHtml({ name: "Test Submission Document", documents: [ { @@ -2166,11 +2166,11 @@ and typesetting industry

The API endpoint allows you to archive a submission. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -await docuseal.archiveSubmission(1001); +await wabosign.archiveSubmission(1001); ``` ```json @@ -2205,11 +2205,11 @@ await docuseal.archiveSubmission(1001); The API endpoint provides the ability to retrieve a list of submitters. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listSubmitters({ limit: 10 }); +const { data, pagination } = await wabosign.listSubmitters({ limit: 10 }); ``` ```json @@ -2320,11 +2320,11 @@ const { data, pagination } = await docuseal.listSubmitters({ limit: 10 }); The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submitter = await docuseal.getSubmitter(500001); +const submitter = await wabosign.getSubmitter(500001); ``` ```json @@ -2356,14 +2356,14 @@ const submitter = await docuseal.getSubmitter(500001); ### Update a submitter -The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API +The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const submitter = await docuseal.updateSubmitter(500001, { +const submitter = await wabosign.updateSubmitter(500001, { email: "john.doe@example.com", fields: [ { @@ -2690,11 +2690,11 @@ const submitter = await docuseal.updateSubmitter(500001, { The API endpoint provides the ability to retrieve a list of available document templates. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const { data, pagination } = await docuseal.listTemplates({ limit: 10 }); +const { data, pagination } = await wabosign.listTemplates({ limit: 10 }); ``` ```json @@ -2792,11 +2792,11 @@ const { data, pagination } = await docuseal.listTemplates({ limit: 10 }); The API endpoint provides the functionality to retrieve information about a document template. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.getTemplate(1000001); +const template = await wabosign.getTemplate(1000001); ``` ```json @@ -2828,15 +2828,15 @@ const template = await docuseal.getTemplate(1000001); ### Create a template from PDF -The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromPdf({ +const template = await wabosign.createTemplateFromPdf({ name: "Test PDF", documents: [ { @@ -3197,15 +3197,15 @@ const template = await docuseal.createTemplateFromPdf({ ### Create a template from Word DOCX -The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form +The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromDocx({ +const template = await wabosign.createTemplateFromDocx({ name: "Test DOCX", documents: [ { @@ -3534,14 +3534,14 @@ const template = await docuseal.createTemplateFromDocx({ ### Create a template from HTML -The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML +The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.createTemplateFromHtml({ +const template = await wabosign.createTemplateFromHtml({ html: `

Lorem Ipsum is simply dummy text of the The API endpoint allows you to clone existing template into a new template. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.cloneTemplate(1000001, { +const template = await wabosign.cloneTemplate(1000001, { name: "Cloned Template" }); ``` @@ -3730,11 +3730,11 @@ const template = await docuseal.cloneTemplate(1000001, { The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.mergeTemplates({ +const template = await wabosign.mergeTemplates({ template_ids: [ 321, 432 @@ -3819,11 +3819,11 @@ const template = await docuseal.mergeTemplates({ The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.updateTemplate(1000001, { +const template = await wabosign.updateTemplate(1000001, { name: "New Document Name", folder_name: "New Folder" }); @@ -3898,11 +3898,11 @@ const template = await docuseal.updateTemplate(1000001, { The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -const template = await docuseal.updateTemplateDocuments(1000001, { +const template = await wabosign.updateTemplateDocuments(1000001, { documents: [ { file: "string" @@ -3998,11 +3998,11 @@ const template = await docuseal.updateTemplateDocuments(1000001, { The API endpoint allows you to archive a document template. ```typescript -import docuseal from "@docuseal/api"; +import wabosign from "@wabosign/api"; -docuseal.configure({ key: "API_KEY", url: "https://api.docuseal.com" }); +wabosign.configure({ key: "API_KEY", url: "https://api.wabosign.com" }); -await docuseal.archiveTemplate(1000001); +await wabosign.archiveTemplate(1000001); ``` ```json diff --git a/docs/openapi.json b/docs/openapi.json index 9afd740c..ad6bdc99 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -2,22 +2,22 @@ "openapi": "3.0.0", "servers": [ { - "url": "https://api.docuseal.com", + "url": "https://api.wabosign.com", "description": "Global Server" }, { - "url": "https://api.docuseal.eu", + "url": "https://api.wabosign.eu", "description": "EU Server" } ], "info": { "version": "1.0.0", - "title": "DocuSeal API", - "description": "DocuSeal API specs", + "title": "WaboSign API", + "description": "WaboSign API specs", "contact": { - "name": "DocuSeal", - "email": "admin@docuseal.com", - "url": "https://www.docuseal.com" + "name": "WaboSign", + "email": "admin@wabosign.com", + "url": "https://www.wabosign.com" } }, "components": { @@ -572,8 +572,8 @@ { "id": 5, "uuid": "d94e615f-76e3-46d5-8f98-36bdacb8664a", - "url": "https://docuseal.com/file/hash/sample-document.pdf", - "preview_image_url": "https://docuseal.com/file/hash/0.jpg", + "url": "https://wabosign.com/file/hash/sample-document.pdf", + "preview_image_url": "https://wabosign.com/file/hash/0.jpg", "filename": "example-document.pdf" } ] @@ -1018,8 +1018,8 @@ { "id": 5, "uuid": "d94e615f-76e3-46d5-8f98-36bdacb8664a", - "url": "https://docuseal.com/file/hash/sample-document.pdf", - "preview_image_url": "https://docuseal.com/file/hash/0.jpg", + "url": "https://wabosign.com/file/hash/sample-document.pdf", + "preview_image_url": "https://wabosign.com/file/hash/0.jpg", "filename": "example-document.pdf" } ] @@ -1600,7 +1600,7 @@ "submitters_order": "random", "slug": "VyL4szTwYoSvXq", "status": "completed", - "audit_log_url": "https://docuseal.com/file/hash/example.pdf", + "audit_log_url": "https://wabosign.com/file/hash/example.pdf", "combined_document_url": null, "expire_at": null, "completed_at": "2023-12-10T15:49:21.895Z", @@ -1665,7 +1665,7 @@ "Submissions" ], "summary": "Create a submission", - "description": "This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API", + "description": "This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API", "operationId": "createSubmission", "parameters": [], "requestBody": { @@ -1681,7 +1681,7 @@ "properties": { "template_id": { "type": "integer", - "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", + "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { @@ -2264,7 +2264,7 @@ "send_sms": false }, "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" } ] } @@ -2723,7 +2723,7 @@ "source": "link", "submitters_order": "random", "slug": "VyL4szTwYoSvXq", - "audit_log_url": "https://docuseal.com/blobs/proxy/hash/example.pdf", + "audit_log_url": "https://wabosign.com/blobs/proxy/hash/example.pdf", "combined_document_url": null, "completed_at": "2023-12-14T15:49:21.701Z", "expire_at": null, @@ -2757,7 +2757,7 @@ "documents": [ { "name": "example", - "url": "https://docuseal.com/blobs/proxy/hash/example.pdf" + "url": "https://wabosign.com/blobs/proxy/hash/example.pdf" } ], "role": "First Party" @@ -2789,7 +2789,7 @@ "documents": [ { "name": "example", - "url": "https://docuseal.com/file/hash/example.pdf" + "url": "https://wabosign.com/file/hash/example.pdf" } ], "status": "completed" @@ -2924,7 +2924,7 @@ "documents": [ { "name": "example", - "url": "https://docuseal.com/file/hash/example.pdf" + "url": "https://wabosign.com/file/hash/example.pdf" } ] } @@ -3204,7 +3204,7 @@ "send_sms": false }, "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" }, { "id": 2, @@ -3256,7 +3256,7 @@ "Submissions" ], "summary": "Create a submission from PDF", - "description": "The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", + "description": "The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", "operationId": "createSubmissionFromPdf", "parameters": [], "requestBody": { @@ -4220,7 +4220,7 @@ "completed_redirect_url": "https://example.com/" }, "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" } ], "source": "api", @@ -4271,7 +4271,7 @@ "Submissions" ], "summary": "Create a submission from DOCX", - "description": "The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents", + "description": "The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.wabosign.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} field syntax to define fillable fields, as in a PDF.
Related Guides
Use dynamic content variables in DOCX to create personalized documents", "operationId": "createSubmissionFromDocx", "parameters": [], "requestBody": { @@ -5133,7 +5133,7 @@ "completed_redirect_url": "https://example.com/" }, "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" } ], "source": "api", @@ -5184,7 +5184,7 @@ "Submissions" ], "summary": "Create a submission from HTML", - "description": "This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML", + "description": "This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML", "operationId": "createSubmissionFromHtml", "parameters": [], "requestBody": { @@ -6061,7 +6061,7 @@ "completed_redirect_url": "https://example.com/" }, "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" } ], "source": "api", @@ -6439,7 +6439,7 @@ "documents": [ { "name": "sample-document", - "url": "https://docuseal.com/file/hash/sample-document.pdf" + "url": "https://wabosign.com/file/hash/sample-document.pdf" } ], "role": "First Party" @@ -6459,7 +6459,7 @@ "Submitters" ], "summary": "Update a submitter", - "description": "The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API", + "description": "The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API", "operationId": "updateSubmitter", "parameters": [ { @@ -6975,7 +6975,7 @@ ], "documents": [], "role": "First Party", - "embed_src": "https://docuseal.com/s/pAMimKcyrLjqVt" + "embed_src": "https://wabosign.com/s/pAMimKcyrLjqVt" } } } @@ -7401,7 +7401,7 @@ "documents": [ { "name": "sample-document", - "url": "https://docuseal.com/file/eyJfcmFpbHMiOnsiIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--f9758362acced0f3c86cdffad02800e/sample-document.pdf" + "url": "https://wabosign.com/file/eyJfcmFpbHMiOnsiIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--f9758362acced0f3c86cdffad02800e/sample-document.pdf" } ], "role": "First Party" @@ -7898,7 +7898,7 @@ { "id": 3, "uuid": "09a8bc73-a7a9-4fd9-8173-95752bdf0af5", - "url": "https://docuseal.com/file/hash/Test%20Template.pdf" + "url": "https://wabosign.com/file/hash/Test%20Template.pdf" } ] } @@ -8358,7 +8358,7 @@ { "id": 9, "uuid": "ded62277-9705-4fac-b5dc-58325d4102eb", - "url": "https://docuseal.com/file/hash/sample-document.pdf", + "url": "https://wabosign.com/file/hash/sample-document.pdf", "filename": "sample-document.pdf" } ] @@ -8380,7 +8380,7 @@ "Templates" ], "summary": "Create a template from HTML", - "description": "The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML", + "description": "The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML", "operationId": "createTemplateFromHtml", "parameters": [], "requestBody": { @@ -8871,7 +8871,7 @@ { "id": 3, "uuid": "09a8bc73-a7a9-4fd9-8173-95752bdf0af5", - "url": "https://docuseal.com/file/hash/Test%20Template.pdf" + "url": "https://wabosign.com/file/hash/Test%20Template.pdf" } ] } @@ -8892,7 +8892,7 @@ "Templates" ], "summary": "Create a template from Word DOCX", - "description": "The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", + "description": "The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", "operationId": "createTemplateFromDocx", "parameters": [], "requestBody": { @@ -9595,7 +9595,7 @@ { "id": 7, "uuid": "48d2998f-266b-47e4-beb2-250ab7ccebdf", - "url": "https://docuseal.com/hash/DemoPDF.pdf" + "url": "https://wabosign.com/hash/DemoPDF.pdf" } ] } @@ -9616,7 +9616,7 @@ "Templates" ], "summary": "Create a template from PDF", - "description": "The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", + "description": "The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.wabosign.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form\n", "operationId": "createTemplateFromPdf", "parameters": [], "requestBody": { @@ -10337,7 +10337,7 @@ { "id": 7, "uuid": "48d2998f-266b-47e4-beb2-250ab7ccebdf", - "url": "https://docuseal.com/file/hash/Demo%20PDF.pdf" + "url": "https://wabosign.com/file/hash/Demo%20PDF.pdf" } ] } @@ -10816,7 +10816,7 @@ { "id": 9, "uuid": "ded62277-9705-4fac-b5dc-58325d4102eb", - "url": "https://docuseal.com/file/hash/sample-document.pdf", + "url": "https://wabosign.com/file/hash/sample-document.pdf", "filename": "sample-document.pdf" } ] diff --git a/docs/webhooks/form-webhook.md b/docs/webhooks/form-webhook.md index 32c0eb19..1287e303 100644 --- a/docs/webhooks/form-webhook.md +++ b/docs/webhooks/form-webhook.md @@ -9,7 +9,7 @@ During the form filling and signing process, 3 types of events may occur and are It's important to note that each of these events contain information available at the time of dispatch, so some data may be missing or incomplete depending on the specific event. Failed webhook requests (4xx, 5xx) are automatically retried multiple times within 48 hours (every 2^attempt minutes) for all production accounts. **Related Guides** -[Download Signed Documents](https://www.docuseal.com/guides/download-signed-documents) +[Download Signed Documents](https://www.wabosign.com/guides/download-signed-documents) ```json { @@ -130,7 +130,7 @@ During the form filling and signing process, 3 types of events may occur and are }, "combined_document_url": { "type": "string", - "description": "The URL of the combined documents with audit log. Combined documents can be enabled via /settings/accounts." + "description": "The URL of the combined documents with audit log. Combined documents can be enabled via /settings/accounts." }, "status": { "type": "string", diff --git a/lib/account_configs.rb b/lib/account_configs.rb index 06fec78f..99a530d0 100644 --- a/lib/account_configs.rb +++ b/lib/account_configs.rb @@ -30,7 +30,7 @@ module AccountConfigs def find_for_account(account, key) configs = account.account_configs.find_by(key:) - configs ||= Account.order(:id).first.account_configs.find_by(key:) unless Docuseal.multitenant? + configs ||= Account.order(:id).first.account_configs.find_by(key:) unless Wabosign.multitenant? configs end diff --git a/lib/accounts.rb b/lib/accounts.rb index 41b7d761..eae23a10 100644 --- a/lib/accounts.rb +++ b/lib/accounts.rb @@ -13,7 +13,7 @@ module Accounts new_user.uuid = SecureRandom.uuid new_user.account = new_account new_user.encrypted_password = SecureRandom.hex - new_user.email = "#{SecureRandom.hex}@docuseal.com" + new_user.email = "#{SecureRandom.hex}@wabosign.com" account.templates.each do |template| new_template = template.dup @@ -107,22 +107,22 @@ module Accounts def load_signing_pkcs(account) cert_data = - if Docuseal.multitenant? + if Wabosign.multitenant? data = EncryptedConfig.find_by(account:, key: EncryptedConfig::ESIGN_CERTS_KEY)&.value - return Docuseal.default_pkcs if data.blank? + return Wabosign.default_pkcs if data.blank? data else - return Docuseal.default_pkcs if Docuseal::CERTS.present? + return Wabosign.default_pkcs if Wabosign::CERTS.present? EncryptedConfig.find_by(account:, key: EncryptedConfig::ESIGN_CERTS_KEY)&.value || EncryptedConfig.find_by(key: EncryptedConfig::ESIGN_CERTS_KEY).value end if (default_cert = cert_data['custom']&.find { |e| e['status'] == 'default' }) - if default_cert['name'] == Docuseal::AATL_CERT_NAME - Docuseal.default_pkcs + if default_cert['name'] == Wabosign::AATL_CERT_NAME + Wabosign.default_pkcs else OpenSSL::PKCS12.new(Base64.urlsafe_decode64(default_cert['data']), default_cert['password'].to_s) end @@ -132,12 +132,12 @@ module Accounts end def load_timeserver_url(account) - if Docuseal.multitenant? - Docuseal::TIMESERVER_URL + if Wabosign.multitenant? + Wabosign::TIMESERVER_URL else url = EncryptedConfig.find_by(account:, key: EncryptedConfig::TIMESTAMP_SERVER_URL_KEY)&.value - unless Docuseal.multitenant? + unless Wabosign.multitenant? url ||= Account.order(:id).first.encrypted_configs.find_by(key: EncryptedConfig::TIMESTAMP_SERVER_URL_KEY)&.value end @@ -148,12 +148,12 @@ module Accounts def load_trusted_certs(account) cert_data = - if Docuseal.multitenant? + if Wabosign.multitenant? value = EncryptedConfig.find_by(account:, key: EncryptedConfig::ESIGN_CERTS_KEY)&.value || {} - Docuseal::CERTS.merge(value) - elsif Docuseal::CERTS.present? - Docuseal::CERTS + Wabosign::CERTS.merge(value) + elsif Wabosign::CERTS.present? + Wabosign::CERTS else EncryptedConfig.find_by(key: EncryptedConfig::ESIGN_CERTS_KEY)&.value || {} end @@ -170,11 +170,11 @@ module Accounts *default_pkcs.ca_certs, *custom_certs.map(&:certificate), *custom_certs.flat_map(&:ca_certs).compact, - *Docuseal.trusted_certs] + *Wabosign.trusted_certs] end def can_send_emails?(_account, **_params) - return true if Docuseal.multitenant? + return true if Wabosign.multitenant? return true if Rails.env.development? return true if ENV['SMTP_ADDRESS'].present? diff --git a/lib/action_mailer_configs_interceptor.rb b/lib/action_mailer_configs_interceptor.rb index 5b2ad19b..01631795 100644 --- a/lib/action_mailer_configs_interceptor.rb +++ b/lib/action_mailer_configs_interceptor.rb @@ -9,7 +9,7 @@ module ActionMailerConfigsInterceptor def delivering_email(message) return message unless Rails.env.production? - if Docuseal.demo? + if Wabosign.demo? message.delivery_method(:test) return message @@ -27,7 +27,7 @@ module ActionMailerConfigsInterceptor return message end - unless Docuseal.multitenant? + unless Wabosign.multitenant? email_configs = EncryptedConfig.order(:account_id).find_by(key: EncryptedConfig::EMAIL_SMTP_KEY) if email_configs diff --git a/lib/download_utils.rb b/lib/download_utils.rb index 8b352502..75a30c73 100644 --- a/lib/download_utils.rb +++ b/lib/download_utils.rb @@ -35,7 +35,7 @@ module DownloadUtils module_function - def call(url, validate: Docuseal.multitenant?) + def call(url, validate: Wabosign.multitenant?) uri = begin URI(url) rescue URI::Error @@ -57,7 +57,7 @@ module DownloadUtils raise UnableToDownload, "Error loading: #{uri}. Can't download from localhost." if uri.host.in?(LOCALHOSTS) end - def conn(validate: Docuseal.multitenant?) + def conn(validate: Wabosign.multitenant?) Faraday.new do |faraday| faraday.response :follow_redirects, callback: lambda { |_, new_env| validate_uri!(new_env[:url]) if validate diff --git a/lib/generate_certificate.rb b/lib/generate_certificate.rb index 4803c69b..f0d44f38 100644 --- a/lib/generate_certificate.rb +++ b/lib/generate_certificate.rb @@ -7,7 +7,7 @@ module GenerateCertificate module_function - def call(name = Docuseal.product_name) + def call(name = Wabosign.product_name) root_cert, root_key = generate_root_ca(name) sub_cert, sub_key = generate_sub_ca(name, root_cert, root_key) diff --git a/lib/load_active_storage_configs.rb b/lib/load_active_storage_configs.rb index d3f308fe..bb086b1a 100644 --- a/lib/load_active_storage_configs.rb +++ b/lib/load_active_storage_configs.rb @@ -16,7 +16,7 @@ module LoadActiveStorageConfigs end def reload - return if Docuseal.multitenant? + return if Wabosign.multitenant? return if IS_ENV_CONFIGURED return if Rails.env.test? return if Rails.env.development? diff --git a/lib/mcp/handle_request.rb b/lib/mcp/handle_request.rb index 83d6725f..71a98645 100644 --- a/lib/mcp/handle_request.rb +++ b/lib/mcp/handle_request.rb @@ -26,8 +26,8 @@ module Mcp result: { protocolVersion: '2025-11-25', serverInfo: { - name: 'DocuSeal', - version: Docuseal.version.to_s + name: 'WaboSign', + version: Wabosign.version.to_s }, capabilities: { tools: { diff --git a/lib/mcp/tools/create_template.rb b/lib/mcp/tools/create_template.rb index f19b353e..04a7b36e 100644 --- a/lib/mcp/tools/create_template.rb +++ b/lib/mcp/tools/create_template.rb @@ -90,7 +90,7 @@ module Mcp id: template.id, name: template.name, edit_url: Rails.application.routes.url_helpers.edit_template_url(template, - **Docuseal.default_url_options) + **Wabosign.default_url_options) }.to_json } ] diff --git a/lib/mcp/tools/search_documents.rb b/lib/mcp/tools/search_documents.rb index bf1f56f5..471db764 100644 --- a/lib/mcp/tools/search_documents.rb +++ b/lib/mcp/tools/search_documents.rb @@ -44,7 +44,7 @@ module Mcp data = submissions.map do |submission| url = Rails.application.routes.url_helpers.submission_url( - submission.id, **Docuseal.default_url_options + submission.id, **Wabosign.default_url_options ) { diff --git a/lib/rate_limit.rb b/lib/rate_limit.rb index 3f01705c..62677de1 100644 --- a/lib/rate_limit.rb +++ b/lib/rate_limit.rb @@ -7,7 +7,7 @@ module RateLimit module_function - def call(key, limit:, ttl:, enabled: Docuseal.multitenant?) + def call(key, limit:, ttl:, enabled: Wabosign.multitenant?) return true unless enabled value = STORE.increment(key, 1, expires_in: ttl) diff --git a/lib/replace_email_variables.rb b/lib/replace_email_variables.rb index 392c585d..5ec557ca 100644 --- a/lib/replace_email_variables.rb +++ b/lib/replace_email_variables.rb @@ -159,18 +159,18 @@ module ReplaceEmailVariables end def build_url_options_for(submitter, is_email: true) - if Docuseal.multitenant? && + if Wabosign.multitenant? && (config = AccountConfig.find_by(account_id: submitter.account_id, key: :custom_domain)) { host: config.value, protocol: 'https' } elsif is_email && EMAIL_HOST.present? { host: EMAIL_HOST, protocol: ENV['FORCE_SSL'].present? ? 'https' : 'http' } else - Docuseal.default_url_options + Wabosign.default_url_options end end def build_submission_link(submission) - Rails.application.routes.url_helpers.submission_url(submission, **Docuseal.default_url_options) + Rails.application.routes.url_helpers.submission_url(submission, **Wabosign.default_url_options) end def build_submission_submitters(submission) diff --git a/lib/send_webhook_request.rb b/lib/send_webhook_request.rb index 5bae9bf3..23b756d2 100644 --- a/lib/send_webhook_request.rb +++ b/lib/send_webhook_request.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module SendWebhookRequest - USER_AGENT = 'DocuSeal.com Webhook' + USER_AGENT = 'WaboSign.com Webhook' LOCALHOSTS = DownloadUtils::LOCALHOSTS @@ -17,7 +17,7 @@ module SendWebhookRequest def call(webhook_url, event_uuid:, event_type:, record:, data:, attempt: 0) uri = parse_uri(webhook_url.url) - if Docuseal.multitenant? + if Wabosign.multitenant? raise HttpsError, 'Only HTTPS is allowed.' if (uri.scheme != 'https' || [443, nil].exclude?(uri.port)) && !AccountConfig.exists?(key: :allow_http, account_id: webhook_url.account_id) @@ -39,8 +39,8 @@ module SendWebhookRequest data: data }.to_json - if req.headers['X-Docuseal-Signature'].blank? - req.headers['X-Docuseal-Signature'] = WebhookUrls::Signatures.sign(webhook_url.hmac_secret, body: req.body) + if req.headers['X-Wabosign-Signature'].blank? + req.headers['X-Wabosign-Signature'] = WebhookUrls::Signatures.sign(webhook_url.hmac_secret, body: req.body) end req.options.read_timeout = 15 diff --git a/lib/submissions.rb b/lib/submissions.rb index 33081926..8c7df844 100644 --- a/lib/submissions.rb +++ b/lib/submissions.rb @@ -6,7 +6,7 @@ module Submissions module_function def search(current_user, submissions, keyword, search_values: false, search_template: false) - if Docuseal.fulltext_search? + if Wabosign.fulltext_search? fulltext_search(current_user, submissions, keyword, search_template:) else plain_search(submissions, keyword, search_values:, search_template:) diff --git a/lib/submissions/generate_audit_trail.rb b/lib/submissions/generate_audit_trail.rb index 2778ee4e..331c2345 100644 --- a/lib/submissions/generate_audit_trail.rb +++ b/lib/submissions/generate_audit_trail.rb @@ -43,7 +43,7 @@ module Submissions io = StringIO.new - document.trailer.info[:Creator] = "#{Docuseal.product_name} (#{Docuseal::PRODUCT_URL})" + document.trailer.info[:Creator] = "#{Wabosign.product_name} (#{Wabosign::PRODUCT_URL})" if pkcs sign_params = { @@ -72,7 +72,7 @@ module Submissions def build_audit_trail(submission) account = submission.account verify_url = Rails.application.routes.url_helpers.settings_esign_url( - **Docuseal.default_url_options, host: ENV.fetch('EMAIL_HOST', Docuseal.default_url_options[:host]) + **Wabosign.default_url_options, host: ENV.fetch('EMAIL_HOST', Wabosign.default_url_options[:host]) ) page_size = @@ -84,7 +84,7 @@ module Submissions composer = HexaPDF::Composer.new(skip_page_creation: true) - if Docuseal.pdf_format == 'pdf/a-3b' + if Wabosign.pdf_format == 'pdf/a-3b' composer.document.task(:pdfa, level: '3b') elsif FONT_NAME == 'GoNotoKurrent' composer.document.task(:pdfa) @@ -410,7 +410,7 @@ module Submissions if with_file_links ActiveStorage::Blob.proxy_url(attachment.blob) else - r.submissions_preview_url(submission.slug, **Docuseal.default_url_options) + r.submissions_preview_url(submission.slug, **Wabosign.default_url_options) end { link:, text: "#{attachment.filename}\n", style: :link } @@ -517,7 +517,7 @@ module Submissions end def sign_reason - 'Signed with DocuSeal.com' + 'Signed with WaboSign.com' end def select_attachments(submitter) @@ -539,8 +539,8 @@ module Submissions def add_logo(column, _submission = nil) column.image(PdfIcons.logo_io, width: 40, height: 40, position: :float) - column.formatted_text([{ text: 'DocuSeal', - link: Docuseal::PRODUCT_EMAIL_URL }], + column.formatted_text([{ text: 'WaboSign', + link: Wabosign::PRODUCT_EMAIL_URL }], font_size: 20, font: [FONT_NAME, { variant: :bold }], width: 100, diff --git a/lib/submissions/generate_combined_attachment.rb b/lib/submissions/generate_combined_attachment.rb index bafd20a7..3320e2b6 100644 --- a/lib/submissions/generate_combined_attachment.rb +++ b/lib/submissions/generate_combined_attachment.rb @@ -15,9 +15,9 @@ module Submissions io = StringIO.new - pdf.trailer.info[:Creator] = "#{Docuseal.product_name} (#{Docuseal::PRODUCT_URL})" + pdf.trailer.info[:Creator] = "#{Wabosign.product_name} (#{Wabosign::PRODUCT_URL})" - if Docuseal.pdf_format == 'pdf/a-3b' + if Wabosign.pdf_format == 'pdf/a-3b' pdf.task(:pdfa, level: '3b') pdf.config['font.map'] = GenerateResultAttachments::PDFA_FONT_MAP end diff --git a/lib/submissions/generate_export_files.rb b/lib/submissions/generate_export_files.rb index f1096db2..3714a3e3 100644 --- a/lib/submissions/generate_export_files.rb +++ b/lib/submissions/generate_export_files.rb @@ -114,7 +114,7 @@ module Submissions }, { name: column_name(I18n.t('link'), submitter_name, submitters_count), - value: submitter.completed_at? ? nil : r.submit_form_url(slug: submitter.slug, **Docuseal.default_url_options) + value: submitter.completed_at? ? nil : r.submit_form_url(slug: submitter.slug, **Wabosign.default_url_options) } ].reject { |e| e[:value].blank? } end diff --git a/lib/submissions/generate_result_attachments.rb b/lib/submissions/generate_result_attachments.rb index 50022b9b..d5f164ac 100644 --- a/lib/submissions/generate_result_attachments.rb +++ b/lib/submissions/generate_result_attachments.rb @@ -37,7 +37,7 @@ module Submissions bold_italic: FONT_BOLD_NAME }.freeze - SIGN_REASON = 'Signed with DocuSeal.com' + SIGN_REASON = 'Signed with WaboSign.com' RTL_REGEXP = TextUtils::RTL_REGEXP @@ -242,7 +242,7 @@ module Submissions next if e.is_a?(Integer) || e.is_a?(Symbol) || e.is_a?(HexaPDF::PDFArray) e.present? && e[:A] && !e[:A].is_a?(HexaPDF::PDFArray) && - e[:A][:URI].to_s.starts_with?('file:///docuseal_field') + e[:A][:URI].to_s.starts_with?('file:///wabosign_field') end || page[:Annots] width = page.box.width @@ -513,7 +513,7 @@ module Submissions if with_file_links ActiveStorage::Blob.proxy_url(attachment.blob) else - r.submissions_preview_url(submission.slug, **Docuseal.default_url_options) + r.submissions_preview_url(submission.slug, **Wabosign.default_url_options) end page[:Annots] << pdf.add( @@ -737,7 +737,7 @@ module Submissions pdf.trailer.info[:Creator] = info_creator - if Docuseal.pdf_format == 'pdf/a-3b' + if Wabosign.pdf_format == 'pdf/a-3b' pdf.task(:pdfa, level: '3b') pdf.config['font.map'] = PDFA_FONT_MAP end @@ -991,7 +991,7 @@ module Submissions reason_name = submitter.email || submitter.name || submitter.phone config = - if Docuseal.multitenant? + if Wabosign.multitenant? AccountConfig.where(account: submitter.account, key: AccountConfig::ESIGNING_PREFERENCE_KEY) .first_or_initialize(value: 'single') else @@ -1010,7 +1010,7 @@ module Submissions end def info_creator - "#{Docuseal.product_name} (#{Docuseal::PRODUCT_URL})" + "#{Wabosign.product_name} (#{Wabosign::PRODUCT_URL})" end def detached_signature?(_submitter) diff --git a/lib/submitters.rb b/lib/submitters.rb index 6e14b594..172df04a 100644 --- a/lib/submitters.rb +++ b/lib/submitters.rb @@ -30,7 +30,7 @@ module Submitters module_function def search(current_user, submitters, keyword) - if Docuseal.fulltext_search? + if Wabosign.fulltext_search? fulltext_search(current_user, submitters, keyword) else plain_search(submitters, keyword) diff --git a/lib/submitters/form_configs.rb b/lib/submitters/form_configs.rb index 1b21fa70..64e39788 100644 --- a/lib/submitters/form_configs.rb +++ b/lib/submitters/form_configs.rb @@ -18,7 +18,7 @@ module Submitters AccountConfig::WITH_SUBMITTER_TIMEZONE_KEY, AccountConfig::WITH_TIMESTAMP_SECONDS_KEY, AccountConfig::WITH_SIGNATURE_ID_REASON_KEY, - *(Docuseal.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY])].freeze + *(Wabosign.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY])].freeze module_function diff --git a/lib/submitters/serialize_for_api.rb b/lib/submitters/serialize_for_api.rb index db76b3c8..ea349799 100644 --- a/lib/submitters/serialize_for_api.rb +++ b/lib/submitters/serialize_for_api.rb @@ -46,7 +46,7 @@ module Submitters if with_urls additional_attrs['embed_src'] = - Rails.application.routes.url_helpers.submit_form_url(slug: submitter.slug, **Docuseal.default_url_options) + Rails.application.routes.url_helpers.submit_form_url(slug: submitter.slug, **Wabosign.default_url_options) end submitter.as_json(SERIALIZE_PARAMS).merge(additional_attrs) diff --git a/lib/submitters/serialize_for_webhook.rb b/lib/submitters/serialize_for_webhook.rb index 4eb7a715..43de61a6 100644 --- a/lib/submitters/serialize_for_webhook.rb +++ b/lib/submitters/serialize_for_webhook.rb @@ -33,7 +33,7 @@ module Submitters 'values' => values, 'documents' => documents, 'audit_log_url' => submitter.submission.audit_log_url(expires_at:), - 'submission_url' => r.submissions_preview_url(submission.slug, **Docuseal.default_url_options), + 'submission_url' => r.submissions_preview_url(submission.slug, **Wabosign.default_url_options), 'template' => submission.template.as_json( only: %i[id name external_id created_at updated_at], methods: %i[folder_name] ), @@ -42,7 +42,7 @@ module Submitters 'audit_log_url' => submission.audit_log_url(expires_at:), 'combined_document_url' => submission.combined_document_url(expires_at:), 'status' => build_submission_status(submission), - 'url' => r.submissions_preview_url(submission.slug, **Docuseal.default_url_options), + 'url' => r.submissions_preview_url(submission.slug, **Wabosign.default_url_options), 'variables' => (submission.variables || {}).as_json, 'created_at' => submission.created_at.as_json }) diff --git a/lib/templates.rb b/lib/templates.rb index ad45a3fc..21445766 100644 --- a/lib/templates.rb +++ b/lib/templates.rb @@ -44,7 +44,7 @@ module Templates end def search(current_user, templates, keyword) - if Docuseal.fulltext_search? + if Wabosign.fulltext_search? fulltext_search(current_user, templates, keyword) else plain_search(templates, keyword) diff --git a/lib/templates/image_to_fields.rb b/lib/templates/image_to_fields.rb index 3dcd97d3..d8660611 100755 --- a/lib/templates/image_to_fields.rb +++ b/lib/templates/image_to_fields.rb @@ -524,7 +524,7 @@ module Templates inter_op_num_threads: 1, intra_op_num_threads: CPU_THREADS, enable_mem_pattern: false, - enable_cpu_mem_arena: Docuseal.multitenant? || Rails.env.development?, + enable_cpu_mem_arena: Wabosign.multitenant? || Rails.env.development?, providers: ['CPUExecutionProvider'] ) end diff --git a/lib/docuseal.rb b/lib/wabosign.rb similarity index 100% rename from lib/docuseal.rb rename to lib/wabosign.rb diff --git a/lib/webhook_urls.rb b/lib/webhook_urls.rb index 242c274c..9eefddab 100644 --- a/lib/webhook_urls.rb +++ b/lib/webhook_urls.rb @@ -30,7 +30,7 @@ module WebhookUrls event_arel = events.map { |event| Arel::Table.new(:webhook_urls)[:events].matches("%\"#{event}\"%") }.reduce(:or) - if Docuseal.multitenant? || account_id == 1 + if Wabosign.multitenant? || account_id == 1 rel.where(event_arel) else linked_account_rel = diff --git a/package.json b/package.json index 24f3130e..91163ec1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "docuseal", + "name": "wabosign", "private": true, "dependencies": { "@babel/core": "7.21.8", diff --git a/public/service-worker.js b/public/service-worker.js index 3334a5ae..e87392c1 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,9 +1,9 @@ self.addEventListener('install', () => { - console.log('DocuSeal App installed') + console.log('WaboSign App installed') }) self.addEventListener('activate', () => { - console.log('DocuSeal App activated') + console.log('WaboSign App activated') }) self.addEventListener('fetch', (event) => { diff --git a/spec/jobs/send_form_completed_webhook_request_job_spec.rb b/spec/jobs/send_form_completed_webhook_request_job_spec.rb index 6eb7cdf8..b9b17f94 100644 --- a/spec/jobs/send_form_completed_webhook_request_job_spec.rb +++ b/spec/jobs/send_form_completed_webhook_request_job_spec.rb @@ -36,7 +36,7 @@ RSpec.describe SendFormCompletedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -54,7 +54,7 @@ RSpec.describe SendFormCompletedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_form_declined_webhook_request_job_spec.rb b/spec/jobs/send_form_declined_webhook_request_job_spec.rb index 99f26eef..1044508b 100644 --- a/spec/jobs/send_form_declined_webhook_request_job_spec.rb +++ b/spec/jobs/send_form_declined_webhook_request_job_spec.rb @@ -36,7 +36,7 @@ RSpec.describe SendFormDeclinedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -54,7 +54,7 @@ RSpec.describe SendFormDeclinedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_form_started_webhook_request_job_spec.rb b/spec/jobs/send_form_started_webhook_request_job_spec.rb index 54a5c521..f997ff59 100644 --- a/spec/jobs/send_form_started_webhook_request_job_spec.rb +++ b/spec/jobs/send_form_started_webhook_request_job_spec.rb @@ -36,7 +36,7 @@ RSpec.describe SendFormStartedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -54,7 +54,7 @@ RSpec.describe SendFormStartedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_form_viewed_webhook_request_job_spec.rb b/spec/jobs/send_form_viewed_webhook_request_job_spec.rb index 5cbed3c3..94173b47 100644 --- a/spec/jobs/send_form_viewed_webhook_request_job_spec.rb +++ b/spec/jobs/send_form_viewed_webhook_request_job_spec.rb @@ -36,7 +36,7 @@ RSpec.describe SendFormViewedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -54,7 +54,7 @@ RSpec.describe SendFormViewedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_submission_archived_webhook_request_job_spec.rb b/spec/jobs/send_submission_archived_webhook_request_job_spec.rb index 6124ebe3..be3c644f 100644 --- a/spec/jobs/send_submission_archived_webhook_request_job_spec.rb +++ b/spec/jobs/send_submission_archived_webhook_request_job_spec.rb @@ -29,7 +29,7 @@ RSpec.describe SendSubmissionArchivedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -47,7 +47,7 @@ RSpec.describe SendSubmissionArchivedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_submission_completed_webhook_request_job_spec.rb b/spec/jobs/send_submission_completed_webhook_request_job_spec.rb index 72764b04..1b0d2560 100644 --- a/spec/jobs/send_submission_completed_webhook_request_job_spec.rb +++ b/spec/jobs/send_submission_completed_webhook_request_job_spec.rb @@ -33,7 +33,7 @@ RSpec.describe SendSubmissionCompletedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -51,7 +51,7 @@ RSpec.describe SendSubmissionCompletedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_submission_created_webhook_request_job_spec.rb b/spec/jobs/send_submission_created_webhook_request_job_spec.rb index 8a70c6fb..76f56d30 100644 --- a/spec/jobs/send_submission_created_webhook_request_job_spec.rb +++ b/spec/jobs/send_submission_created_webhook_request_job_spec.rb @@ -33,7 +33,7 @@ RSpec.describe SendSubmissionCreatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -51,7 +51,7 @@ RSpec.describe SendSubmissionCreatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once @@ -62,7 +62,7 @@ RSpec.describe SendSubmissionCreatedWebhookRequestJob do captured_signature = nil stub_request(:post, webhook_url.url).with do |req| captured_body = req.body - captured_signature = req.headers['X-Docuseal-Signature'] + captured_signature = req.headers['X-Wabosign-Signature'] end.to_return(status: 200) described_class.new.perform('submission_id' => submission.id, 'webhook_url_id' => webhook_url.id, diff --git a/spec/jobs/send_submission_expired_webhook_request_job_spec.rb b/spec/jobs/send_submission_expired_webhook_request_job_spec.rb index 541eb73b..73cb32e1 100644 --- a/spec/jobs/send_submission_expired_webhook_request_job_spec.rb +++ b/spec/jobs/send_submission_expired_webhook_request_job_spec.rb @@ -33,7 +33,7 @@ RSpec.describe SendSubmissionExpiredWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -51,7 +51,7 @@ RSpec.describe SendSubmissionExpiredWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_template_archived_webhook_request_job_spec.rb b/spec/jobs/send_template_archived_webhook_request_job_spec.rb index d40f68b5..1c4917c3 100644 --- a/spec/jobs/send_template_archived_webhook_request_job_spec.rb +++ b/spec/jobs/send_template_archived_webhook_request_job_spec.rb @@ -32,7 +32,7 @@ RSpec.describe SendTemplateArchivedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -50,7 +50,7 @@ RSpec.describe SendTemplateArchivedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_template_created_webhook_request_job_spec.rb b/spec/jobs/send_template_created_webhook_request_job_spec.rb index 696d47d4..9f8be10a 100644 --- a/spec/jobs/send_template_created_webhook_request_job_spec.rb +++ b/spec/jobs/send_template_created_webhook_request_job_spec.rb @@ -32,7 +32,7 @@ RSpec.describe SendTemplateCreatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -50,7 +50,7 @@ RSpec.describe SendTemplateCreatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/jobs/send_template_updated_webhook_request_job_spec.rb b/spec/jobs/send_template_updated_webhook_request_job_spec.rb index c0ecec8b..4bf75f93 100644 --- a/spec/jobs/send_template_updated_webhook_request_job_spec.rb +++ b/spec/jobs/send_template_updated_webhook_request_job_spec.rb @@ -32,7 +32,7 @@ RSpec.describe SendTemplateUpdatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook' + 'User-Agent' => 'WaboSign.com Webhook' } ).once end @@ -50,7 +50,7 @@ RSpec.describe SendTemplateUpdatedWebhookRequestJob do }, headers: { 'Content-Type' => 'application/json', - 'User-Agent' => 'DocuSeal.com Webhook', + 'User-Agent' => 'WaboSign.com Webhook', 'X-Secret-Header' => 'secret_value' } ).once diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 74284e07..207b243f 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -76,7 +76,7 @@ RSpec.configure do |config| end config.before(multitenant: true) do - allow(Docuseal).to receive(:multitenant?).and_return(true) + allow(Wabosign).to receive(:multitenant?).and_return(true) end end diff --git a/spec/requests/submissions_spec.rb b/spec/requests/submissions_spec.rb index 82698613..fa522690 100644 --- a/spec/requests/submissions_spec.rb +++ b/spec/requests/submissions_spec.rb @@ -411,7 +411,7 @@ describe 'Submission API' do metadata: {}, preferences: { send_email: true, send_sms: false }, role: submitter.template.submitters.find { |s| s['uuid'] == submitter.uuid }['name'], - embed_src: "#{Docuseal::DEFAULT_APP_URL}/s/#{submitter.slug}", + embed_src: "#{Wabosign::DEFAULT_APP_URL}/s/#{submitter.slug}", values: Submitters::SerializeForWebhook.build_values_array(submitter) } end diff --git a/spec/requests/submitters_spec.rb b/spec/requests/submitters_spec.rb index faa7dd4d..cb1f0611 100644 --- a/spec/requests/submitters_spec.rb +++ b/spec/requests/submitters_spec.rb @@ -157,6 +157,6 @@ describe 'Submitter API' do def update_submitter_body(submitter) submitter_body(submitter).except(:template, :submission_events) - .merge(embed_src: "#{Docuseal::DEFAULT_APP_URL}/s/#{submitter.slug}") + .merge(embed_src: "#{Wabosign::DEFAULT_APP_URL}/s/#{submitter.slug}") end end diff --git a/spec/system/newsletters_spec.rb b/spec/system/newsletters_spec.rb index 274ba7e3..19595a07 100644 --- a/spec/system/newsletters_spec.rb +++ b/spec/system/newsletters_spec.rb @@ -5,7 +5,7 @@ RSpec.describe 'Newsletter' do before do sign_in(user) - stub_request(:post, Docuseal::NEWSLETTER_URL).to_return(status: 200) + stub_request(:post, Wabosign::NEWSLETTER_URL).to_return(status: 200) visit newsletter_path end @@ -19,7 +19,7 @@ RSpec.describe 'Newsletter' do it 'submits the newsletter form' do click_button 'Submit' - expect(a_request(:post, Docuseal::NEWSLETTER_URL)).to have_been_made.once + expect(a_request(:post, Wabosign::NEWSLETTER_URL)).to have_been_made.once end it 'skips the newsletter form' do diff --git a/spec/system/signing_form_spec.rb b/spec/system/signing_form_spec.rb index 15659626..6dfb16af 100644 --- a/spec/system/signing_form_spec.rb +++ b/spec/system/signing_form_spec.rb @@ -1091,7 +1091,7 @@ RSpec.describe 'Signing Form' do expect(page).to have_content('This submission has multiple signers, which prevents the use of a sharing link ' \ "as it's unclear which signer is responsible for specific fields. " \ 'To resolve this, follow this guide to define the default signer details.') - expect(page).to have_link('guide', href: 'https://www.docuseal.com/resources/pre-filling-recipients') + expect(page).to have_link('guide', href: 'https://www.wabosign.com/resources/pre-filling-recipients') end it 'shows a "Not found" error message if a logged-out user associated with the template account opens the link' do diff --git a/tailwind.config.js b/tailwind.config.js index d6c5b9bf..9710f0c7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,7 +5,7 @@ module.exports = { daisyui: { themes: [ { - docuseal: { + wabosign: { 'color-scheme': 'light', primary: '#e4e0e1', secondary: '#ef9fbc',