docusign_maestro 2.0.0.rc1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/docusign_maestro.gemspec +1 -1
- data/lib/docusign_maestro/client/api_client.rb +7 -7
- data/lib/docusign_maestro/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1f903f78987370d3660e291611452b4257670a25b0c36747dd77c3d1a3fc2b1
|
4
|
+
data.tar.gz: 9431cdc36e5a168fc5ae9ace6b7f779dc83b6feb2017643be4a09a26f46e9894
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17a8ba441b643242a83b587d33e5b8c1410c60d58fe17bffc66f114bd27f371cee018f155777aa045841879543f4561ee088c04659f807510c3766b43df407fb
|
7
|
+
data.tar.gz: 44eec7b1ed35fe838d32f7c14d52906c88d90cdbe406cf4293ba8e6bc5bae56fd09fe0e497c19996e6515d1e2887d686bca19f7d7b5c7248ac50ad306d14bdf6
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [v2.0.0] - Maestro API v1.0.0-1.0.5 - 2024-07-30
|
2
|
+
### Changed
|
3
|
+
- Added support for version v1.0.0-1.0.5 of the DocuSign Maestro API.
|
4
|
+
- Updated the SDK release version.
|
5
|
+
|
1
6
|
## [v2.0.0.rc1] - Maestro API v1.0.0-1.0.5 - 2024-06-07
|
2
7
|
### Changed
|
3
8
|
- Added support for version v1.0.0-1.0.5 of the DocuSign Maestro API.
|
data/README.md
CHANGED
@@ -30,7 +30,7 @@ This client SDK is provided as open source, which enables you to customize its f
|
|
30
30
|
<a id="versionInformation"></a>
|
31
31
|
### Version Information
|
32
32
|
- **API version**: 1.0.0
|
33
|
-
- **Latest SDK version**: 2.0.0
|
33
|
+
- **Latest SDK version**: 2.0.0
|
34
34
|
|
35
35
|
<a id="requirements"></a>
|
36
36
|
## Requirements
|
data/docusign_maestro.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.email = ["devcenter@docusign.com"]
|
23
23
|
s.homepage = "https://github.com/docusign/docusign-maestro-ruby-client"
|
24
24
|
s.summary = "Maestro API Ruby Gem"
|
25
|
-
s.description = "The
|
25
|
+
s.description = "The Docusign package makes integrating Docusign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-maestro-ruby-client repository."
|
26
26
|
s.license = "MIT"
|
27
27
|
s.required_ruby_version = ">= 1.9"
|
28
28
|
|
@@ -35,7 +35,7 @@ module DocuSign_Maestro
|
|
35
35
|
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
|
36
36
|
def initialize(config = Configuration.default)
|
37
37
|
@config = config
|
38
|
-
@user_agent = "Swagger-Codegen/1.0.0/2.0.0
|
38
|
+
@user_agent = "Swagger-Codegen/1.0.0/2.0.0/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
|
39
39
|
@default_headers = {
|
40
40
|
'Content-Type' => "application/json",
|
41
41
|
'User-Agent' => @user_agent
|
@@ -426,7 +426,7 @@ module DocuSign_Maestro
|
|
426
426
|
end
|
427
427
|
|
428
428
|
# Helper method to configure the OAuth accessCode/implicit flow parameters
|
429
|
-
# @param [String] client_id
|
429
|
+
# @param [String] client_id Docusign OAuth Client Id(AKA Integrator Key)
|
430
430
|
# @param scopes The list of requested scopes. Client applications may be scoped to a limited set of system access.
|
431
431
|
# @param [String] redirect_uri This determines where to deliver the response containing the authorization code
|
432
432
|
# @param [String] response_type Determines the response type of the authorization request, NOTE: these response types are mutually exclusive for a client application. A public/native client application may only request a response type
|
@@ -446,8 +446,8 @@ module DocuSign_Maestro
|
|
446
446
|
end
|
447
447
|
|
448
448
|
# Request JWT User Token
|
449
|
-
# @param [String] client_id
|
450
|
-
# @param [String] user_id
|
449
|
+
# @param [String] client_id Docusign OAuth Client Id(AKA Integrator Key)
|
450
|
+
# @param [String] user_id Docusign user Id to be impersonated
|
451
451
|
# @param [String] private_key_or_filename the RSA private key
|
452
452
|
# @param [Number] expires_in number of seconds remaining before the JWT assertion is considered as invalid
|
453
453
|
# @param scopes The list of requested scopes. Client applications may be scoped to a limited set of system access.
|
@@ -497,7 +497,7 @@ module DocuSign_Maestro
|
|
497
497
|
end
|
498
498
|
|
499
499
|
# Request JWT User Token
|
500
|
-
# @param [String] client_id
|
500
|
+
# @param [String] client_id Docusign OAuth Client Id(AKA Integrator Key)
|
501
501
|
# @param [String] private_key_or_filename the RSA private key
|
502
502
|
# @param [Number] expires_in number of seconds remaining before the JWT assertion is considered as invalid
|
503
503
|
# @param scopes The list of requested scopes. Client applications may be scoped to a limited set of system access.
|
@@ -559,8 +559,8 @@ module DocuSign_Maestro
|
|
559
559
|
end
|
560
560
|
|
561
561
|
# GenerateAccessToken will exchange the authorization code for an access token and refresh tokens.
|
562
|
-
# @param [String] client_id
|
563
|
-
# @param [String] client_secret The secret key you generated when you set up the integration in
|
562
|
+
# @param [String] client_id Docusign OAuth Client Id(AKA Integrator Key)
|
563
|
+
# @param [String] client_secret The secret key you generated when you set up the integration in Docusign Admin console.
|
564
564
|
# @param [String] code The authorization code
|
565
565
|
def generate_access_token(client_id, client_secret, code)
|
566
566
|
raise ArgumentError.new('client_id cannot be empty') if client_id.empty?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docusign_maestro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DocuSign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -270,7 +270,7 @@ dependencies:
|
|
270
270
|
- - ">="
|
271
271
|
- !ruby/object:Gem::Version
|
272
272
|
version: 0.2.11
|
273
|
-
description: The
|
273
|
+
description: The Docusign package makes integrating Docusign into your apps and websites
|
274
274
|
a super fast and painless process. The library is open sourced on GitHub, look for
|
275
275
|
the docusign-maestro-ruby-client repository.
|
276
276
|
email:
|
@@ -434,9 +434,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
434
434
|
version: '1.9'
|
435
435
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
436
436
|
requirements:
|
437
|
-
- - "
|
437
|
+
- - ">="
|
438
438
|
- !ruby/object:Gem::Version
|
439
|
-
version:
|
439
|
+
version: '0'
|
440
440
|
requirements: []
|
441
441
|
rubyforge_project:
|
442
442
|
rubygems_version: 2.7.6
|