yousign_client 1.0.2 → 1.0.3
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/README.md +4 -4
- data/config.json +1 -1
- data/docs/ProcedureOutput.md +1 -0
- data/lib/yousign_client/models/procedure_output.rb +11 -1
- data/lib/yousign_client/version.rb +1 -1
- data/yousign_client-1.0.2.gem +0 -0
- data/yousign_openapi.json +5 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4dce3e4d9621bbe031ce77440986a1367468c8c57c6e24933cab187f07aa72d
|
|
4
|
+
data.tar.gz: 1554b3fcebc40f12a5424554b4959a5bcc6dd00f62093053824dc06e19cd9c4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ea6713fd6e9228f954dcf94b3375cdf796fc512a3fa3e448091e324bf1aac90b9e9904fa1a5d15fdfa8eaf6966a458d24e768bed4b7c7d078d76b7e40264b28
|
|
7
|
+
data.tar.gz: 024d00587dfccdfd954f0134463bdabcc0a9b18b53bc9633443a21aea35240eb99a445d851b2130063a66ed69bd3133ec947a4aa930f7c1c5db62b162755d22d
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ For your information, the Yousign API documentation is available at https://dev.
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.1
|
|
10
|
-
- Package version: 1.0.
|
|
10
|
+
- Package version: 1.0.3
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,15 +23,15 @@ gem build yousign_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./yousign_client-1.0.
|
|
26
|
+
gem install ./yousign_client-1.0.3.gem
|
|
27
27
|
```
|
|
28
|
-
(for development, run `gem install --dev ./yousign_client-1.0.
|
|
28
|
+
(for development, run `gem install --dev ./yousign_client-1.0.3.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 'yousign_client', '~> 1.0.
|
|
34
|
+
gem 'yousign_client', '~> 1.0.3'
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
|
37
37
|
|
data/config.json
CHANGED
data/docs/ProcedureOutput.md
CHANGED
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**description** | **String** | Description of procedure | [optional]
|
|
9
9
|
**created_at** | **DateTime** | Created date of the object | [optional]
|
|
10
10
|
**updated_at** | **DateTime** | Updated date of the object | [optional]
|
|
11
|
+
**finished_at** | **DateTime** | Finished date of the object | [optional]
|
|
11
12
|
**expires_at** | **DateTime** | Expiration date. The procedure will be out of usage after this date. | [optional]
|
|
12
13
|
**status** | **String** | Status of the procedure | [optional]
|
|
13
14
|
**creator** | **String** | Id of creator of the object | [optional]
|
|
@@ -29,6 +29,9 @@ module YousignClient
|
|
|
29
29
|
# Updated date of the object
|
|
30
30
|
attr_accessor :updated_at
|
|
31
31
|
|
|
32
|
+
# Finished date of the object
|
|
33
|
+
attr_accessor :finished_at
|
|
34
|
+
|
|
32
35
|
# Expiration date. The procedure will be out of usage after this date.
|
|
33
36
|
attr_accessor :expires_at
|
|
34
37
|
|
|
@@ -101,6 +104,7 @@ module YousignClient
|
|
|
101
104
|
:'description' => :'description',
|
|
102
105
|
:'created_at' => :'createdAt',
|
|
103
106
|
:'updated_at' => :'updatedAt',
|
|
107
|
+
:'finished_at' => :'finishedAt',
|
|
104
108
|
:'expires_at' => :'expiresAt',
|
|
105
109
|
:'status' => :'status',
|
|
106
110
|
:'creator' => :'creator',
|
|
@@ -127,6 +131,7 @@ module YousignClient
|
|
|
127
131
|
:'description' => :'String',
|
|
128
132
|
:'created_at' => :'DateTime',
|
|
129
133
|
:'updated_at' => :'DateTime',
|
|
134
|
+
:'finished_at' => :'DateTime',
|
|
130
135
|
:'expires_at' => :'DateTime',
|
|
131
136
|
:'status' => :'String',
|
|
132
137
|
:'creator' => :'String',
|
|
@@ -173,6 +178,10 @@ module YousignClient
|
|
|
173
178
|
self.updated_at = attributes[:'updatedAt']
|
|
174
179
|
end
|
|
175
180
|
|
|
181
|
+
if attributes.has_key?(:'finishedAt')
|
|
182
|
+
self.finished_at = attributes[:'finishedAt']
|
|
183
|
+
end
|
|
184
|
+
|
|
176
185
|
if attributes.has_key?(:'expiresAt')
|
|
177
186
|
self.expires_at = attributes[:'expiresAt']
|
|
178
187
|
end
|
|
@@ -275,6 +284,7 @@ module YousignClient
|
|
|
275
284
|
description == o.description &&
|
|
276
285
|
created_at == o.created_at &&
|
|
277
286
|
updated_at == o.updated_at &&
|
|
287
|
+
finished_at == o.finished_at &&
|
|
278
288
|
expires_at == o.expires_at &&
|
|
279
289
|
status == o.status &&
|
|
280
290
|
creator == o.creator &&
|
|
@@ -301,7 +311,7 @@ module YousignClient
|
|
|
301
311
|
# Calculates hash code according to all attributes.
|
|
302
312
|
# @return [Fixnum] Hash code
|
|
303
313
|
def hash
|
|
304
|
-
[id, name, description, created_at, updated_at, expires_at, status, creator, creator_first_name, creator_last_name, workspace, template, ordered, parent, metadata, config, members, files, related_files_enable, archive].hash
|
|
314
|
+
[id, name, description, created_at, updated_at, finished_at, expires_at, status, creator, creator_first_name, creator_last_name, workspace, template, ordered, parent, metadata, config, members, files, related_files_enable, archive].hash
|
|
305
315
|
end
|
|
306
316
|
|
|
307
317
|
# Builds the object from hash
|
|
Binary file
|
data/yousign_openapi.json
CHANGED
|
@@ -2833,6 +2833,11 @@
|
|
|
2833
2833
|
"format" : "date-time",
|
|
2834
2834
|
"description" : "Updated date of the object"
|
|
2835
2835
|
},
|
|
2836
|
+
"finishedAt" : {
|
|
2837
|
+
"type" : "string",
|
|
2838
|
+
"format" : "date-time",
|
|
2839
|
+
"description" : "Finished date of the object"
|
|
2840
|
+
},
|
|
2836
2841
|
"expiresAt" : {
|
|
2837
2842
|
"type" : "string",
|
|
2838
2843
|
"format" : "date-time",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yousign_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Burgaud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -475,6 +475,7 @@ files:
|
|
|
475
475
|
- spec/models/workspace_output_spec.rb
|
|
476
476
|
- spec/spec_helper.rb
|
|
477
477
|
- update_client.sh
|
|
478
|
+
- yousign_client-1.0.2.gem
|
|
478
479
|
- yousign_client.gemspec
|
|
479
480
|
- yousign_openapi.json
|
|
480
481
|
homepage: https://github.com/cashbee-team/yousign_client
|