signrequest_client 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +69 -0
- data/LICENSE +21 -0
- data/README.md +122 -0
- data/Rakefile +9 -0
- data/docs/ApiTokensApi.md +226 -0
- data/docs/AuthToken.md +13 -0
- data/docs/Document.md +33 -0
- data/docs/DocumentAttachment.md +15 -0
- data/docs/DocumentAttachmentsApi.md +179 -0
- data/docs/DocumentSearch.md +22 -0
- data/docs/DocumentSignerTemplateConf.md +14 -0
- data/docs/DocumentsApi.md +301 -0
- data/docs/DocumentsSearchApi.md +119 -0
- data/docs/Event.md +17 -0
- data/docs/EventsApi.md +145 -0
- data/docs/FileFromSf.md +9 -0
- data/docs/InlineDocumentSignerIntegrationData.md +9 -0
- data/docs/InlineIntegrationData.md +9 -0
- data/docs/InlinePrefillTags.md +11 -0
- data/docs/InlineResponse200.md +11 -0
- data/docs/InlineResponse2001.md +11 -0
- data/docs/InlineResponse2002.md +11 -0
- data/docs/InlineResponse2003.md +11 -0
- data/docs/InlineResponse2004.md +11 -0
- data/docs/InlineResponse2005.md +11 -0
- data/docs/InlineResponse2006.md +11 -0
- data/docs/InlineResponse2007.md +11 -0
- data/docs/InlineResponse2008.md +11 -0
- data/docs/InlineResponse2009.md +11 -0
- data/docs/InlineSignRequest.md +25 -0
- data/docs/InlineTeam.md +10 -0
- data/docs/InlineTeamMember.md +13 -0
- data/docs/InviteMember.md +10 -0
- data/docs/Placeholder.md +15 -0
- data/docs/RequiredAttachment.md +9 -0
- data/docs/SignRequest.md +29 -0
- data/docs/SignRequestQuickCreate.md +42 -0
- data/docs/Signer.md +40 -0
- data/docs/SignerAttachment.md +11 -0
- data/docs/SignerInputs.md +14 -0
- data/docs/SigningLog.md +9 -0
- data/docs/SignrequestQuickCreateApi.md +62 -0
- data/docs/SignrequestsApi.md +291 -0
- data/docs/Team.md +15 -0
- data/docs/TeamMember.md +14 -0
- data/docs/TeamMembersApi.md +131 -0
- data/docs/TeamsApi.md +344 -0
- data/docs/Template.md +14 -0
- data/docs/TemplatesApi.md +119 -0
- data/docs/User.md +11 -0
- data/docs/WebhookSubscription.md +15 -0
- data/docs/WebhooksApi.md +340 -0
- data/git_push.sh +55 -0
- data/lib/signrequest_client/api/api_tokens_api.rb +242 -0
- data/lib/signrequest_client/api/document_attachments_api.rb +197 -0
- data/lib/signrequest_client/api/documents_api.rb +330 -0
- data/lib/signrequest_client/api/documents_search_api.rb +133 -0
- data/lib/signrequest_client/api/events_api.rb +172 -0
- data/lib/signrequest_client/api/signrequest_quick_create_api.rb +78 -0
- data/lib/signrequest_client/api/signrequests_api.rb +316 -0
- data/lib/signrequest_client/api/team_members_api.rb +151 -0
- data/lib/signrequest_client/api/teams_api.rb +371 -0
- data/lib/signrequest_client/api/templates_api.rb +133 -0
- data/lib/signrequest_client/api/webhooks_api.rb +364 -0
- data/lib/signrequest_client/api_client.rb +389 -0
- data/lib/signrequest_client/api_error.rb +38 -0
- data/lib/signrequest_client/configuration.rb +209 -0
- data/lib/signrequest_client/models/auth_token.rb +298 -0
- data/lib/signrequest_client/models/document.rb +605 -0
- data/lib/signrequest_client/models/document_attachment.rb +304 -0
- data/lib/signrequest_client/models/document_search.rb +519 -0
- data/lib/signrequest_client/models/document_signer_template_conf.rb +294 -0
- data/lib/signrequest_client/models/event.rb +330 -0
- data/lib/signrequest_client/models/file_from_sf.rb +245 -0
- data/lib/signrequest_client/models/inline_document_signer_integration_data.rb +230 -0
- data/lib/signrequest_client/models/inline_integration_data.rb +230 -0
- data/lib/signrequest_client/models/inline_prefill_tags.rb +231 -0
- data/lib/signrequest_client/models/inline_response_200.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_1.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_2.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_3.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_4.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_5.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_6.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_7.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_8.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_9.rb +227 -0
- data/lib/signrequest_client/models/inline_sign_request.rb +496 -0
- data/lib/signrequest_client/models/inline_team.rb +247 -0
- data/lib/signrequest_client/models/inline_team_member.rb +249 -0
- data/lib/signrequest_client/models/invite_member.rb +234 -0
- data/lib/signrequest_client/models/placeholder.rb +326 -0
- data/lib/signrequest_client/models/required_attachment.rb +246 -0
- data/lib/signrequest_client/models/sign_request.rb +543 -0
- data/lib/signrequest_client/models/sign_request_quick_create.rb +764 -0
- data/lib/signrequest_client/models/signer.rb +751 -0
- data/lib/signrequest_client/models/signer_attachment.rb +247 -0
- data/lib/signrequest_client/models/signer_inputs.rb +312 -0
- data/lib/signrequest_client/models/signing_log.rb +213 -0
- data/lib/signrequest_client/models/team.rb +367 -0
- data/lib/signrequest_client/models/team_member.rb +258 -0
- data/lib/signrequest_client/models/template.rb +309 -0
- data/lib/signrequest_client/models/user.rb +296 -0
- data/lib/signrequest_client/models/webhook_subscription.rb +366 -0
- data/lib/signrequest_client/version.rb +15 -0
- data/lib/signrequest_client.rb +87 -0
- data/pkg/signrequest_client-0.1.0.gem +0 -0
- data/signrequest_client.gemspec +45 -0
- data/signrequst_client/.git/HEAD +1 -0
- data/signrequst_client/.git/config +7 -0
- data/signrequst_client/.git/description +1 -0
- data/signrequst_client/.git/hooks/applypatch-msg.sample +15 -0
- data/signrequst_client/.git/hooks/commit-msg.sample +24 -0
- data/signrequst_client/.git/hooks/fsmonitor-watchman.sample +114 -0
- data/signrequst_client/.git/hooks/post-update.sample +8 -0
- data/signrequst_client/.git/hooks/pre-applypatch.sample +14 -0
- data/signrequst_client/.git/hooks/pre-commit.sample +49 -0
- data/signrequst_client/.git/hooks/pre-push.sample +53 -0
- data/signrequst_client/.git/hooks/pre-rebase.sample +169 -0
- data/signrequst_client/.git/hooks/pre-receive.sample +24 -0
- data/signrequst_client/.git/hooks/prepare-commit-msg.sample +42 -0
- data/signrequst_client/.git/hooks/update.sample +128 -0
- data/signrequst_client/.git/index +0 -0
- data/signrequst_client/.git/info/exclude +6 -0
- data/signrequst_client/.git/objects/30/68cc8a074ffc0c7b8891cb21d68b5d367cb8c4 +0 -0
- data/signrequst_client/.git/objects/32/c4b7e9f988621ed2ce28954f1aaf088f340848 +2 -0
- data/signrequst_client/.git/objects/3e/8c4c2f8d1d5334612f3072160124e985f27e8c +0 -0
- data/signrequst_client/.git/objects/43/022f711e20ed55baf2470278eb8e428a04856f +0 -0
- data/signrequst_client/.git/objects/6f/8caa83dfb6dc8a987a2829cbfefae18c8870c3 +0 -0
- data/signrequst_client/.git/objects/91/06b2a345b019a799c02e5069affa88370b35dd +0 -0
- data/signrequst_client/.git/objects/aa/58e53f733551ac2bde6f7a50b5a9f16ddbf110 +0 -0
- data/signrequst_client/.git/objects/dc/e67d860af47a4eb630117ce03624bae45dcf26 +3 -0
- data/signrequst_client/.git/objects/f1/c9171bed4c19fd22429ffd68d4cbb2c3ce2fce +0 -0
- data/signrequst_client/.git/objects/f8/e4c2573ebc57d5a365ebe14d5c18cc8d0716c4 +0 -0
- data/spec/api/api_tokens_api_spec.rb +84 -0
- data/spec/api/document_attachments_api_spec.rb +75 -0
- data/spec/api/documents_api_spec.rb +106 -0
- data/spec/api/documents_search_api_spec.rb +60 -0
- data/spec/api/events_api_spec.rb +73 -0
- data/spec/api/signrequest_quick_create_api_spec.rb +47 -0
- data/spec/api/signrequests_api_spec.rb +100 -0
- data/spec/api/team_members_api_spec.rb +66 -0
- data/spec/api/teams_api_spec.rb +111 -0
- data/spec/api/templates_api_spec.rb +60 -0
- data/spec/api/webhooks_api_spec.rb +110 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/auth_token_spec.rb +72 -0
- data/spec/models/document_attachment_spec.rb +84 -0
- data/spec/models/document_search_spec.rb +126 -0
- data/spec/models/document_signer_template_conf_spec.rb +78 -0
- data/spec/models/document_spec.rb +196 -0
- data/spec/models/event_spec.rb +104 -0
- data/spec/models/file_from_sf_spec.rb +48 -0
- data/spec/models/inline_document_signer_integration_data_spec.rb +52 -0
- data/spec/models/inline_integration_data_spec.rb +52 -0
- data/spec/models/inline_prefill_tags_spec.rb +60 -0
- data/spec/models/inline_response_200_1_spec.rb +60 -0
- data/spec/models/inline_response_200_2_spec.rb +60 -0
- data/spec/models/inline_response_200_3_spec.rb +60 -0
- data/spec/models/inline_response_200_4_spec.rb +60 -0
- data/spec/models/inline_response_200_5_spec.rb +60 -0
- data/spec/models/inline_response_200_6_spec.rb +60 -0
- data/spec/models/inline_response_200_7_spec.rb +60 -0
- data/spec/models/inline_response_200_8_spec.rb +60 -0
- data/spec/models/inline_response_200_9_spec.rb +60 -0
- data/spec/models/inline_response_200_spec.rb +60 -0
- data/spec/models/inline_sign_request_spec.rb +148 -0
- data/spec/models/inline_team_member_spec.rb +72 -0
- data/spec/models/inline_team_spec.rb +54 -0
- data/spec/models/invite_member_spec.rb +54 -0
- data/spec/models/placeholder_spec.rb +88 -0
- data/spec/models/required_attachment_spec.rb +48 -0
- data/spec/models/sign_request_quick_create_spec.rb +254 -0
- data/spec/models/sign_request_spec.rb +176 -0
- data/spec/models/signer_attachment_spec.rb +60 -0
- data/spec/models/signer_inputs_spec.rb +82 -0
- data/spec/models/signer_spec.rb +238 -0
- data/spec/models/signing_log_spec.rb +48 -0
- data/spec/models/team_member_spec.rb +78 -0
- data/spec/models/team_spec.rb +84 -0
- data/spec/models/template_spec.rb +82 -0
- data/spec/models/user_spec.rb +60 -0
- data/spec/models/webhook_subscription_spec.rb +92 -0
- data/spec/spec_helper.rb +111 -0
- metadata +461 -0
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#SignRequest API
|
|
3
|
+
|
|
4
|
+
#API for SignRequest.com
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
Contact: tech-support@signrequest.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
# load the gem
|
|
14
|
+
require 'signrequest_client'
|
|
15
|
+
|
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
|
20
|
+
# files.
|
|
21
|
+
#
|
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
|
28
|
+
# it.
|
|
29
|
+
#
|
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
|
31
|
+
# users commonly want.
|
|
32
|
+
#
|
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
34
|
+
RSpec.configure do |config|
|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
|
37
|
+
# assertions if you prefer.
|
|
38
|
+
config.expect_with :rspec do |expectations|
|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
|
41
|
+
# defined using `chain`, e.g.:
|
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
|
44
|
+
# ...rather than:
|
|
45
|
+
# # => "be bigger than 2"
|
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
51
|
+
config.mock_with :rspec do |mocks|
|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
|
53
|
+
# a real object. This is generally recommended, and will default to
|
|
54
|
+
# `true` in RSpec 4.
|
|
55
|
+
mocks.verify_partial_doubles = true
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
|
60
|
+
=begin
|
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
|
64
|
+
# get run.
|
|
65
|
+
config.filter_run :focus
|
|
66
|
+
config.run_all_when_everything_filtered = true
|
|
67
|
+
|
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
|
70
|
+
# you configure your source control system to ignore this file.
|
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
|
72
|
+
|
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
|
74
|
+
# recommended. For more details, see:
|
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
|
78
|
+
config.disable_monkey_patching!
|
|
79
|
+
|
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
|
81
|
+
# be too noisy due to issues in dependencies.
|
|
82
|
+
config.warnings = true
|
|
83
|
+
|
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
|
86
|
+
# individual spec file.
|
|
87
|
+
if config.files_to_run.one?
|
|
88
|
+
# Use the documentation formatter for detailed output,
|
|
89
|
+
# unless a formatter has already been configured
|
|
90
|
+
# (e.g. via a command-line flag).
|
|
91
|
+
config.default_formatter = 'doc'
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
|
95
|
+
# end of the spec run, to help surface which specs are running
|
|
96
|
+
# particularly slow.
|
|
97
|
+
config.profile_examples = 10
|
|
98
|
+
|
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
101
|
+
# the seed, which is printed after each run.
|
|
102
|
+
# --seed 1234
|
|
103
|
+
config.order = :random
|
|
104
|
+
|
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
|
108
|
+
# as the one that triggered the failure.
|
|
109
|
+
Kernel.srand config.seed
|
|
110
|
+
=end
|
|
111
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,461 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: signrequest_client
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- SignRequest
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-08-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: typhoeus
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.0.1
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.0'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.0.1
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: json
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.1'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 2.1.0
|
|
43
|
+
type: :runtime
|
|
44
|
+
prerelease: false
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '2.1'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 2.1.0
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: rspec
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '3.6'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 3.6.0
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '3.6'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 3.6.0
|
|
73
|
+
- !ruby/object:Gem::Dependency
|
|
74
|
+
name: vcr
|
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - "~>"
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '3.0'
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 3.0.1
|
|
83
|
+
type: :development
|
|
84
|
+
prerelease: false
|
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.0'
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: 3.0.1
|
|
93
|
+
- !ruby/object:Gem::Dependency
|
|
94
|
+
name: webmock
|
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
|
96
|
+
requirements:
|
|
97
|
+
- - "~>"
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '1.24'
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 1.24.3
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '1.24'
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: 1.24.3
|
|
113
|
+
- !ruby/object:Gem::Dependency
|
|
114
|
+
name: autotest
|
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '4.4'
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: 4.4.6
|
|
123
|
+
type: :development
|
|
124
|
+
prerelease: false
|
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - "~>"
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '4.4'
|
|
130
|
+
- - ">="
|
|
131
|
+
- !ruby/object:Gem::Version
|
|
132
|
+
version: 4.4.6
|
|
133
|
+
- !ruby/object:Gem::Dependency
|
|
134
|
+
name: autotest-rails-pure
|
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - "~>"
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '4.1'
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: 4.1.2
|
|
143
|
+
type: :development
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '4.1'
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 4.1.2
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: autotest-growl
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0.2'
|
|
160
|
+
- - ">="
|
|
161
|
+
- !ruby/object:Gem::Version
|
|
162
|
+
version: 0.2.16
|
|
163
|
+
type: :development
|
|
164
|
+
prerelease: false
|
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
166
|
+
requirements:
|
|
167
|
+
- - "~>"
|
|
168
|
+
- !ruby/object:Gem::Version
|
|
169
|
+
version: '0.2'
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: 0.2.16
|
|
173
|
+
- !ruby/object:Gem::Dependency
|
|
174
|
+
name: autotest-fsevent
|
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - "~>"
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0.2'
|
|
180
|
+
- - ">="
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
version: 0.2.12
|
|
183
|
+
type: :development
|
|
184
|
+
prerelease: false
|
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
186
|
+
requirements:
|
|
187
|
+
- - "~>"
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: '0.2'
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 0.2.12
|
|
193
|
+
description: This gem maps to a SignRequest API
|
|
194
|
+
email:
|
|
195
|
+
- tech-support@signrequest.com
|
|
196
|
+
executables: []
|
|
197
|
+
extensions: []
|
|
198
|
+
extra_rdoc_files: []
|
|
199
|
+
files:
|
|
200
|
+
- Gemfile
|
|
201
|
+
- Gemfile.lock
|
|
202
|
+
- LICENSE
|
|
203
|
+
- README.md
|
|
204
|
+
- Rakefile
|
|
205
|
+
- docs/ApiTokensApi.md
|
|
206
|
+
- docs/AuthToken.md
|
|
207
|
+
- docs/Document.md
|
|
208
|
+
- docs/DocumentAttachment.md
|
|
209
|
+
- docs/DocumentAttachmentsApi.md
|
|
210
|
+
- docs/DocumentSearch.md
|
|
211
|
+
- docs/DocumentSignerTemplateConf.md
|
|
212
|
+
- docs/DocumentsApi.md
|
|
213
|
+
- docs/DocumentsSearchApi.md
|
|
214
|
+
- docs/Event.md
|
|
215
|
+
- docs/EventsApi.md
|
|
216
|
+
- docs/FileFromSf.md
|
|
217
|
+
- docs/InlineDocumentSignerIntegrationData.md
|
|
218
|
+
- docs/InlineIntegrationData.md
|
|
219
|
+
- docs/InlinePrefillTags.md
|
|
220
|
+
- docs/InlineResponse200.md
|
|
221
|
+
- docs/InlineResponse2001.md
|
|
222
|
+
- docs/InlineResponse2002.md
|
|
223
|
+
- docs/InlineResponse2003.md
|
|
224
|
+
- docs/InlineResponse2004.md
|
|
225
|
+
- docs/InlineResponse2005.md
|
|
226
|
+
- docs/InlineResponse2006.md
|
|
227
|
+
- docs/InlineResponse2007.md
|
|
228
|
+
- docs/InlineResponse2008.md
|
|
229
|
+
- docs/InlineResponse2009.md
|
|
230
|
+
- docs/InlineSignRequest.md
|
|
231
|
+
- docs/InlineTeam.md
|
|
232
|
+
- docs/InlineTeamMember.md
|
|
233
|
+
- docs/InviteMember.md
|
|
234
|
+
- docs/Placeholder.md
|
|
235
|
+
- docs/RequiredAttachment.md
|
|
236
|
+
- docs/SignRequest.md
|
|
237
|
+
- docs/SignRequestQuickCreate.md
|
|
238
|
+
- docs/Signer.md
|
|
239
|
+
- docs/SignerAttachment.md
|
|
240
|
+
- docs/SignerInputs.md
|
|
241
|
+
- docs/SigningLog.md
|
|
242
|
+
- docs/SignrequestQuickCreateApi.md
|
|
243
|
+
- docs/SignrequestsApi.md
|
|
244
|
+
- docs/Team.md
|
|
245
|
+
- docs/TeamMember.md
|
|
246
|
+
- docs/TeamMembersApi.md
|
|
247
|
+
- docs/TeamsApi.md
|
|
248
|
+
- docs/Template.md
|
|
249
|
+
- docs/TemplatesApi.md
|
|
250
|
+
- docs/User.md
|
|
251
|
+
- docs/WebhookSubscription.md
|
|
252
|
+
- docs/WebhooksApi.md
|
|
253
|
+
- git_push.sh
|
|
254
|
+
- lib/signrequest_client.rb
|
|
255
|
+
- lib/signrequest_client/api/api_tokens_api.rb
|
|
256
|
+
- lib/signrequest_client/api/document_attachments_api.rb
|
|
257
|
+
- lib/signrequest_client/api/documents_api.rb
|
|
258
|
+
- lib/signrequest_client/api/documents_search_api.rb
|
|
259
|
+
- lib/signrequest_client/api/events_api.rb
|
|
260
|
+
- lib/signrequest_client/api/signrequest_quick_create_api.rb
|
|
261
|
+
- lib/signrequest_client/api/signrequests_api.rb
|
|
262
|
+
- lib/signrequest_client/api/team_members_api.rb
|
|
263
|
+
- lib/signrequest_client/api/teams_api.rb
|
|
264
|
+
- lib/signrequest_client/api/templates_api.rb
|
|
265
|
+
- lib/signrequest_client/api/webhooks_api.rb
|
|
266
|
+
- lib/signrequest_client/api_client.rb
|
|
267
|
+
- lib/signrequest_client/api_error.rb
|
|
268
|
+
- lib/signrequest_client/configuration.rb
|
|
269
|
+
- lib/signrequest_client/models/auth_token.rb
|
|
270
|
+
- lib/signrequest_client/models/document.rb
|
|
271
|
+
- lib/signrequest_client/models/document_attachment.rb
|
|
272
|
+
- lib/signrequest_client/models/document_search.rb
|
|
273
|
+
- lib/signrequest_client/models/document_signer_template_conf.rb
|
|
274
|
+
- lib/signrequest_client/models/event.rb
|
|
275
|
+
- lib/signrequest_client/models/file_from_sf.rb
|
|
276
|
+
- lib/signrequest_client/models/inline_document_signer_integration_data.rb
|
|
277
|
+
- lib/signrequest_client/models/inline_integration_data.rb
|
|
278
|
+
- lib/signrequest_client/models/inline_prefill_tags.rb
|
|
279
|
+
- lib/signrequest_client/models/inline_response_200.rb
|
|
280
|
+
- lib/signrequest_client/models/inline_response_200_1.rb
|
|
281
|
+
- lib/signrequest_client/models/inline_response_200_2.rb
|
|
282
|
+
- lib/signrequest_client/models/inline_response_200_3.rb
|
|
283
|
+
- lib/signrequest_client/models/inline_response_200_4.rb
|
|
284
|
+
- lib/signrequest_client/models/inline_response_200_5.rb
|
|
285
|
+
- lib/signrequest_client/models/inline_response_200_6.rb
|
|
286
|
+
- lib/signrequest_client/models/inline_response_200_7.rb
|
|
287
|
+
- lib/signrequest_client/models/inline_response_200_8.rb
|
|
288
|
+
- lib/signrequest_client/models/inline_response_200_9.rb
|
|
289
|
+
- lib/signrequest_client/models/inline_sign_request.rb
|
|
290
|
+
- lib/signrequest_client/models/inline_team.rb
|
|
291
|
+
- lib/signrequest_client/models/inline_team_member.rb
|
|
292
|
+
- lib/signrequest_client/models/invite_member.rb
|
|
293
|
+
- lib/signrequest_client/models/placeholder.rb
|
|
294
|
+
- lib/signrequest_client/models/required_attachment.rb
|
|
295
|
+
- lib/signrequest_client/models/sign_request.rb
|
|
296
|
+
- lib/signrequest_client/models/sign_request_quick_create.rb
|
|
297
|
+
- lib/signrequest_client/models/signer.rb
|
|
298
|
+
- lib/signrequest_client/models/signer_attachment.rb
|
|
299
|
+
- lib/signrequest_client/models/signer_inputs.rb
|
|
300
|
+
- lib/signrequest_client/models/signing_log.rb
|
|
301
|
+
- lib/signrequest_client/models/team.rb
|
|
302
|
+
- lib/signrequest_client/models/team_member.rb
|
|
303
|
+
- lib/signrequest_client/models/template.rb
|
|
304
|
+
- lib/signrequest_client/models/user.rb
|
|
305
|
+
- lib/signrequest_client/models/webhook_subscription.rb
|
|
306
|
+
- lib/signrequest_client/version.rb
|
|
307
|
+
- pkg/signrequest_client-0.1.0.gem
|
|
308
|
+
- signrequest_client.gemspec
|
|
309
|
+
- signrequst_client/.git/HEAD
|
|
310
|
+
- signrequst_client/.git/config
|
|
311
|
+
- signrequst_client/.git/description
|
|
312
|
+
- signrequst_client/.git/hooks/applypatch-msg.sample
|
|
313
|
+
- signrequst_client/.git/hooks/commit-msg.sample
|
|
314
|
+
- signrequst_client/.git/hooks/fsmonitor-watchman.sample
|
|
315
|
+
- signrequst_client/.git/hooks/post-update.sample
|
|
316
|
+
- signrequst_client/.git/hooks/pre-applypatch.sample
|
|
317
|
+
- signrequst_client/.git/hooks/pre-commit.sample
|
|
318
|
+
- signrequst_client/.git/hooks/pre-push.sample
|
|
319
|
+
- signrequst_client/.git/hooks/pre-rebase.sample
|
|
320
|
+
- signrequst_client/.git/hooks/pre-receive.sample
|
|
321
|
+
- signrequst_client/.git/hooks/prepare-commit-msg.sample
|
|
322
|
+
- signrequst_client/.git/hooks/update.sample
|
|
323
|
+
- signrequst_client/.git/index
|
|
324
|
+
- signrequst_client/.git/info/exclude
|
|
325
|
+
- signrequst_client/.git/objects/30/68cc8a074ffc0c7b8891cb21d68b5d367cb8c4
|
|
326
|
+
- signrequst_client/.git/objects/32/c4b7e9f988621ed2ce28954f1aaf088f340848
|
|
327
|
+
- signrequst_client/.git/objects/3e/8c4c2f8d1d5334612f3072160124e985f27e8c
|
|
328
|
+
- signrequst_client/.git/objects/43/022f711e20ed55baf2470278eb8e428a04856f
|
|
329
|
+
- signrequst_client/.git/objects/6f/8caa83dfb6dc8a987a2829cbfefae18c8870c3
|
|
330
|
+
- signrequst_client/.git/objects/91/06b2a345b019a799c02e5069affa88370b35dd
|
|
331
|
+
- signrequst_client/.git/objects/aa/58e53f733551ac2bde6f7a50b5a9f16ddbf110
|
|
332
|
+
- signrequst_client/.git/objects/dc/e67d860af47a4eb630117ce03624bae45dcf26
|
|
333
|
+
- signrequst_client/.git/objects/f1/c9171bed4c19fd22429ffd68d4cbb2c3ce2fce
|
|
334
|
+
- signrequst_client/.git/objects/f8/e4c2573ebc57d5a365ebe14d5c18cc8d0716c4
|
|
335
|
+
- spec/api/api_tokens_api_spec.rb
|
|
336
|
+
- spec/api/document_attachments_api_spec.rb
|
|
337
|
+
- spec/api/documents_api_spec.rb
|
|
338
|
+
- spec/api/documents_search_api_spec.rb
|
|
339
|
+
- spec/api/events_api_spec.rb
|
|
340
|
+
- spec/api/signrequest_quick_create_api_spec.rb
|
|
341
|
+
- spec/api/signrequests_api_spec.rb
|
|
342
|
+
- spec/api/team_members_api_spec.rb
|
|
343
|
+
- spec/api/teams_api_spec.rb
|
|
344
|
+
- spec/api/templates_api_spec.rb
|
|
345
|
+
- spec/api/webhooks_api_spec.rb
|
|
346
|
+
- spec/api_client_spec.rb
|
|
347
|
+
- spec/configuration_spec.rb
|
|
348
|
+
- spec/models/auth_token_spec.rb
|
|
349
|
+
- spec/models/document_attachment_spec.rb
|
|
350
|
+
- spec/models/document_search_spec.rb
|
|
351
|
+
- spec/models/document_signer_template_conf_spec.rb
|
|
352
|
+
- spec/models/document_spec.rb
|
|
353
|
+
- spec/models/event_spec.rb
|
|
354
|
+
- spec/models/file_from_sf_spec.rb
|
|
355
|
+
- spec/models/inline_document_signer_integration_data_spec.rb
|
|
356
|
+
- spec/models/inline_integration_data_spec.rb
|
|
357
|
+
- spec/models/inline_prefill_tags_spec.rb
|
|
358
|
+
- spec/models/inline_response_200_1_spec.rb
|
|
359
|
+
- spec/models/inline_response_200_2_spec.rb
|
|
360
|
+
- spec/models/inline_response_200_3_spec.rb
|
|
361
|
+
- spec/models/inline_response_200_4_spec.rb
|
|
362
|
+
- spec/models/inline_response_200_5_spec.rb
|
|
363
|
+
- spec/models/inline_response_200_6_spec.rb
|
|
364
|
+
- spec/models/inline_response_200_7_spec.rb
|
|
365
|
+
- spec/models/inline_response_200_8_spec.rb
|
|
366
|
+
- spec/models/inline_response_200_9_spec.rb
|
|
367
|
+
- spec/models/inline_response_200_spec.rb
|
|
368
|
+
- spec/models/inline_sign_request_spec.rb
|
|
369
|
+
- spec/models/inline_team_member_spec.rb
|
|
370
|
+
- spec/models/inline_team_spec.rb
|
|
371
|
+
- spec/models/invite_member_spec.rb
|
|
372
|
+
- spec/models/placeholder_spec.rb
|
|
373
|
+
- spec/models/required_attachment_spec.rb
|
|
374
|
+
- spec/models/sign_request_quick_create_spec.rb
|
|
375
|
+
- spec/models/sign_request_spec.rb
|
|
376
|
+
- spec/models/signer_attachment_spec.rb
|
|
377
|
+
- spec/models/signer_inputs_spec.rb
|
|
378
|
+
- spec/models/signer_spec.rb
|
|
379
|
+
- spec/models/signing_log_spec.rb
|
|
380
|
+
- spec/models/team_member_spec.rb
|
|
381
|
+
- spec/models/team_spec.rb
|
|
382
|
+
- spec/models/template_spec.rb
|
|
383
|
+
- spec/models/user_spec.rb
|
|
384
|
+
- spec/models/webhook_subscription_spec.rb
|
|
385
|
+
- spec/spec_helper.rb
|
|
386
|
+
homepage: https://github.com/SignRequest/signrequest-ruby-client/
|
|
387
|
+
licenses:
|
|
388
|
+
- MIT
|
|
389
|
+
metadata: {}
|
|
390
|
+
post_install_message:
|
|
391
|
+
rdoc_options: []
|
|
392
|
+
require_paths:
|
|
393
|
+
- lib
|
|
394
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
395
|
+
requirements:
|
|
396
|
+
- - ">="
|
|
397
|
+
- !ruby/object:Gem::Version
|
|
398
|
+
version: '1.9'
|
|
399
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
400
|
+
requirements:
|
|
401
|
+
- - ">="
|
|
402
|
+
- !ruby/object:Gem::Version
|
|
403
|
+
version: '0'
|
|
404
|
+
requirements: []
|
|
405
|
+
rubyforge_project:
|
|
406
|
+
rubygems_version: 2.7.3
|
|
407
|
+
signing_key:
|
|
408
|
+
specification_version: 4
|
|
409
|
+
summary: A ruby wrapper for the SignRequest API
|
|
410
|
+
test_files:
|
|
411
|
+
- spec/api/teams_api_spec.rb
|
|
412
|
+
- spec/api/team_members_api_spec.rb
|
|
413
|
+
- spec/api/signrequests_api_spec.rb
|
|
414
|
+
- spec/api/webhooks_api_spec.rb
|
|
415
|
+
- spec/api/api_tokens_api_spec.rb
|
|
416
|
+
- spec/api/documents_api_spec.rb
|
|
417
|
+
- spec/api/signrequest_quick_create_api_spec.rb
|
|
418
|
+
- spec/api/events_api_spec.rb
|
|
419
|
+
- spec/api/document_attachments_api_spec.rb
|
|
420
|
+
- spec/api/documents_search_api_spec.rb
|
|
421
|
+
- spec/api/templates_api_spec.rb
|
|
422
|
+
- spec/api_client_spec.rb
|
|
423
|
+
- spec/configuration_spec.rb
|
|
424
|
+
- spec/models/inline_response_200_2_spec.rb
|
|
425
|
+
- spec/models/team_member_spec.rb
|
|
426
|
+
- spec/models/team_spec.rb
|
|
427
|
+
- spec/models/webhook_subscription_spec.rb
|
|
428
|
+
- spec/models/sign_request_spec.rb
|
|
429
|
+
- spec/models/inline_response_200_3_spec.rb
|
|
430
|
+
- spec/models/document_attachment_spec.rb
|
|
431
|
+
- spec/models/signer_attachment_spec.rb
|
|
432
|
+
- spec/models/inline_response_200_8_spec.rb
|
|
433
|
+
- spec/models/document_signer_template_conf_spec.rb
|
|
434
|
+
- spec/models/inline_response_200_1_spec.rb
|
|
435
|
+
- spec/models/inline_sign_request_spec.rb
|
|
436
|
+
- spec/models/signing_log_spec.rb
|
|
437
|
+
- spec/models/inline_team_member_spec.rb
|
|
438
|
+
- spec/models/auth_token_spec.rb
|
|
439
|
+
- spec/models/inline_response_200_9_spec.rb
|
|
440
|
+
- spec/models/inline_team_spec.rb
|
|
441
|
+
- spec/models/inline_response_200_5_spec.rb
|
|
442
|
+
- spec/models/signer_inputs_spec.rb
|
|
443
|
+
- spec/models/inline_response_200_4_spec.rb
|
|
444
|
+
- spec/models/inline_document_signer_integration_data_spec.rb
|
|
445
|
+
- spec/models/inline_response_200_spec.rb
|
|
446
|
+
- spec/models/file_from_sf_spec.rb
|
|
447
|
+
- spec/models/template_spec.rb
|
|
448
|
+
- spec/models/document_search_spec.rb
|
|
449
|
+
- spec/models/invite_member_spec.rb
|
|
450
|
+
- spec/models/event_spec.rb
|
|
451
|
+
- spec/models/inline_integration_data_spec.rb
|
|
452
|
+
- spec/models/inline_response_200_6_spec.rb
|
|
453
|
+
- spec/models/inline_prefill_tags_spec.rb
|
|
454
|
+
- spec/models/required_attachment_spec.rb
|
|
455
|
+
- spec/models/signer_spec.rb
|
|
456
|
+
- spec/models/document_spec.rb
|
|
457
|
+
- spec/models/user_spec.rb
|
|
458
|
+
- spec/models/sign_request_quick_create_spec.rb
|
|
459
|
+
- spec/models/placeholder_spec.rb
|
|
460
|
+
- spec/models/inline_response_200_7_spec.rb
|
|
461
|
+
- spec/spec_helper.rb
|