docusign_esign 2.5.0 → 2.6.0.rc1

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: 0f6d4ceffd8fc2d1da0ea6691149308ffe7f3fd4803ef78576bd68e312b8c40f
4
- data.tar.gz: e397c372ae55de3ceb5c33d28eb372309ed294ed9f28c36d60e6657f7dce23ce
3
+ metadata.gz: e4cd8848dc704aa9d42a8543f4c23b2ee73dfed75b75072b7a3da27dc392fe4f
4
+ data.tar.gz: 98d94d722a369d25717051e38cde9f9b60d3a8f63577e62a7092ccd254409299
5
5
  SHA512:
6
- metadata.gz: 06720f2923d5ea4ebec5db463f2378bcc70659852d24f304765823e1320e77b4e158bd617e5b26baa6139d0b9b5de34240247f9c808a4417535aa308e9c14022
7
- data.tar.gz: 581a38b372a4f3f19e7369e49eb23d8a5bdbf00cb41a728886de87d1bcd50865207f394ab694e41e997df2d4c91a93f4df28d913ac6fddc7f7827fe1eab71199
6
+ metadata.gz: 5155fe4c2b2deb4545cbfeb0f106628f43b6607b5fb6cda1c11d74807749276444f8cd130480902f1ddeec3df6645d08a19819b79f5d7394de80a65ebd0bc4c3
7
+ data.tar.gz: 22e1a6ac360dc7fbd2e4cfa40e581dd58138034d086bb82c2b98d734801b8c3e185f457fb5e5f760eaed0ac4a6444eb7621c4e3d81a1d89dc619abe67219aaa9
@@ -0,0 +1,73 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ docusign_esign (3.4.0)
5
+ json (~> 2.1, >= 2.1.0)
6
+ jwt (~> 2.2, >= 2.2.1)
7
+ typhoeus (~> 1.0, >= 1.0.1)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ ZenTest (4.12.0)
13
+ addressable (2.7.0)
14
+ public_suffix (>= 2.0.2, < 5.0)
15
+ autotest (4.4.6)
16
+ ZenTest (>= 4.4.1)
17
+ autotest-fsevent (0.2.17)
18
+ sys-uname
19
+ autotest-growl (0.2.16)
20
+ autotest-rails-pure (4.1.2)
21
+ crack (0.4.3)
22
+ safe_yaml (~> 1.0.0)
23
+ diff-lcs (1.4.4)
24
+ ethon (0.12.0)
25
+ ffi (>= 1.3.0)
26
+ ffi (1.13.1)
27
+ hashdiff (1.0.1)
28
+ json (2.3.1)
29
+ jwt (2.2.1)
30
+ public_suffix (4.0.5)
31
+ rake (12.3.3)
32
+ rspec (3.9.0)
33
+ rspec-core (~> 3.9.0)
34
+ rspec-expectations (~> 3.9.0)
35
+ rspec-mocks (~> 3.9.0)
36
+ rspec-core (3.9.2)
37
+ rspec-support (~> 3.9.3)
38
+ rspec-expectations (3.9.2)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.9.0)
41
+ rspec-mocks (3.9.1)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.9.0)
44
+ rspec-support (3.9.3)
45
+ safe_yaml (1.0.5)
46
+ sys-uname (1.2.1)
47
+ ffi (>= 1.0.0)
48
+ typhoeus (1.4.0)
49
+ ethon (>= 0.9.0)
50
+ vcr (3.0.3)
51
+ webmock (1.24.6)
52
+ addressable (>= 2.3.6)
53
+ crack (>= 0.3.2)
54
+ hashdiff
55
+
56
+ PLATFORMS
57
+ ruby
58
+
59
+ DEPENDENCIES
60
+ autotest (~> 4.4, >= 4.4.6)
61
+ autotest-fsevent (~> 0.2, >= 0.2.11)
62
+ autotest-growl (~> 0.2, >= 0.2.16)
63
+ autotest-rails-pure (~> 4.1, >= 4.1.2)
64
+ docusign_esign!
65
+ rake (~> 12.3.3)
66
+ rspec (~> 3.4, >= 3.4.0)
67
+ rspec-expectations (~> 3.8, >= 3.8.0)
68
+ rspec-mocks (~> 3.8, >= 3.8.0)
69
+ vcr (~> 3.0, >= 3.0.1)
70
+ webmock (~> 1.24, >= 1.24.3)
71
+
72
+ BUNDLED WITH
73
+ 1.17.2
@@ -45,9 +45,6 @@ module DocuSign_eSign
45
45
  # The number of results to return. This can be 1 to 20.
46
46
  attr_accessor :count
47
47
 
48
- #
49
- attr_accessor :include
50
-
51
48
  # The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
52
49
  attr_accessor :start_position
53
50
 
@@ -267,7 +264,6 @@ module DocuSign_eSign
267
264
  # query parameters
268
265
  query_params = {}
269
266
  query_params[:'count'] = options.count if !options.count.nil?
270
- query_params[:'include'] = options.include if !options.include.nil?
271
267
  query_params[:'start_position'] = options.start_position if !options.start_position.nil?
272
268
 
273
269
  # header parameters
@@ -25,6 +25,9 @@ module DocuSign_eSign
25
25
 
26
26
  attr_accessor :error_details
27
27
 
28
+ #
29
+ attr_accessor :membership_id
30
+
28
31
  #
29
32
  attr_accessor :permission_profile_id
30
33
 
@@ -50,6 +53,7 @@ module DocuSign_eSign
50
53
  :'created_date_time' => :'createdDateTime',
51
54
  :'email' => :'email',
52
55
  :'error_details' => :'errorDetails',
56
+ :'membership_id' => :'membershipId',
53
57
  :'permission_profile_id' => :'permissionProfileId',
54
58
  :'permission_profile_name' => :'permissionProfileName',
55
59
  :'uri' => :'uri',
@@ -66,6 +70,7 @@ module DocuSign_eSign
66
70
  :'created_date_time' => :'String',
67
71
  :'email' => :'String',
68
72
  :'error_details' => :'ErrorDetails',
73
+ :'membership_id' => :'String',
69
74
  :'permission_profile_id' => :'String',
70
75
  :'permission_profile_name' => :'String',
71
76
  :'uri' => :'String',
@@ -99,6 +104,10 @@ module DocuSign_eSign
99
104
  self.error_details = attributes[:'errorDetails']
100
105
  end
101
106
 
107
+ if attributes.has_key?(:'membershipId')
108
+ self.membership_id = attributes[:'membershipId']
109
+ end
110
+
102
111
  if attributes.has_key?(:'permissionProfileId')
103
112
  self.permission_profile_id = attributes[:'permissionProfileId']
104
113
  end
@@ -146,6 +155,7 @@ module DocuSign_eSign
146
155
  created_date_time == o.created_date_time &&
147
156
  email == o.email &&
148
157
  error_details == o.error_details &&
158
+ membership_id == o.membership_id &&
149
159
  permission_profile_id == o.permission_profile_id &&
150
160
  permission_profile_name == o.permission_profile_name &&
151
161
  uri == o.uri &&
@@ -163,7 +173,7 @@ module DocuSign_eSign
163
173
  # Calculates hash code according to all attributes.
164
174
  # @return [Fixnum] Hash code
165
175
  def hash
166
- [api_password, created_date_time, email, error_details, permission_profile_id, permission_profile_name, uri, user_id, user_name, user_status].hash
176
+ [api_password, created_date_time, email, error_details, membership_id, permission_profile_id, permission_profile_name, uri, user_id, user_name, user_status].hash
167
177
  end
168
178
 
169
179
  # Builds the object from hash
@@ -32,6 +32,9 @@ module DocuSign_eSign
32
32
  # When set to **true**, the user receives notification if the offline signing failed.
33
33
  attr_accessor :offline_signing_failed
34
34
 
35
+ #
36
+ attr_accessor :powerform_responses_limit_notification_email
37
+
35
38
  # When set to **true**, the sender receives notification that the recipient viewed the enveloper.
36
39
  attr_accessor :recipient_viewed
37
40
 
@@ -50,6 +53,7 @@ module DocuSign_eSign
50
53
  :'delivery_failed' => :'deliveryFailed',
51
54
  :'envelope_complete' => :'envelopeComplete',
52
55
  :'offline_signing_failed' => :'offlineSigningFailed',
56
+ :'powerform_responses_limit_notification_email' => :'powerformResponsesLimitNotificationEmail',
53
57
  :'recipient_viewed' => :'recipientViewed',
54
58
  :'sender_envelope_declined' => :'senderEnvelopeDeclined',
55
59
  :'withdrawn_consent' => :'withdrawnConsent'
@@ -65,6 +69,7 @@ module DocuSign_eSign
65
69
  :'delivery_failed' => :'String',
66
70
  :'envelope_complete' => :'String',
67
71
  :'offline_signing_failed' => :'String',
72
+ :'powerform_responses_limit_notification_email' => :'String',
68
73
  :'recipient_viewed' => :'String',
69
74
  :'sender_envelope_declined' => :'String',
70
75
  :'withdrawn_consent' => :'String'
@@ -103,6 +108,10 @@ module DocuSign_eSign
103
108
  self.offline_signing_failed = attributes[:'offlineSigningFailed']
104
109
  end
105
110
 
111
+ if attributes.has_key?(:'powerformResponsesLimitNotificationEmail')
112
+ self.powerform_responses_limit_notification_email = attributes[:'powerformResponsesLimitNotificationEmail']
113
+ end
114
+
106
115
  if attributes.has_key?(:'recipientViewed')
107
116
  self.recipient_viewed = attributes[:'recipientViewed']
108
117
  end
@@ -140,6 +149,7 @@ module DocuSign_eSign
140
149
  delivery_failed == o.delivery_failed &&
141
150
  envelope_complete == o.envelope_complete &&
142
151
  offline_signing_failed == o.offline_signing_failed &&
152
+ powerform_responses_limit_notification_email == o.powerform_responses_limit_notification_email &&
143
153
  recipient_viewed == o.recipient_viewed &&
144
154
  sender_envelope_declined == o.sender_envelope_declined &&
145
155
  withdrawn_consent == o.withdrawn_consent
@@ -154,7 +164,7 @@ module DocuSign_eSign
154
164
  # Calculates hash code according to all attributes.
155
165
  # @return [Fixnum] Hash code
156
166
  def hash
157
- [changed_signer, comments_only_private_and_mention, comments_receive_all, delivery_failed, envelope_complete, offline_signing_failed, recipient_viewed, sender_envelope_declined, withdrawn_consent].hash
167
+ [changed_signer, comments_only_private_and_mention, comments_receive_all, delivery_failed, envelope_complete, offline_signing_failed, powerform_responses_limit_notification_email, recipient_viewed, sender_envelope_declined, withdrawn_consent].hash
158
168
  end
159
169
 
160
170
  # Builds the object from hash
@@ -115,9 +115,15 @@ module DocuSign_eSign
115
115
  #
116
116
  attr_accessor :payment_item_name
117
117
 
118
+ # When set to **true** and shared is true, information must be entered in this field to complete the envelope.
119
+ attr_accessor :require_all
120
+
118
121
  # When set to **true**, the signer is required to fill out this tab
119
122
  attr_accessor :required
120
123
 
124
+ # Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.
125
+ attr_accessor :require_initial_on_shared_change
126
+
121
127
  #
122
128
  attr_accessor :scale_value
123
129
 
@@ -187,7 +193,9 @@ module DocuSign_eSign
187
193
  :'payment_item_code' => :'paymentItemCode',
188
194
  :'payment_item_description' => :'paymentItemDescription',
189
195
  :'payment_item_name' => :'paymentItemName',
196
+ :'require_all' => :'requireAll',
190
197
  :'required' => :'required',
198
+ :'require_initial_on_shared_change' => :'requireInitialOnSharedChange',
191
199
  :'scale_value' => :'scaleValue',
192
200
  :'selected' => :'selected',
193
201
  :'shared' => :'shared',
@@ -239,7 +247,9 @@ module DocuSign_eSign
239
247
  :'payment_item_code' => :'String',
240
248
  :'payment_item_description' => :'String',
241
249
  :'payment_item_name' => :'String',
250
+ :'require_all' => :'String',
242
251
  :'required' => :'String',
252
+ :'require_initial_on_shared_change' => :'String',
243
253
  :'scale_value' => :'String',
244
254
  :'selected' => :'String',
245
255
  :'shared' => :'String',
@@ -400,10 +410,18 @@ module DocuSign_eSign
400
410
  self.payment_item_name = attributes[:'paymentItemName']
401
411
  end
402
412
 
413
+ if attributes.has_key?(:'requireAll')
414
+ self.require_all = attributes[:'requireAll']
415
+ end
416
+
403
417
  if attributes.has_key?(:'required')
404
418
  self.required = attributes[:'required']
405
419
  end
406
420
 
421
+ if attributes.has_key?(:'requireInitialOnSharedChange')
422
+ self.require_initial_on_shared_change = attributes[:'requireInitialOnSharedChange']
423
+ end
424
+
407
425
  if attributes.has_key?(:'scaleValue')
408
426
  self.scale_value = attributes[:'scaleValue']
409
427
  end
@@ -501,7 +519,9 @@ module DocuSign_eSign
501
519
  payment_item_code == o.payment_item_code &&
502
520
  payment_item_description == o.payment_item_description &&
503
521
  payment_item_name == o.payment_item_name &&
522
+ require_all == o.require_all &&
504
523
  required == o.required &&
524
+ require_initial_on_shared_change == o.require_initial_on_shared_change &&
505
525
  scale_value == o.scale_value &&
506
526
  selected == o.selected &&
507
527
  shared == o.shared &&
@@ -524,7 +544,7 @@ module DocuSign_eSign
524
544
  # Calculates hash code according to all attributes.
525
545
  # @return [Fixnum] Hash code
526
546
  def hash
527
- [anchor, anchor_case_sensitive, anchor_horizontal_alignment, anchor_ignore_if_not_present, anchor_match_whole_word, anchor_units, anchor_x_offset, anchor_y_offset, bold, collaborative, conceal_value_on_document, created_by_display_name, created_by_user_id, custom_tab_id, disable_auto_size, editable, font, font_color, font_size, height, included_in_email, initial_value, italic, items, last_modified, last_modified_by_display_name, last_modified_by_user_id, locked, maximum_length, merge_field, name, payment_item_code, payment_item_description, payment_item_name, required, scale_value, selected, shared, stamp_type, stamp_type_metadata, tab_label, type, underline, validation_message, validation_pattern, width].hash
547
+ [anchor, anchor_case_sensitive, anchor_horizontal_alignment, anchor_ignore_if_not_present, anchor_match_whole_word, anchor_units, anchor_x_offset, anchor_y_offset, bold, collaborative, conceal_value_on_document, created_by_display_name, created_by_user_id, custom_tab_id, disable_auto_size, editable, font, font_color, font_size, height, included_in_email, initial_value, italic, items, last_modified, last_modified_by_display_name, last_modified_by_user_id, locked, maximum_length, merge_field, name, payment_item_code, payment_item_description, payment_item_name, require_all, required, require_initial_on_shared_change, scale_value, selected, shared, stamp_type, stamp_type_metadata, tab_label, type, underline, validation_message, validation_pattern, width].hash
528
548
  end
529
549
 
530
550
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.13-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module DocuSign_eSign
14
- VERSION = '2.5.0'
14
+ VERSION = '2.6.0.rc1'
15
15
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- docusign_esign (3.4.0.rc1)
4
+ docusign_esign (3.4.0)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  jwt (~> 2.2, >= 2.2.1)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
@@ -9,11 +9,11 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- diff-lcs (1.4.3)
12
+ diff-lcs (1.4.4)
13
13
  ethon (0.12.0)
14
14
  ffi (>= 1.3.0)
15
15
  ffi (1.13.1)
16
- json (2.3.0)
16
+ json (2.3.1)
17
17
  jwt (2.2.1)
18
18
  rspec (3.9.0)
19
19
  rspec-core (~> 3.9.0)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docusign_esign
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.6.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - DocuSign
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-09 00:00:00.000000000 Z
11
+ date: 2020-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -261,16 +261,15 @@ extra_rdoc_files: []
261
261
  files:
262
262
  - CHANGELOG.md
263
263
  - Gemfile
264
+ - Gemfile.lock
264
265
  - LICENSE
265
266
  - README.md
266
267
  - Rakefile
267
- - docusign_esign-2.4.0.gem
268
- - docusign_esign-2.5.0.rc1.gem
269
- - docusign_esign-3.4.0.gem
270
- - docusign_esign-3.4.0.rc1.gem
271
268
  - docusign_esign.gemspec
272
269
  - git_push.sh
273
270
  - lib/docusign_esign.rb
271
+ - lib/docusign_esign/.DS_Store
272
+ - lib/docusign_esign/api/.DS_Store
274
273
  - lib/docusign_esign/api/accounts_api.rb
275
274
  - lib/docusign_esign/api/authentication_api.rb
276
275
  - lib/docusign_esign/api/billing_api.rb
@@ -292,6 +291,7 @@ files:
292
291
  - lib/docusign_esign/api/tsps_api.rb
293
292
  - lib/docusign_esign/api/users_api.rb
294
293
  - lib/docusign_esign/api/workspaces_api.rb
294
+ - lib/docusign_esign/client/.DS_Store
295
295
  - lib/docusign_esign/client/api_client.rb
296
296
  - lib/docusign_esign/client/api_error.rb
297
297
  - lib/docusign_esign/client/auth/oauth.rb
@@ -685,9 +685,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
685
685
  version: '1.9'
686
686
  required_rubygems_version: !ruby/object:Gem::Requirement
687
687
  requirements:
688
- - - ">="
688
+ - - ">"
689
689
  - !ruby/object:Gem::Version
690
- version: '0'
690
+ version: 1.3.1
691
691
  requirements: []
692
692
  rubygems_version: 3.0.3
693
693
  signing_key:
Binary file
Binary file
Binary file
Binary file