docusign_esign 2.6.0 → 2.7.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: a3d79ac5dc47233c97614cdcdf7bbba84a280b6df3b717b3750e5b559e3ee12c
4
- data.tar.gz: 4575bf761ce9730c2b49dcd778c1de3d6c33c0c562b12a0299f1d039a647fce8
3
+ metadata.gz: 9ab778204dee3c6409f5c34b05467da9fe4a0bfe99b11288cc18fd300329c6f4
4
+ data.tar.gz: e68efb1f52d2f2393e97bdc28f82ba2a945cef76ca35209c68b7e0b66de0cc7e
5
5
  SHA512:
6
- metadata.gz: 7ef3ad859dd69d93cc6927f46922f2a86db7efb0922f1ebc74871ad93b03b190df2830a1872aa9781cfa47ad7a058e62b3476aa1238cd141caa6ba80fcb3cec6
7
- data.tar.gz: 1c33531641c13b2d3d4ba85a30744857c4083e8bacfb4daac379b5d525909e21a99428b844954bce203e2ba5da24ba2e4c725eb7f776abd48a1719f16e106d6a
6
+ metadata.gz: 9937fe20b519603b1667e0322d8ff7a1939f2c9bca42ed362b024e5b5d1d695b430c1b10d4c22b1b636539f18df085808f6011419a53aa0b1836280078eeebcd
7
+ data.tar.gz: cff98b151582ed0d6d9ee81c639e8ac90b4ecb1fc502e3809bc6433aa96530705a622c1a42ef9a862a9872f05961ea6597970f4729600ad06a953771ffca27a5
Binary file
@@ -1788,6 +1788,60 @@ module DocuSign_eSign
1788
1788
  return data, status_code, headers
1789
1789
  end
1790
1790
 
1791
+ # Revokes the correction view URL to the Envelope UI
1792
+ #
1793
+ # @param account_id The external account number (int) or account ID Guid.
1794
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
1795
+ # @param correct_view_request (optional parameter)
1796
+ # @return [nil]
1797
+ def delete_envelope_correct_view(account_id, envelope_id, correct_view_request)
1798
+ delete_envelope_correct_view_with_http_info(account_id, envelope_id, correct_view_request)
1799
+ return nil
1800
+ end
1801
+
1802
+ # Revokes the correction view URL to the Envelope UI
1803
+ #
1804
+ # @param account_id The external account number (int) or account ID Guid.
1805
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
1806
+ # @param correct_view_request (optional parameter)
1807
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
1808
+ def delete_envelope_correct_view_with_http_info(account_id, envelope_id, correct_view_request)
1809
+ if @api_client.config.debugging
1810
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.delete_envelope_correct_view ..."
1811
+ end
1812
+ # verify the required parameter 'account_id' is set
1813
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.delete_envelope_correct_view" if account_id.nil?
1814
+ # verify the required parameter 'envelope_id' is set
1815
+ fail ArgumentError, "Missing the required parameter 'envelope_id' when calling EnvelopesApi.delete_envelope_correct_view" if envelope_id.nil?
1816
+ # resource path
1817
+ local_var_path = "/v2/accounts/{accountId}/envelopes/{envelopeId}/views/correct".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s)
1818
+
1819
+ # query parameters
1820
+ query_params = {}
1821
+
1822
+ # header parameters
1823
+ header_params = {}
1824
+ # HTTP header 'Accept' (if needed)
1825
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1826
+
1827
+ # form parameters
1828
+ form_params = {}
1829
+
1830
+ # http body (model)
1831
+ post_body = @api_client.object_to_http_body(correct_view_request)
1832
+ auth_names = []
1833
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
1834
+ :header_params => header_params,
1835
+ :query_params => query_params,
1836
+ :form_params => form_params,
1837
+ :body => post_body,
1838
+ :auth_names => auth_names)
1839
+ if @api_client.config.debugging
1840
+ @api_client.config.logger.debug "API called: EnvelopesApi#delete_envelope_correct_view\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1841
+ end
1842
+ return data, status_code, headers
1843
+ end
1844
+
1791
1845
  # Deletes an envelope lock.
1792
1846
  # Deletes the lock from the specified envelope. The `X-DocuSign-Edit` header must be included in the request.
1793
1847
  # @param account_id The external account number (int) or account ID Guid.
@@ -20,11 +20,15 @@ module DocuSign_eSign
20
20
  # Specifies whether the window is displayed with or without dressing.
21
21
  attr_accessor :suppress_navigation
22
22
 
23
+ #
24
+ attr_accessor :view_url
25
+
23
26
  # Attribute mapping from ruby-style variable name to JSON key.
24
27
  def self.attribute_map
25
28
  {
26
29
  :'return_url' => :'returnUrl',
27
- :'suppress_navigation' => :'suppressNavigation'
30
+ :'suppress_navigation' => :'suppressNavigation',
31
+ :'view_url' => :'viewUrl'
28
32
  }
29
33
  end
30
34
 
@@ -32,7 +36,8 @@ module DocuSign_eSign
32
36
  def self.swagger_types
33
37
  {
34
38
  :'return_url' => :'String',
35
- :'suppress_navigation' => :'String'
39
+ :'suppress_navigation' => :'String',
40
+ :'view_url' => :'String'
36
41
  }
37
42
  end
38
43
 
@@ -51,6 +56,10 @@ module DocuSign_eSign
51
56
  if attributes.has_key?(:'suppressNavigation')
52
57
  self.suppress_navigation = attributes[:'suppressNavigation']
53
58
  end
59
+
60
+ if attributes.has_key?(:'viewUrl')
61
+ self.view_url = attributes[:'viewUrl']
62
+ end
54
63
  end
55
64
 
56
65
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -72,7 +81,8 @@ module DocuSign_eSign
72
81
  return true if self.equal?(o)
73
82
  self.class == o.class &&
74
83
  return_url == o.return_url &&
75
- suppress_navigation == o.suppress_navigation
84
+ suppress_navigation == o.suppress_navigation &&
85
+ view_url == o.view_url
76
86
  end
77
87
 
78
88
  # @see the `==` method
@@ -84,7 +94,7 @@ module DocuSign_eSign
84
94
  # Calculates hash code according to all attributes.
85
95
  # @return [Fixnum] Hash code
86
96
  def hash
87
- [return_url, suppress_navigation].hash
97
+ [return_url, suppress_navigation, view_url].hash
88
98
  end
89
99
 
90
100
  # Builds the object from hash
@@ -29,6 +29,11 @@ module DocuSign_eSign
29
29
 
30
30
  attr_accessor :can_manage_admins_metadata
31
31
 
32
+ #
33
+ attr_accessor :can_manage_envelope_transfer
34
+
35
+ attr_accessor :can_manage_envelope_transfer_metadata
36
+
32
37
  #
33
38
  attr_accessor :can_manage_groups
34
39
 
@@ -68,6 +73,8 @@ module DocuSign_eSign
68
73
  :'can_manage_account_settings_metadata' => :'canManageAccountSettingsMetadata',
69
74
  :'can_manage_admins' => :'canManageAdmins',
70
75
  :'can_manage_admins_metadata' => :'canManageAdminsMetadata',
76
+ :'can_manage_envelope_transfer' => :'canManageEnvelopeTransfer',
77
+ :'can_manage_envelope_transfer_metadata' => :'canManageEnvelopeTransferMetadata',
71
78
  :'can_manage_groups' => :'canManageGroups',
72
79
  :'can_manage_groups_metadata' => :'canManageGroupsMetadata',
73
80
  :'can_manage_reporting' => :'canManageReporting',
@@ -92,6 +99,8 @@ module DocuSign_eSign
92
99
  :'can_manage_account_settings_metadata' => :'SettingsMetadata',
93
100
  :'can_manage_admins' => :'String',
94
101
  :'can_manage_admins_metadata' => :'SettingsMetadata',
102
+ :'can_manage_envelope_transfer' => :'String',
103
+ :'can_manage_envelope_transfer_metadata' => :'SettingsMetadata',
95
104
  :'can_manage_groups' => :'String',
96
105
  :'can_manage_groups_metadata' => :'SettingsMetadata',
97
106
  :'can_manage_reporting' => :'String',
@@ -139,6 +148,14 @@ module DocuSign_eSign
139
148
  self.can_manage_admins_metadata = attributes[:'canManageAdminsMetadata']
140
149
  end
141
150
 
151
+ if attributes.has_key?(:'canManageEnvelopeTransfer')
152
+ self.can_manage_envelope_transfer = attributes[:'canManageEnvelopeTransfer']
153
+ end
154
+
155
+ if attributes.has_key?(:'canManageEnvelopeTransferMetadata')
156
+ self.can_manage_envelope_transfer_metadata = attributes[:'canManageEnvelopeTransferMetadata']
157
+ end
158
+
142
159
  if attributes.has_key?(:'canManageGroups')
143
160
  self.can_manage_groups = attributes[:'canManageGroups']
144
161
  end
@@ -212,6 +229,8 @@ module DocuSign_eSign
212
229
  can_manage_account_settings_metadata == o.can_manage_account_settings_metadata &&
213
230
  can_manage_admins == o.can_manage_admins &&
214
231
  can_manage_admins_metadata == o.can_manage_admins_metadata &&
232
+ can_manage_envelope_transfer == o.can_manage_envelope_transfer &&
233
+ can_manage_envelope_transfer_metadata == o.can_manage_envelope_transfer_metadata &&
215
234
  can_manage_groups == o.can_manage_groups &&
216
235
  can_manage_groups_metadata == o.can_manage_groups_metadata &&
217
236
  can_manage_reporting == o.can_manage_reporting &&
@@ -235,7 +254,7 @@ module DocuSign_eSign
235
254
  # Calculates hash code according to all attributes.
236
255
  # @return [Fixnum] Hash code
237
256
  def hash
238
- [can_manage_account_security_settings, can_manage_account_security_settings_metadata, can_manage_account_settings, can_manage_account_settings_metadata, can_manage_admins, can_manage_admins_metadata, can_manage_groups, can_manage_groups_metadata, can_manage_reporting, can_manage_reporting_metadata, can_manage_sharing, can_manage_sharing_metadata, can_manage_signing_groups, can_manage_signing_groups_metadata, can_manage_users, can_manage_users_metadata, can_view_users, can_view_users_metadata].hash
257
+ [can_manage_account_security_settings, can_manage_account_security_settings_metadata, can_manage_account_settings, can_manage_account_settings_metadata, can_manage_admins, can_manage_admins_metadata, can_manage_envelope_transfer, can_manage_envelope_transfer_metadata, can_manage_groups, can_manage_groups_metadata, can_manage_reporting, can_manage_reporting_metadata, can_manage_sharing, can_manage_sharing_metadata, can_manage_signing_groups, can_manage_signing_groups_metadata, can_manage_users, can_manage_users_metadata, can_view_users, can_view_users_metadata].hash
239
258
  end
240
259
 
241
260
  # 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.6.0'
14
+ VERSION = '2.7.0.rc1'
15
15
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- docusign_esign (3.4.0)
4
+ docusign_esign (2.7.0.rc1)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  jwt (~> 2.2, >= 2.2.1)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
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.6.0
4
+ version: 2.7.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-08-21 00:00:00.000000000 Z
11
+ date: 2020-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -265,6 +265,7 @@ files:
265
265
  - LICENSE
266
266
  - README.md
267
267
  - Rakefile
268
+ - docusign_esign-2.6.0.gem
268
269
  - docusign_esign-2.6.0.rc1.gem
269
270
  - docusign_esign-3.5.0.gem
270
271
  - docusign_esign-3.5.0.rc1.gem
@@ -688,9 +689,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
688
689
  version: '1.9'
689
690
  required_rubygems_version: !ruby/object:Gem::Requirement
690
691
  requirements:
691
- - - ">="
692
+ - - ">"
692
693
  - !ruby/object:Gem::Version
693
- version: '0'
694
+ version: 1.3.1
694
695
  requirements: []
695
696
  rubygems_version: 3.0.3
696
697
  signing_key: