ding_sdk 0.4.0 → 0.4.1

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: bec37a1038f58d44219da9261fc15a8029d7c18754490e2b42f419b9e32de0e2
4
- data.tar.gz: 321165b2cd38d8a8d223b033bcff10cb91d06e14706ab5ef2998bdbc2bbd5d7c
3
+ metadata.gz: c324dc7b058e9c1d84d8e6d4b20cf1eea1c2028ebc7209d3dff8a674ac932617
4
+ data.tar.gz: 76e5e4e1fa2812e7b48ef87edd259c163e3aae11d3860934f3920fe0d8679b54
5
5
  SHA512:
6
- metadata.gz: dfe8efe3a0584c4689c516cb74b008ec3c99ba8b862762f6abe607b3d8dc1d77114d935ac2113d23b0c993aff6c3aa670e19a7ed8246454981d6ed427b332af8
7
- data.tar.gz: e8151f61c934e6e3985063371d20964457c081280c57247be71cac195f3bd0b16e0ebca1e27dbc85152a4b880c9103a811b3846a45a35bdb8cd2e9e4e297e63a
6
+ metadata.gz: b9764b63f1d4d926b61571189838bddd6eedcc0d4e67d48182dd4cf41d52245a85a0a250b09ffc859b603aa577ec461009e820e5a7111b44f2bc34908735efe3
7
+ data.tar.gz: 616adaf8bc2e938ded14dad110b91754a61c608c1d831ca0079fbfb857691ca8700931fc0af55158ec176f05ff69e43cec3b846f1f9d9c19fed300e1b4f00365
@@ -16,23 +16,23 @@ module DingSDK
16
16
 
17
17
  # HTTP response content type for this operation
18
18
  field :content_type, String
19
+ # Raw HTTP response; suitable for custom response parsing
20
+ field :raw_response, Faraday::Response
19
21
  # HTTP response status code for this operation
20
22
  field :status_code, Integer
21
23
  # OK
22
24
  field :create_check_response, T.nilable(Shared::CreateCheckResponse)
23
25
  # Bad Request
24
26
  field :error_response, T.nilable(Shared::ErrorResponse)
25
- # Raw HTTP response; suitable for custom response parsing
26
- field :raw_response, T.nilable(Faraday::Response)
27
27
 
28
28
 
29
- sig { params(content_type: String, status_code: Integer, create_check_response: T.nilable(Shared::CreateCheckResponse), error_response: T.nilable(Shared::ErrorResponse), raw_response: T.nilable(Faraday::Response)).void }
30
- def initialize(content_type: nil, status_code: nil, create_check_response: nil, error_response: nil, raw_response: nil)
29
+ sig { params(content_type: String, raw_response: Faraday::Response, status_code: Integer, create_check_response: T.nilable(Shared::CreateCheckResponse), error_response: T.nilable(Shared::ErrorResponse)).void }
30
+ def initialize(content_type: nil, raw_response: nil, status_code: nil, create_check_response: nil, error_response: nil)
31
31
  @content_type = content_type
32
+ @raw_response = raw_response
32
33
  @status_code = status_code
33
34
  @create_check_response = create_check_response
34
35
  @error_response = error_response
35
- @raw_response = raw_response
36
36
  end
37
37
  end
38
38
  end
@@ -16,23 +16,23 @@ module DingSDK
16
16
 
17
17
  # HTTP response content type for this operation
18
18
  field :content_type, String
19
+ # Raw HTTP response; suitable for custom response parsing
20
+ field :raw_response, Faraday::Response
19
21
  # HTTP response status code for this operation
20
22
  field :status_code, Integer
21
23
  # OK
22
24
  field :create_authentication_response, T.nilable(Shared::CreateAuthenticationResponse)
23
25
  # Bad Request
24
26
  field :error_response, T.nilable(Shared::ErrorResponse)
25
- # Raw HTTP response; suitable for custom response parsing
26
- field :raw_response, T.nilable(Faraday::Response)
27
27
 
28
28
 
29
- sig { params(content_type: String, status_code: Integer, create_authentication_response: T.nilable(Shared::CreateAuthenticationResponse), error_response: T.nilable(Shared::ErrorResponse), raw_response: T.nilable(Faraday::Response)).void }
30
- def initialize(content_type: nil, status_code: nil, create_authentication_response: nil, error_response: nil, raw_response: nil)
29
+ sig { params(content_type: String, raw_response: Faraday::Response, status_code: Integer, create_authentication_response: T.nilable(Shared::CreateAuthenticationResponse), error_response: T.nilable(Shared::ErrorResponse)).void }
30
+ def initialize(content_type: nil, raw_response: nil, status_code: nil, create_authentication_response: nil, error_response: nil)
31
31
  @content_type = content_type
32
+ @raw_response = raw_response
32
33
  @status_code = status_code
33
34
  @create_authentication_response = create_authentication_response
34
35
  @error_response = error_response
35
- @raw_response = raw_response
36
36
  end
37
37
  end
38
38
  end
@@ -33,23 +33,23 @@ module DingSDK
33
33
 
34
34
  # HTTP response content type for this operation
35
35
  field :content_type, String
36
+ # Raw HTTP response; suitable for custom response parsing
37
+ field :raw_response, Faraday::Response
36
38
  # HTTP response status code for this operation
37
39
  field :status_code, Integer
38
40
  # Bad Request
39
41
  field :error_response, T.nilable(Shared::ErrorResponse)
40
42
  # OK
41
43
  field :lookup_response, T.nilable(Shared::LookupResponse)
42
- # Raw HTTP response; suitable for custom response parsing
43
- field :raw_response, T.nilable(Faraday::Response)
44
44
 
45
45
 
46
- sig { params(content_type: String, status_code: Integer, error_response: T.nilable(Shared::ErrorResponse), lookup_response: T.nilable(Shared::LookupResponse), raw_response: T.nilable(Faraday::Response)).void }
47
- def initialize(content_type: nil, status_code: nil, error_response: nil, lookup_response: nil, raw_response: nil)
46
+ sig { params(content_type: String, raw_response: Faraday::Response, status_code: Integer, error_response: T.nilable(Shared::ErrorResponse), lookup_response: T.nilable(Shared::LookupResponse)).void }
47
+ def initialize(content_type: nil, raw_response: nil, status_code: nil, error_response: nil, lookup_response: nil)
48
48
  @content_type = content_type
49
+ @raw_response = raw_response
49
50
  @status_code = status_code
50
51
  @error_response = error_response
51
52
  @lookup_response = lookup_response
52
- @raw_response = raw_response
53
53
  end
54
54
  end
55
55
  end
@@ -16,22 +16,22 @@ module DingSDK
16
16
 
17
17
  # HTTP response content type for this operation
18
18
  field :content_type, String
19
+ # Raw HTTP response; suitable for custom response parsing
20
+ field :raw_response, Faraday::Response
19
21
  # HTTP response status code for this operation
20
22
  field :status_code, Integer
21
23
  # Bad Request
22
24
  field :error_response, T.nilable(Shared::ErrorResponse)
23
- # Raw HTTP response; suitable for custom response parsing
24
- field :raw_response, T.nilable(Faraday::Response)
25
25
  # OK
26
26
  field :retry_authentication_response, T.nilable(Shared::RetryAuthenticationResponse)
27
27
 
28
28
 
29
- sig { params(content_type: String, status_code: Integer, error_response: T.nilable(Shared::ErrorResponse), raw_response: T.nilable(Faraday::Response), retry_authentication_response: T.nilable(Shared::RetryAuthenticationResponse)).void }
30
- def initialize(content_type: nil, status_code: nil, error_response: nil, raw_response: nil, retry_authentication_response: nil)
29
+ sig { params(content_type: String, raw_response: Faraday::Response, status_code: Integer, error_response: T.nilable(Shared::ErrorResponse), retry_authentication_response: T.nilable(Shared::RetryAuthenticationResponse)).void }
30
+ def initialize(content_type: nil, raw_response: nil, status_code: nil, error_response: nil, retry_authentication_response: nil)
31
31
  @content_type = content_type
32
+ @raw_response = raw_response
32
33
  @status_code = status_code
33
34
  @error_response = error_response
34
- @raw_response = raw_response
35
35
  @retry_authentication_response = retry_authentication_response
36
36
  end
37
37
  end
@@ -39,9 +39,9 @@ module OpenApiSDK
39
39
  @server = server_url.nil? ? '' : server_url
40
40
  @language = 'ruby'
41
41
  @openapi_doc_version = '1.0.0'
42
- @sdk_version = '0.4.0'
43
- @gen_version = '2.189.1'
44
- @user_agent = 'speakeasy-sdk/ruby 0.4.0 2.189.1 1.0.0 ding_sdk'
42
+ @sdk_version = '0.4.1'
43
+ @gen_version = '2.192.1'
44
+ @user_agent = 'speakeasy-sdk/ruby 0.4.1 2.192.1 1.0.0 ding_sdk'
45
45
  end
46
46
 
47
47
  sig { returns([String, T::Hash[Symbol, String]]) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ding_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ding
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-15 00:00:00.000000000 Z
11
+ date: 2023-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday