ding_sdk 0.5.1 → 0.5.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: 2647580684d4f76b035672cf3a20593a8c24500b50405dd72855537e7f737227
4
- data.tar.gz: dcd8f80ab3437572e2c0be0d514fa0450c0458bcf3a7f1c84f06f62d3d5e056a
3
+ metadata.gz: fb69849fbc805057aebafadda603ae7bae993ce59d1952a5b38d347302fc9371
4
+ data.tar.gz: 0e48cc411f768539ff266cc03a9abe8c051b1ce87fdde470e38ba8be13810c92
5
5
  SHA512:
6
- metadata.gz: 651ac23b3c4640ffc6e9838da59b7e5573ef61d5f25db3d49dcd086c67149abbebb4c51460e42bef18d7dab5bb9977acd8fde288defac93ea41a1aaaa0527970
7
- data.tar.gz: 803f8562f33ce9f1ef08c0dbff18748edeb54f653031dde1bfda02d8332b7397336cf3c693012e52dcc1d567cbd044436229226df1ea74405b930f405b92995a
6
+ metadata.gz: 356b5f24b64f9b232792f007849fa8f7c12b3fdedd340061a5648da62f7d256ee196078678b492118c28a775848b5c5edbfe9b781d7a686dd139c498336268e3
7
+ data.tar.gz: d003aa8e82c0db9539d953687dee9219d6d9a75cb3e0866df78cb4b628d0d70cbbaaecc59c4e926f951ddd0a88d8b8ecc3df5bf0fdb58c0f4ee06c8ed9bcb84c
@@ -11,7 +11,7 @@ require_relative '../shared/errorresponse'
11
11
  module DingSDK
12
12
  module Operations
13
13
 
14
- class CheckResponse < DingSDK::Utils::FieldAugmented
14
+ class CheckResponse < ::DingSDK::Utils::FieldAugmented
15
15
  extend T::Sig
16
16
 
17
17
  # HTTP response content type for this operation
@@ -11,7 +11,7 @@ require_relative '../shared/errorresponse'
11
11
  module DingSDK
12
12
  module Operations
13
13
 
14
- class CreateAutenticationResponse < DingSDK::Utils::FieldAugmented
14
+ class CreateAutenticationResponse < ::DingSDK::Utils::FieldAugmented
15
15
  extend T::Sig
16
16
 
17
17
  # HTTP response content type for this operation
@@ -11,7 +11,7 @@ require_relative '../shared/lookupresponse'
11
11
  module DingSDK
12
12
  module Operations
13
13
 
14
- class LookupRequest < DingSDK::Utils::FieldAugmented
14
+ class LookupRequest < ::DingSDK::Utils::FieldAugmented
15
15
  extend T::Sig
16
16
 
17
17
 
@@ -28,7 +28,7 @@ module DingSDK
28
28
  end
29
29
 
30
30
 
31
- class LookupResponse < DingSDK::Utils::FieldAugmented
31
+ class LookupResponse < ::DingSDK::Utils::FieldAugmented
32
32
  extend T::Sig
33
33
 
34
34
  # HTTP response content type for this operation
@@ -11,7 +11,7 @@ require_relative '../shared/retryauthenticationresponse'
11
11
  module DingSDK
12
12
  module Operations
13
13
 
14
- class RetryResponse < DingSDK::Utils::FieldAugmented
14
+ class RetryResponse < ::DingSDK::Utils::FieldAugmented
15
15
  extend T::Sig
16
16
 
17
17
  # HTTP response content type for this operation
@@ -19,31 +19,31 @@ module DingSDK
19
19
 
20
20
 
21
21
 
22
- class CreateAuthenticationRequest < DingSDK::Utils::FieldAugmented
22
+ class CreateAuthenticationRequest < ::DingSDK::Utils::FieldAugmented
23
23
  extend T::Sig
24
24
 
25
25
  # Your customer UUID, which can be found in the API settings in the dashboard.
26
- field :customer_uuid, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('customer_uuid') } }
26
+ field :customer_uuid, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('customer_uuid') } }
27
27
  # An E.164 formatted phone number to send the OTP to.
28
- field :phone_number, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('phone_number') } }
28
+ field :phone_number, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('phone_number') } }
29
29
  # The Android SMS Retriever API hash code that identifies your app. This allows you to automatically retrieve and fill the OTP code on Android devices.
30
- field :app_realm, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('app_realm') } }
30
+ field :app_realm, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('app_realm') } }
31
31
  # The version of your application.
32
- field :app_version, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('app_version') } }
32
+ field :app_version, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('app_version') } }
33
33
  # A webhook URL to which delivery statuses will be sent.
34
- field :callback_url, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('callback_url') } }
34
+ field :callback_url, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('callback_url') } }
35
35
  # Unique identifier for the user's device. For Android, this corresponds to the `ANDROID_ID` and for iOS, this corresponds to the `identifierForVendor`.
36
- field :device_id, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('device_id') } }
36
+ field :device_id, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('device_id') } }
37
37
  # The model of the user's device.
38
- field :device_model, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('device_model') } }
38
+ field :device_model, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('device_model') } }
39
39
  # The type of device the user is using.
40
- field :device_type, T.nilable(Shared::DeviceType), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('device_type'), 'decoder': Utils.enum_from_string(Shared::DeviceType, true) } }
40
+ field :device_type, T.nilable(Shared::DeviceType), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('device_type'), 'decoder': Utils.enum_from_string(Shared::DeviceType, true) } }
41
41
  # The IP address of the user's device.
42
- field :ip, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('ip') } }
42
+ field :ip, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('ip') } }
43
43
  # Whether the user is a returning user on your app.
44
- field :is_returning_user, T.nilable(T::Boolean), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('is_returning_user') } }
44
+ field :is_returning_user, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('is_returning_user') } }
45
45
  # The version of the user's device operating system.
46
- field :os_version, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('os_version') } }
46
+ field :os_version, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('os_version') } }
47
47
 
48
48
 
49
49
  sig { params(customer_uuid: String, phone_number: String, app_realm: T.nilable(String), app_version: T.nilable(String), callback_url: T.nilable(String), device_id: T.nilable(String), device_model: T.nilable(String), device_type: T.nilable(Shared::DeviceType), ip: T.nilable(String), is_returning_user: T.nilable(T::Boolean), os_version: T.nilable(String)).void }
@@ -23,21 +23,21 @@ module DingSDK
23
23
 
24
24
 
25
25
  # A successful response to an authentication creation request.
26
- class CreateAuthenticationResponse < DingSDK::Utils::FieldAugmented
26
+ class CreateAuthenticationResponse < ::DingSDK::Utils::FieldAugmented
27
27
  extend T::Sig
28
28
 
29
29
  # A unique identifier for the authentication that you can use on the /check and /retry endpoints.
30
- field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('authentication_uuid') } }
30
+ field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } }
31
31
 
32
- field :created_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
32
+ field :created_at, T.nilable(DateTime), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
33
33
  # The time at which the authentication expires and can no longer be checked or retried.
34
- field :expires_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('expires_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
34
+ field :expires_at, T.nilable(DateTime), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('expires_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
35
35
  # The status of the authentication. Possible values are:
36
36
  # * `pending` - The OTP code is being sent.
37
37
  # * `rate_limited` - This user is rate-limited and cannot receive another code.
38
38
  # * `spam_detected` - This attempt is flagged as spam. Go to the dashboard for more details.
39
39
  #
40
- field :status, T.nilable(Shared::Status), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::Status, true) } }
40
+ field :status, T.nilable(Shared::Status), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::Status, true) } }
41
41
 
42
42
 
43
43
  sig { params(authentication_uuid: T.nilable(String), created_at: T.nilable(DateTime), expires_at: T.nilable(DateTime), status: T.nilable(Shared::Status)).void }
@@ -9,15 +9,15 @@ require 'faraday'
9
9
  module DingSDK
10
10
  module Shared
11
11
 
12
- class CreateCheckRequest < DingSDK::Utils::FieldAugmented
12
+ class CreateCheckRequest < ::DingSDK::Utils::FieldAugmented
13
13
  extend T::Sig
14
14
 
15
15
  # The authentication UUID that was returned when you created the authentication.
16
- field :authentication_uuid, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('authentication_uuid') } }
16
+ field :authentication_uuid, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } }
17
17
  # The code that the user entered.
18
- field :check_code, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('check_code') } }
18
+ field :check_code, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('check_code') } }
19
19
  # Your customer UUID, which can be found in the API settings in the dashboard.
20
- field :customer_uuid, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('customer_uuid') } }
20
+ field :customer_uuid, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('customer_uuid') } }
21
21
 
22
22
 
23
23
  sig { params(authentication_uuid: String, check_code: String, customer_uuid: String).void }
@@ -29,11 +29,11 @@ module DingSDK
29
29
 
30
30
 
31
31
 
32
- class CreateCheckResponse < DingSDK::Utils::FieldAugmented
32
+ class CreateCheckResponse < ::DingSDK::Utils::FieldAugmented
33
33
  extend T::Sig
34
34
 
35
35
  # The UUID of the corresponding authentication.
36
- field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('authentication_uuid') } }
36
+ field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } }
37
37
  # The status of the check. Possible values are:
38
38
  # * `valid` - The code is valid.
39
39
  # * `invalid` - The code is invalid.
@@ -42,7 +42,7 @@ module DingSDK
42
42
  # * `already_validated` - The authentication has already been validated.
43
43
  # * `expired_auth` - The authentication has expired and cannot be checked.
44
44
  #
45
- field :status, T.nilable(Shared::CreateCheckResponseStatus), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::CreateCheckResponseStatus, true) } }
45
+ field :status, T.nilable(Shared::CreateCheckResponseStatus), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::CreateCheckResponseStatus, true) } }
46
46
 
47
47
 
48
48
  sig { params(authentication_uuid: T.nilable(String), status: T.nilable(Shared::CreateCheckResponseStatus)).void }
@@ -46,7 +46,7 @@ module DingSDK
46
46
 
47
47
 
48
48
 
49
- class ErrorResponse < DingSDK::Utils::FieldAugmented
49
+ class ErrorResponse < ::DingSDK::Utils::FieldAugmented
50
50
  extend T::Sig
51
51
 
52
52
  # A machine-readable code that describes the error. Possible values are:
@@ -64,11 +64,11 @@ module DingSDK
64
64
  # * `invalid_device_model` - The provided device model is invalid.
65
65
  # * `invalid_device_id` - The provided device ID is invalid.
66
66
  #
67
- field :code, T.nilable(Shared::Code), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('code'), 'decoder': Utils.enum_from_string(Shared::Code, true) } }
67
+ field :code, T.nilable(Shared::Code), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('code'), 'decoder': Utils.enum_from_string(Shared::Code, true) } }
68
68
  # A link to the documentation that describes the error.
69
- field :doc_url, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('doc_url') } }
69
+ field :doc_url, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('doc_url') } }
70
70
  # A human-readable message that describes the error.
71
- field :message, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('message') } }
71
+ field :message, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('message') } }
72
72
 
73
73
 
74
74
  sig { params(code: T.nilable(Shared::Code), doc_url: T.nilable(String), message: T.nilable(String)).void }
@@ -27,23 +27,23 @@ module DingSDK
27
27
 
28
28
 
29
29
 
30
- class LookupResponse < DingSDK::Utils::FieldAugmented
30
+ class LookupResponse < ::DingSDK::Utils::FieldAugmented
31
31
  extend T::Sig
32
32
 
33
33
  # The carrier of the phone number.
34
- field :carrier, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('carrier') } }
34
+ field :carrier, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('carrier') } }
35
35
  # The ISO 3166-1 alpha-2 country code of the phone number.
36
- field :country_code, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('country_code') } }
36
+ field :country_code, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('country_code') } }
37
37
  # The type of phone line.
38
- field :line_type, T.nilable(Shared::LineType), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('line_type'), 'decoder': Utils.enum_from_string(Shared::LineType, true) } }
38
+ field :line_type, T.nilable(Shared::LineType), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('line_type'), 'decoder': Utils.enum_from_string(Shared::LineType, true) } }
39
39
  # The mobile country code of the phone number.
40
- field :mcc, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('mcc') } }
40
+ field :mcc, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('mcc') } }
41
41
  # The mobile network code of the phone number.
42
- field :mnc, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('mnc') } }
42
+ field :mnc, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('mnc') } }
43
43
  # Whether the phone number has been ported.
44
- field :number_ported, T.nilable(T::Boolean), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('number_ported') } }
44
+ field :number_ported, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('number_ported') } }
45
45
  # An E.164 formatted phone number.
46
- field :phone_number, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('phone_number') } }
46
+ field :phone_number, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('phone_number') } }
47
47
 
48
48
 
49
49
  sig { params(carrier: T.nilable(String), country_code: T.nilable(String), line_type: T.nilable(Shared::LineType), mcc: T.nilable(String), mnc: T.nilable(String), number_ported: T.nilable(T::Boolean), phone_number: T.nilable(String)).void }
@@ -9,13 +9,13 @@ require 'faraday'
9
9
  module DingSDK
10
10
  module Shared
11
11
 
12
- class RetryAuthenticationRequest < DingSDK::Utils::FieldAugmented
12
+ class RetryAuthenticationRequest < ::DingSDK::Utils::FieldAugmented
13
13
  extend T::Sig
14
14
 
15
15
  # The authentication UUID that was returned when you created the authentication.
16
- field :authentication_uuid, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('authentication_uuid') } }
16
+ field :authentication_uuid, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } }
17
17
  # Your customer UUID, which can be found in the API settings in the dashboard.
18
- field :customer_uuid, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('customer_uuid') } }
18
+ field :customer_uuid, String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('customer_uuid') } }
19
19
 
20
20
 
21
21
  sig { params(authentication_uuid: String, customer_uuid: String).void }
@@ -29,17 +29,17 @@ module DingSDK
29
29
 
30
30
 
31
31
 
32
- class RetryAuthenticationResponse < DingSDK::Utils::FieldAugmented
32
+ class RetryAuthenticationResponse < ::DingSDK::Utils::FieldAugmented
33
33
  extend T::Sig
34
34
 
35
35
  # The UUID of the corresponding authentication.
36
- field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('authentication_uuid') } }
36
+ field :authentication_uuid, T.nilable(String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } }
37
37
 
38
- field :created_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
38
+ field :created_at, T.nilable(DateTime), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
39
39
  # The time at which the next retry will be available.
40
- field :next_retry_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('next_retry_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
40
+ field :next_retry_at, T.nilable(DateTime), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('next_retry_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
41
41
  # The number of remaining retries.
42
- field :remaining_retry, T.nilable(Integer), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('remaining_retry') } }
42
+ field :remaining_retry, T.nilable(Integer), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('remaining_retry') } }
43
43
  # The status of the retry. Possible values are:
44
44
  # * `approved` - The retry was approved and a new code was sent.
45
45
  # * `denied` - The retry was denied.
@@ -48,7 +48,7 @@ module DingSDK
48
48
  # * `expired_auth` - The authentication has expired and cannot be retried.
49
49
  # * `already_validated` - The authentication has already been validated.
50
50
  #
51
- field :status, T.nilable(Shared::RetryAuthenticationResponseStatus), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::RetryAuthenticationResponseStatus, true) } }
51
+ field :status, T.nilable(Shared::RetryAuthenticationResponseStatus), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(Shared::RetryAuthenticationResponseStatus, true) } }
52
52
 
53
53
 
54
54
  sig { params(authentication_uuid: T.nilable(String), created_at: T.nilable(DateTime), next_retry_at: T.nilable(DateTime), remaining_retry: T.nilable(Integer), status: T.nilable(Shared::RetryAuthenticationResponseStatus)).void }
@@ -9,7 +9,7 @@ require 'faraday'
9
9
  module DingSDK
10
10
  module Shared
11
11
 
12
- class Security < DingSDK::Utils::FieldAugmented
12
+ class Security < ::DingSDK::Utils::FieldAugmented
13
13
  extend T::Sig
14
14
 
15
15
 
@@ -7,7 +7,7 @@ require 'faraday'
7
7
  require 'faraday/multipart'
8
8
  require 'sorbet-runtime'
9
9
 
10
- module OpenApiSDK
10
+ module DingSDK
11
11
  extend T::Sig
12
12
 
13
13
 
@@ -18,7 +18,7 @@ module OpenApiSDK
18
18
  # Contains the list of servers available to the SDK
19
19
 
20
20
 
21
- class SDKConfiguration < OpenApiSDK::Utils::FieldAugmented
21
+ class SDKConfiguration < ::DingSDK::Utils::FieldAugmented
22
22
  extend T::Sig
23
23
 
24
24
  field :client, T.nilable(Faraday::Connection)
@@ -38,9 +38,9 @@ module OpenApiSDK
38
38
  @server = server_url.nil? ? '' : server_url
39
39
  @language = 'ruby'
40
40
  @openapi_doc_version = '1.0.0'
41
- @sdk_version = '0.5.1'
42
- @gen_version = '2.231.0'
43
- @user_agent = 'speakeasy-sdk/ruby 0.5.1 2.231.0 1.0.0 ding_sdk'
41
+ @sdk_version = '0.5.2'
42
+ @gen_version = '2.234.3'
43
+ @user_agent = 'speakeasy-sdk/ruby 0.5.2 2.234.3 1.0.0 ding_sdk'
44
44
  end
45
45
 
46
46
  sig { returns([String, T::Hash[Symbol, String]]) }
data/lib/ding_sdk.rb CHANGED
@@ -3,25 +3,25 @@
3
3
  # typed: true
4
4
  # frozen_string_literal: true
5
5
 
6
- require_relative 'sdk/utils/utils'
7
- require_relative 'sdk/utils/metadata_fields'
8
- require_relative 'sdk/sdk'
9
- require_relative 'sdk/models/shared/errorresponse'
10
- require_relative 'sdk/models/shared/createcheckresponse'
11
- require_relative 'sdk/models/shared/createcheckrequest'
12
- require_relative 'sdk/models/shared/createauthenticationresponse'
13
- require_relative 'sdk/models/shared/createauthenticationrequest'
14
- require_relative 'sdk/models/shared/retryauthenticationresponse'
15
- require_relative 'sdk/models/shared/retryauthenticationrequest'
16
- require_relative 'sdk/models/shared/lookupresponse'
17
- require_relative 'sdk/models/shared/security'
18
- require_relative 'sdk/models/operations/check'
19
- require_relative 'sdk/models/operations/create_autentication'
20
- require_relative 'sdk/models/operations/lookup'
21
- require_relative 'sdk/models/operations/retry_'
22
- require_relative 'sdk/sdkconfiguration'
23
- require_relative 'sdk/otp'
24
- require_relative 'sdk/lookup'
6
+ require_relative 'ding/utils/utils'
7
+ require_relative 'ding/utils/metadata_fields'
8
+ require_relative 'ding/sdk'
9
+ require_relative 'ding/models/shared/errorresponse'
10
+ require_relative 'ding/models/shared/createcheckresponse'
11
+ require_relative 'ding/models/shared/createcheckrequest'
12
+ require_relative 'ding/models/shared/createauthenticationresponse'
13
+ require_relative 'ding/models/shared/createauthenticationrequest'
14
+ require_relative 'ding/models/shared/retryauthenticationresponse'
15
+ require_relative 'ding/models/shared/retryauthenticationrequest'
16
+ require_relative 'ding/models/shared/lookupresponse'
17
+ require_relative 'ding/models/shared/security'
18
+ require_relative 'ding/models/operations/check'
19
+ require_relative 'ding/models/operations/create_autentication'
20
+ require_relative 'ding/models/operations/lookup'
21
+ require_relative 'ding/models/operations/retry_'
22
+ require_relative 'ding/sdkconfiguration'
23
+ require_relative 'ding/otp'
24
+ require_relative 'ding/lookup'
25
25
 
26
26
  module DingSDK
27
27
  end
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.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ding
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-12 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -81,13 +81,13 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: tapioca
84
+ name: minitest
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
- type: :runtime
90
+ type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
@@ -95,7 +95,7 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: minitest
98
+ name: rubocop
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
@@ -109,7 +109,7 @@ dependencies:
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
- name: rubocop
112
+ name: sorbet-runtime
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
@@ -123,7 +123,7 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
- name: sorbet-runtime
126
+ name: tapioca
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="