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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea4ecf9fb3d300643f30d4b2cc2c35ac70ae8652fc2f83c90f39383c5afa906d
4
- data.tar.gz: 7e8d7a9ae5372bbaed197d1d60d617d74e2870cd3cd5a24ca2f7bdf116329e25
3
+ metadata.gz: 7f9c82135d14ebed022ffbf2c5c97da90e03b45182bbf9f9aa8af5ce647fa066
4
+ data.tar.gz: 41ff5d35a8f10c21c77130429297857d679a0711700301d7b3632280e6163a51
5
5
  SHA512:
6
- metadata.gz: 7dcfdc3dac2c3cd7d9073eba3f801a0f7ee6d21785ba6def260dda8da5c3c2654d272a82645a27967522e08bfcd000839c222c8f62dffa3180a9c12589d9988e
7
- data.tar.gz: c1e7fcb871098b27c3360fb5b0827fb3661ea4bfbab55ef1a4850d5de563bc6f95b36dbc7d65e12a08d9e8fead8a1107753d4d535d19642deb02088e673305c8
6
+ metadata.gz: 69642272372050900aeb9421cd424341f4cd2496d58b144355ef01aac023eb047471790382b8f3f291984f1f2bd817f15c6dc67b2d153388e3dbff159c28e6e1
7
+ data.tar.gz: dbc743ceb70dd1f85329363d6a5401ed0739138257bbc524af8a3abc23995d144087dd5779a23485e2260fce637ad9acd4c2da0ba32de000112555abadc8fae0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dropbox-sign (1.13.0)
4
+ dropbox-sign (1.14.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
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.13.0
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.13.0.gem
50
+ gem install ./dropbox-sign-1.14.0.gem
51
51
  ```
52
52
 
53
- (for development, run `gem install --dev ./dropbox-sign-1.13.0.gem` to install the development dependencies)
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.13.0'
58
+ gem 'dropbox-sign', '~> 1.14.0'
59
59
 
60
60
  ### Install from Git
61
61
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
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 && super(o)
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
@@ -14,5 +14,5 @@ module Dropbox
14
14
  end
15
15
 
16
16
  module Dropbox::Sign
17
- VERSION = '1.13.0'
17
+ VERSION = '1.14.0'
18
18
  end
data/openapi-config.yaml CHANGED
@@ -9,7 +9,7 @@ additionalProperties:
9
9
  gemName: dropbox-sign
10
10
  gemRequiredRubyVersion: '>= 2.7'
11
11
  moduleName: "Dropbox::Sign"
12
- gemVersion: 1.13.0
12
+ gemVersion: 1.14.0
13
13
  sortModelPropertiesByRequiredFlag: true
14
14
  legacyDiscriminatorBehavior: true
15
15
  gitUserId: hellosign
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`'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dropbox-sign
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dropbox