dropbox-sign 1.13.0 → 1.14.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/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/VERSION +1 -1
- data/docs/TemplateResponseDocumentFormFieldDropdown.md +1 -0
- data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +18 -5
- data/lib/dropbox-sign/version.rb +1 -1
- data/openapi-config.yaml +1 -1
- data/openapi-sdk.yaml +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f9c82135d14ebed022ffbf2c5c97da90e03b45182bbf9f9aa8af5ce647fa066
|
|
4
|
+
data.tar.gz: 41ff5d35a8f10c21c77130429297857d679a0711700301d7b3632280e6163a51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69642272372050900aeb9421cd424341f4cd2496d58b144355ef01aac023eb047471790382b8f3f291984f1f2bd817f15c6dc67b2d153388e3dbff159c28e6e1
|
|
7
|
+
data.tar.gz: dbc743ceb70dd1f85329363d6a5401ed0739138257bbc524af8a3abc23995d144087dd5779a23485e2260fce637ad9acd4c2da0ba32de000112555abadc8fae0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -25,7 +25,7 @@ directory that corresponds to the file you want updated.
|
|
|
25
25
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
26
26
|
|
|
27
27
|
- API version: 3.0.0
|
|
28
|
-
- Package version: 1.
|
|
28
|
+
- Package version: 1.14.0
|
|
29
29
|
- Generator version: 7.12.0
|
|
30
30
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
31
31
|
|
|
@@ -47,15 +47,15 @@ gem build dropbox-sign.gemspec
|
|
|
47
47
|
Then install the gem locally:
|
|
48
48
|
|
|
49
49
|
```shell
|
|
50
|
-
gem install ./dropbox-sign-1.
|
|
50
|
+
gem install ./dropbox-sign-1.14.0.gem
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
(for development, run `gem install --dev ./dropbox-sign-1.
|
|
53
|
+
(for development, run `gem install --dev ./dropbox-sign-1.14.0.gem` to install the development dependencies)
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
Finally add this to the Gemfile:
|
|
57
57
|
|
|
58
|
-
gem 'dropbox-sign', '~> 1.
|
|
58
|
+
gem 'dropbox-sign', '~> 1.14.0'
|
|
59
59
|
|
|
60
60
|
### Install from Git
|
|
61
61
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
|
@@ -8,4 +8,5 @@ This class extends `TemplateResponseDocumentFormFieldBase`
|
|
|
8
8
|
| ---- | ---- | ----------- | ----- |
|
|
9
9
|
| `type`<sup>*_required_</sup> | ```String``` | The type of this form field. See [field types](/api/reference/constants/#field-types).<br><br>* Text Field uses `TemplateResponseDocumentFormFieldText`<br>* Dropdown Field uses `TemplateResponseDocumentFormFieldDropdown`<br>* Hyperlink Field uses `TemplateResponseDocumentFormFieldHyperlink`<br>* Checkbox Field uses `TemplateResponseDocumentFormFieldCheckbox`<br>* Radio Field uses `TemplateResponseDocumentFormFieldRadio`<br>* Signature Field uses `TemplateResponseDocumentFormFieldSignature`<br>* Date Signed Field uses `TemplateResponseDocumentFormFieldDateSigned`<br>* Initials Field uses `TemplateResponseDocumentFormFieldInitials` | [default to 'dropdown'] |
|
|
10
10
|
| `group` | ```String``` | The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. | |
|
|
11
|
+
| `options` | ```Array<String>``` | The options available for this dropdown form field. | |
|
|
11
12
|
|
|
@@ -27,11 +27,16 @@ module Dropbox::Sign
|
|
|
27
27
|
# @return [String, nil]
|
|
28
28
|
attr_accessor :group
|
|
29
29
|
|
|
30
|
+
# The options available for this dropdown form field.
|
|
31
|
+
# @return [Array<String>]
|
|
32
|
+
attr_accessor :options
|
|
33
|
+
|
|
30
34
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
31
35
|
def self.attribute_map
|
|
32
36
|
{
|
|
33
37
|
:'type' => :'type',
|
|
34
|
-
:'group' => :'group'
|
|
38
|
+
:'group' => :'group',
|
|
39
|
+
:'options' => :'options'
|
|
35
40
|
}
|
|
36
41
|
end
|
|
37
42
|
|
|
@@ -49,14 +54,15 @@ module Dropbox::Sign
|
|
|
49
54
|
def self.openapi_types
|
|
50
55
|
{
|
|
51
56
|
:'type' => :'String',
|
|
52
|
-
:'group' => :'String'
|
|
57
|
+
:'group' => :'String',
|
|
58
|
+
:'options' => :'Array<String>'
|
|
53
59
|
}
|
|
54
60
|
end
|
|
55
61
|
|
|
56
62
|
# List of attributes with nullable: true
|
|
57
63
|
def self.openapi_nullable
|
|
58
64
|
Set.new([
|
|
59
|
-
:'group'
|
|
65
|
+
:'group',
|
|
60
66
|
])
|
|
61
67
|
end
|
|
62
68
|
|
|
@@ -113,6 +119,12 @@ module Dropbox::Sign
|
|
|
113
119
|
if attributes.key?(:'group')
|
|
114
120
|
self.group = attributes[:'group']
|
|
115
121
|
end
|
|
122
|
+
|
|
123
|
+
if attributes.key?(:'options')
|
|
124
|
+
if (value = attributes[:'options']).is_a?(Array)
|
|
125
|
+
self.options = value
|
|
126
|
+
end
|
|
127
|
+
end
|
|
116
128
|
end
|
|
117
129
|
|
|
118
130
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -149,7 +161,8 @@ module Dropbox::Sign
|
|
|
149
161
|
return true if self.equal?(o)
|
|
150
162
|
self.class == o.class &&
|
|
151
163
|
type == o.type &&
|
|
152
|
-
group == o.group &&
|
|
164
|
+
group == o.group &&
|
|
165
|
+
options == o.options && super(o)
|
|
153
166
|
end
|
|
154
167
|
|
|
155
168
|
# @see the `==` method
|
|
@@ -161,7 +174,7 @@ module Dropbox::Sign
|
|
|
161
174
|
# Calculates hash code according to all attributes.
|
|
162
175
|
# @return [Integer] Hash code
|
|
163
176
|
def hash
|
|
164
|
-
[type, group].hash
|
|
177
|
+
[type, group, options].hash
|
|
165
178
|
end
|
|
166
179
|
|
|
167
180
|
# Builds the object from hash
|
data/lib/dropbox-sign/version.rb
CHANGED
data/openapi-config.yaml
CHANGED
data/openapi-sdk.yaml
CHANGED
|
@@ -13106,6 +13106,11 @@ components:
|
|
|
13106
13106
|
description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
|
|
13107
13107
|
type: string
|
|
13108
13108
|
nullable: true
|
|
13109
|
+
options:
|
|
13110
|
+
description: 'The options available for this dropdown form field.'
|
|
13111
|
+
type: array
|
|
13112
|
+
items:
|
|
13113
|
+
type: string
|
|
13109
13114
|
type: object
|
|
13110
13115
|
TemplateResponseDocumentFormFieldHyperlink:
|
|
13111
13116
|
description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
|