ding_sdk 0.4.0 → 0.4.2

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: bec37a1038f58d44219da9261fc15a8029d7c18754490e2b42f419b9e32de0e2
4
- data.tar.gz: 321165b2cd38d8a8d223b033bcff10cb91d06e14706ab5ef2998bdbc2bbd5d7c
3
+ metadata.gz: 03df817ebdb9dc14a1c3fa3d04db34c11c74dabaf2c390ee551a11b9b7a0db3d
4
+ data.tar.gz: 1219245049d81b0c6314efaec627ec83899bc7ed3bc9210a92858959314f6c6f
5
5
  SHA512:
6
- metadata.gz: dfe8efe3a0584c4689c516cb74b008ec3c99ba8b862762f6abe607b3d8dc1d77114d935ac2113d23b0c993aff6c3aa670e19a7ed8246454981d6ed427b332af8
7
- data.tar.gz: e8151f61c934e6e3985063371d20964457c081280c57247be71cac195f3bd0b16e0ebca1e27dbc85152a4b880c9103a811b3846a45a35bdb8cd2e9e4e297e63a
6
+ metadata.gz: dd0692c699de0adf08f946ae59222f4146957407fb5f4a8debe59f39fec28fb2fa34f0fed1f85aeea7f60a542d899d0db26dfad47f64a6d8b2cfc3526a89ffb1
7
+ data.tar.gz: 8f9efbe7a079cfa1a60f8062d4bed4984840de8c5889cf655f7fd148c98655cd434b572e48edc9301f6ab276bb40d54c8a9a35487230460c07b27f53cc5f8370
@@ -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.2'
43
+ @gen_version = '2.194.1'
44
+ @user_agent = 'speakeasy-sdk/ruby 0.4.2 2.194.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.2
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-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday