form_api 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1d068243d4371605f24470720f416a32aa032b0a5425dad32314422a79042e1
4
- data.tar.gz: 353135e261d59c05627316d8fa80caa95100058dfd06744d9a4fb27cb3142614
3
+ metadata.gz: b28c9f71a22655dd4a6687d49323c40b067371e67654865a4c72455288ad0a20
4
+ data.tar.gz: 76dfee353e3b53ed4ff7a4f3f75f3407a4e96b6b40e8e6513f7fb7d4d4096a53
5
5
  SHA512:
6
- metadata.gz: 5427b856c1276fdd3fedfa6d42ba1c693ac64191c581c7f18341aba34750edfac61ce947abe1efecda174e5232b46b5aabaf884e68b22bcb4f9af26cc67cb43b
7
- data.tar.gz: 41625cf306eab595c13cc71882371443ed2dc31dbfa1cd2c83d65e69886523791e9aec316cab5a787745edd7bf323277a384367fedd7b6cca31b1df17e8c3a2e
6
+ metadata.gz: d4becd6ec92face2c93247a67fb09bd0d0c619794c8a87148411832e04a5412a0bf54ae04af7d1c99bf18280df16a6da27782c6201e57f604325372991876118
7
+ data.tar.gz: 0f201bb33eecbe261883b5d455cb61662d544e34edb560c31d52f5b9d6bf5fe2cd12b081c60a8e9d7c53ba8c65fff7038fa4e67bcac71a9713850f501ae22d9c
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- form_api (1.5.0)
4
+ form_api (1.6.0)
5
5
  ffi (~> 1.0, >= 1.9.24)
6
6
  json (~> 2.1, >= 2.1.0)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
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.5.0
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.5.0.gem
26
+ gem install ./form_api-1.6.0.gem
27
27
  ```
28
- (for development, run `gem install --dev ./form_api-1.5.0.gem` to install the development dependencies)
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.5.0'
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://app.formapi.io/api/v1*
80
+ All URIs are relative to *https://api.formapi.io/api/v1*
81
81
 
82
82
  Class | Method | HTTP request | Description
83
83
  ------------ | ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # FormAPI::PDFApi
2
2
 
3
- All URIs are relative to *https://app.formapi.io/api/v1*
3
+ All URIs are relative to *https://api.formapi.io/api/v1*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -133,7 +133,7 @@ module FormAPI
133
133
 
134
134
  def initialize
135
135
  @scheme = 'https'
136
- @host = 'app.formapi.io'
136
+ @host = 'api.formapi.io'
137
137
  @base_path = '/api/v1'
138
138
  @api_key = {}
139
139
  @api_key_prefix = {}
@@ -11,5 +11,5 @@ OpenAPI Generator version: 3.3.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module FormAPI
14
- VERSION = '1.5.0'
14
+ VERSION = '1.6.0'
15
15
  end
@@ -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://app.formapi.io/api/v1")
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://app.formapi.io/api/v1")
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://app.formapi.io/api/v1")
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.5.0
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-13 00:00:00.000000000 Z
11
+ date: 2018-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus