form_api 1.5.0 → 1.6.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +5 -5
- data/docs/PDFApi.md +1 -1
- data/lib/form_api/configuration.rb +1 -1
- data/lib/form_api/version.rb +1 -1
- data/spec/configuration_spec.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b28c9f71a22655dd4a6687d49323c40b067371e67654865a4c72455288ad0a20
|
|
4
|
+
data.tar.gz: 76dfee353e3b53ed4ff7a4f3f75f3407a4e96b6b40e8e6513f7fb7d4d4096a53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4becd6ec92face2c93247a67fb09bd0d0c619794c8a87148411832e04a5412a0bf54ae04af7d1c99bf18280df16a6da27782c6201e57f604325372991876118
|
|
7
|
+
data.tar.gz: 0f201bb33eecbe261883b5d455cb61662d544e34edb560c31d52f5b9d6bf5fe2cd12b081c60a8e9d7c53ba8c65fff7038fa4e67bcac71a9713850f501ae22d9c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
### 1.6.0 [December 18, 2018]
|
|
2
|
+
* Updated API host to api.formapi.io
|
|
3
|
+
|
|
1
4
|
### 1.5.0 [December 13, 2018]
|
|
2
5
|
* Fix model name for newly created Templates (PendingTemplate)
|
|
3
6
|
* Added "actions" to submission and combined_submission responses. Includes information about custom S3 uploads
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ FormAPI is a service that helps you fill out and sign PDF templates.
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v1
|
|
10
|
-
- Package version: 1.
|
|
10
|
+
- Package version: 1.6.0
|
|
11
11
|
- Build package: io.formapi.codegen.FormApiRubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,15 +23,15 @@ gem build form_api.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./form_api-1.
|
|
26
|
+
gem install ./form_api-1.6.0.gem
|
|
27
27
|
```
|
|
28
|
-
(for development, run `gem install --dev ./form_api-1.
|
|
28
|
+
(for development, run `gem install --dev ./form_api-1.6.0.gem` to install the development dependencies)
|
|
29
29
|
|
|
30
30
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
31
31
|
|
|
32
32
|
Finally add this to the Gemfile:
|
|
33
33
|
|
|
34
|
-
gem 'form_api', '~> 1.
|
|
34
|
+
gem 'form_api', '~> 1.6.0'
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
|
37
37
|
|
|
@@ -77,7 +77,7 @@ end
|
|
|
77
77
|
|
|
78
78
|
## Documentation for API Endpoints
|
|
79
79
|
|
|
80
|
-
All URIs are relative to *https://
|
|
80
|
+
All URIs are relative to *https://api.formapi.io/api/v1*
|
|
81
81
|
|
|
82
82
|
Class | Method | HTTP request | Description
|
|
83
83
|
------------ | ------------- | ------------- | -------------
|
data/docs/PDFApi.md
CHANGED
data/lib/form_api/version.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
|
@@ -19,7 +19,7 @@ describe FormAPI::Configuration do
|
|
|
19
19
|
before(:each) do
|
|
20
20
|
# uncomment below to setup host and base_path
|
|
21
21
|
# require 'URI'
|
|
22
|
-
# uri = URI.parse("https://
|
|
22
|
+
# uri = URI.parse("https://api.formapi.io/api/v1")
|
|
23
23
|
# FormAPI.configure do |c|
|
|
24
24
|
# c.host = uri.host
|
|
25
25
|
# c.base_path = uri.path
|
|
@@ -39,14 +39,14 @@ describe FormAPI::Configuration do
|
|
|
39
39
|
describe '#base_url' do
|
|
40
40
|
it 'should have the default value' do
|
|
41
41
|
# uncomment below to test default value of the base path
|
|
42
|
-
# expect(config.base_url).to eq("https://
|
|
42
|
+
# expect(config.base_url).to eq("https://api.formapi.io/api/v1")
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
it 'should remove trailing slashes' do
|
|
46
46
|
[nil, '', '/', '//'].each do |base_path|
|
|
47
47
|
config.base_path = base_path
|
|
48
48
|
# uncomment below to test trailing slashes
|
|
49
|
-
# expect(config.base_url).to eq("https://
|
|
49
|
+
# expect(config.base_url).to eq("https://api.formapi.io/api/v1")
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: form_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Form Applications, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-12-
|
|
11
|
+
date: 2018-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|