signwell_sdk 0.0.1.pre.alpha.1 → 0.1.0.pre.alpha.2

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: 60864cf9015af7d0f2b8c1c4b7a3a484e1e0cb933b56c3e0643c2db476d892b9
4
- data.tar.gz: adea91d15c788f95bd8963cb429ef1e334daac1589f46cf95d767cc2fad70374
3
+ metadata.gz: '02022668207e2410908c334ca7275b7be0dfd46d5f7ce91cc55e50750d54cc21'
4
+ data.tar.gz: dd43d14eed3f775b98f32fb366fa065d72b6a00df29269c3d3170bd3dffcafe5
5
5
  SHA512:
6
- metadata.gz: 70b29469727a352851861ff5deb8f36d7f0e88cd3d57e1de6ade1f889a4f56d2e941486395cf7483892e3638bcf3a6db3016b3a1bec69486dcde4740e8bc6ee8
7
- data.tar.gz: 106a2e69133c45d2ef4f17d42a0fa6fcd0776553164cb521feac6f02e65440c6593d519da7f899897401748e11de001d64f7a995d3f53a7c7b23fd33c9376d3a
6
+ metadata.gz: b539dbd329d0b71b137d48f0e0341da02085f8a7633421e91cff26180bd194a30bc2626e83ba1819c9e82fdd66abdc078f4f20ef9cc8108ba47fa548c5720dcd
7
+ data.tar.gz: c1ac5ffc4fc77bcc7d338225e54a7ce42e3446c513dd0d5a304c9a86f6f879d634999a398c25db2c973e197a012a196fba6dc9e6cc609702b57d09ccbd52bc7f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.2 (2026-02-04)
4
+
5
+ Full Changelog: [v0.0.1-alpha.1...v0.1.0-alpha.2](https://github.com/Bidsketch/signwell-sdk-ruby/compare/v0.0.1-alpha.1...v0.1.0-alpha.2)
6
+
7
+ ### Features
8
+
9
+ * **api:** adds contact information ([4d03e53](https://github.com/Bidsketch/signwell-sdk-ruby/commit/4d03e530a065aabce613ac34b5e7e760498fa822))
10
+ * **api:** manual updates ([d1d35ee](https://github.com/Bidsketch/signwell-sdk-ruby/commit/d1d35ee21e78a13ed90f0bd9f340e9b4c3cf640e))
11
+ * **api:** updates error responses ([aeff826](https://github.com/Bidsketch/signwell-sdk-ruby/commit/aeff82647d6d8340a758c2ff1ef1eac188ed944b))
12
+
13
+
14
+ ### Chores
15
+
16
+ * update SDK settings ([21722bb](https://github.com/Bidsketch/signwell-sdk-ruby/commit/21722bb094b2def47aae35fb448265141f22fcf7))
17
+
3
18
  ## 0.0.1-alpha.1 (2026-02-04)
4
19
 
5
20
  Full Changelog: [v0.0.1...v0.0.1-alpha.1](https://github.com/Bidsketch/signwell-sdk-ruby/compare/v0.0.1...v0.0.1-alpha.1)
data/README.md CHANGED
@@ -8,6 +8,8 @@ It is generated with [Stainless](https://www.stainless.com/).
8
8
 
9
9
  Documentation for releases of this gem can be found [on RubyDoc](https://gemdocs.org/gems/signwell_sdk).
10
10
 
11
+ The REST API documentation can be found on [developers.signwell.com](https://developers.signwell.com/).
12
+
11
13
  ## Installation
12
14
 
13
15
  To use this gem, install via Bundler by adding the following to your application's `Gemfile`:
@@ -15,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
15
17
  <!-- x-release-please-start-version -->
16
18
 
17
19
  ```ruby
18
- gem "signwell_sdk", "~> 0.0.1.pre.alpha.1"
20
+ gem "signwell_sdk", "~> 0.1.0.pre.alpha.2"
19
21
  ```
20
22
 
21
23
  <!-- x-release-please-end -->
data/SECURITY.md CHANGED
@@ -18,6 +18,10 @@ before making any information public.
18
18
  If you encounter security issues that are not directly related to SDKs but pertain to the services
19
19
  or products provided by Signwell SDK, please follow the respective company's security reporting guidelines.
20
20
 
21
+ ### Signwell SDK Terms and Policies
22
+
23
+ Please contact support@signwell.com for any questions or concerns regarding the security of our services.
24
+
21
25
  ---
22
26
 
23
27
  Thank you for helping us keep the SDKs and systems they interact with secure.
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class ErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ # @!attribute message
7
+ # Human-readable error message
8
+ #
9
+ # @return [String, nil]
10
+ optional :message, String
11
+
12
+ # @!attribute meta
13
+ #
14
+ # @return [SignwellSDK::Models::ErrorResponse::Meta, nil]
15
+ optional :meta, -> { SignwellSDK::ErrorResponse::Meta }
16
+
17
+ # @!method initialize(message: nil, meta: nil)
18
+ # Standard error response
19
+ #
20
+ # @param message [String] Human-readable error message
21
+ #
22
+ # @param meta [SignwellSDK::Models::ErrorResponse::Meta]
23
+
24
+ # @see SignwellSDK::Models::ErrorResponse#meta
25
+ class Meta < SignwellSDK::Internal::Type::BaseModel
26
+ # @!attribute error
27
+ # Error code identifier
28
+ #
29
+ # @return [String]
30
+ required :error, String
31
+
32
+ # @!attribute message
33
+ # Detailed error message
34
+ #
35
+ # @return [String]
36
+ required :message, String
37
+
38
+ # @!attribute messages
39
+ # List of error messages
40
+ #
41
+ # @return [Array<String>, nil]
42
+ optional :messages, SignwellSDK::Internal::Type::ArrayOf[String]
43
+
44
+ # @!method initialize(error:, message:, messages: nil)
45
+ # @param error [String] Error code identifier
46
+ #
47
+ # @param message [String] Detailed error message
48
+ #
49
+ # @param messages [Array<String>] List of error messages
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class RateLimitErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ # @!attribute error
7
+ # Rate limit error message indicating the limit and reset time
8
+ #
9
+ # @return [String]
10
+ required :error, String
11
+
12
+ # @!method initialize(error:)
13
+ # Rate limit exceeded error response (HTTP 429)
14
+ #
15
+ # @param error [String] Rate limit error message indicating the limit and reset time
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class ValidationErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ # @!attribute errors
7
+ # Field-specific validation errors. Keys are field names (e.g., recipients,
8
+ # fields, files). Values can be strings, arrays of strings, or nested objects with
9
+ # further field-specific errors.
10
+ #
11
+ # @return [Hash{Symbol=>Object}]
12
+ required :errors, SignwellSDK::Internal::Type::HashOf[SignwellSDK::Internal::Type::Unknown]
13
+
14
+ # @!method initialize(errors:)
15
+ # Some parameter documentations has been truncated, see
16
+ # {SignwellSDK::Models::ValidationErrorResponse} for more details.
17
+ #
18
+ # Validation error response. The errors object contains field-specific error
19
+ # details with dynamic keys.
20
+ #
21
+ # @param errors [Hash{Symbol=>Object}] Field-specific validation errors. Keys are field names (e.g., recipients, fields
22
+ end
23
+ end
24
+ end
@@ -49,15 +49,21 @@ module SignwellSDK
49
49
 
50
50
  DateFormat = SignwellSDK::Models::DateFormat
51
51
 
52
+ ErrorResponse = SignwellSDK::Models::ErrorResponse
53
+
52
54
  FieldType = SignwellSDK::Models::FieldType
53
55
 
54
56
  FileInfo = SignwellSDK::Models::FileInfo
55
57
 
56
58
  LabelInfo = SignwellSDK::Models::LabelInfo
57
59
 
60
+ RateLimitErrorResponse = SignwellSDK::Models::RateLimitErrorResponse
61
+
58
62
  TextValidation = SignwellSDK::Models::TextValidation
59
63
 
60
64
  V1 = SignwellSDK::Models::V1
61
65
 
62
66
  V1MeParams = SignwellSDK::Models::V1MeParams
67
+
68
+ ValidationErrorResponse = SignwellSDK::Models::ValidationErrorResponse
63
69
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SignwellSDK
4
- VERSION = "0.0.1.pre.alpha.1"
4
+ VERSION = "0.1.0.pre.alpha.2"
5
5
  end
data/lib/signwell_sdk.rb CHANGED
@@ -57,9 +57,11 @@ require_relative "signwell_sdk/models/checkbox_group_info"
57
57
  require_relative "signwell_sdk/models/checkbox_validation"
58
58
  require_relative "signwell_sdk/models/copied_contact_info"
59
59
  require_relative "signwell_sdk/models/date_format"
60
+ require_relative "signwell_sdk/models/error_response"
60
61
  require_relative "signwell_sdk/models/field_type"
61
62
  require_relative "signwell_sdk/models/file_info"
62
63
  require_relative "signwell_sdk/models/label_info"
64
+ require_relative "signwell_sdk/models/rate_limit_error_response"
63
65
  require_relative "signwell_sdk/models/text_validation"
64
66
  require_relative "signwell_sdk/models/v1/api_application_delete_params"
65
67
  require_relative "signwell_sdk/models/v1/api_application_retrieve_params"
@@ -98,6 +100,7 @@ require_relative "signwell_sdk/models/v1/hook_list_params"
98
100
  require_relative "signwell_sdk/models/v1/label"
99
101
  require_relative "signwell_sdk/models/v1/template_checkbox_group"
100
102
  require_relative "signwell_sdk/models/v1_me_params"
103
+ require_relative "signwell_sdk/models/validation_error_response"
101
104
  require_relative "signwell_sdk/models"
102
105
  require_relative "signwell_sdk/resources/v1"
103
106
  require_relative "signwell_sdk/resources/v1/api_applications"
@@ -0,0 +1,97 @@
1
+ # typed: strong
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class ErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ OrHash =
7
+ T.type_alias do
8
+ T.any(SignwellSDK::ErrorResponse, SignwellSDK::Internal::AnyHash)
9
+ end
10
+
11
+ # Human-readable error message
12
+ sig { returns(T.nilable(String)) }
13
+ attr_reader :message
14
+
15
+ sig { params(message: String).void }
16
+ attr_writer :message
17
+
18
+ sig { returns(T.nilable(SignwellSDK::ErrorResponse::Meta)) }
19
+ attr_reader :meta
20
+
21
+ sig { params(meta: SignwellSDK::ErrorResponse::Meta::OrHash).void }
22
+ attr_writer :meta
23
+
24
+ # Standard error response
25
+ sig do
26
+ params(
27
+ message: String,
28
+ meta: SignwellSDK::ErrorResponse::Meta::OrHash
29
+ ).returns(T.attached_class)
30
+ end
31
+ def self.new(
32
+ # Human-readable error message
33
+ message: nil,
34
+ meta: nil
35
+ )
36
+ end
37
+
38
+ sig do
39
+ override.returns(
40
+ { message: String, meta: SignwellSDK::ErrorResponse::Meta }
41
+ )
42
+ end
43
+ def to_hash
44
+ end
45
+
46
+ class Meta < SignwellSDK::Internal::Type::BaseModel
47
+ OrHash =
48
+ T.type_alias do
49
+ T.any(
50
+ SignwellSDK::ErrorResponse::Meta,
51
+ SignwellSDK::Internal::AnyHash
52
+ )
53
+ end
54
+
55
+ # Error code identifier
56
+ sig { returns(String) }
57
+ attr_accessor :error
58
+
59
+ # Detailed error message
60
+ sig { returns(String) }
61
+ attr_accessor :message
62
+
63
+ # List of error messages
64
+ sig { returns(T.nilable(T::Array[String])) }
65
+ attr_reader :messages
66
+
67
+ sig { params(messages: T::Array[String]).void }
68
+ attr_writer :messages
69
+
70
+ sig do
71
+ params(
72
+ error: String,
73
+ message: String,
74
+ messages: T::Array[String]
75
+ ).returns(T.attached_class)
76
+ end
77
+ def self.new(
78
+ # Error code identifier
79
+ error:,
80
+ # Detailed error message
81
+ message:,
82
+ # List of error messages
83
+ messages: nil
84
+ )
85
+ end
86
+
87
+ sig do
88
+ override.returns(
89
+ { error: String, message: String, messages: T::Array[String] }
90
+ )
91
+ end
92
+ def to_hash
93
+ end
94
+ end
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,31 @@
1
+ # typed: strong
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class RateLimitErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ OrHash =
7
+ T.type_alias do
8
+ T.any(
9
+ SignwellSDK::RateLimitErrorResponse,
10
+ SignwellSDK::Internal::AnyHash
11
+ )
12
+ end
13
+
14
+ # Rate limit error message indicating the limit and reset time
15
+ sig { returns(String) }
16
+ attr_accessor :error
17
+
18
+ # Rate limit exceeded error response (HTTP 429)
19
+ sig { params(error: String).returns(T.attached_class) }
20
+ def self.new(
21
+ # Rate limit error message indicating the limit and reset time
22
+ error:
23
+ )
24
+ end
25
+
26
+ sig { override.returns({ error: String }) }
27
+ def to_hash
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,38 @@
1
+ # typed: strong
2
+
3
+ module SignwellSDK
4
+ module Models
5
+ class ValidationErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ OrHash =
7
+ T.type_alias do
8
+ T.any(
9
+ SignwellSDK::ValidationErrorResponse,
10
+ SignwellSDK::Internal::AnyHash
11
+ )
12
+ end
13
+
14
+ # Field-specific validation errors. Keys are field names (e.g., recipients,
15
+ # fields, files). Values can be strings, arrays of strings, or nested objects with
16
+ # further field-specific errors.
17
+ sig { returns(T::Hash[Symbol, T.anything]) }
18
+ attr_accessor :errors
19
+
20
+ # Validation error response. The errors object contains field-specific error
21
+ # details with dynamic keys.
22
+ sig do
23
+ params(errors: T::Hash[Symbol, T.anything]).returns(T.attached_class)
24
+ end
25
+ def self.new(
26
+ # Field-specific validation errors. Keys are field names (e.g., recipients,
27
+ # fields, files). Values can be strings, arrays of strings, or nested objects with
28
+ # further field-specific errors.
29
+ errors:
30
+ )
31
+ end
32
+
33
+ sig { override.returns({ errors: T::Hash[Symbol, T.anything] }) }
34
+ def to_hash
35
+ end
36
+ end
37
+ end
38
+ end
@@ -11,15 +11,21 @@ module SignwellSDK
11
11
 
12
12
  DateFormat = SignwellSDK::Models::DateFormat
13
13
 
14
+ ErrorResponse = SignwellSDK::Models::ErrorResponse
15
+
14
16
  FieldType = SignwellSDK::Models::FieldType
15
17
 
16
18
  FileInfo = SignwellSDK::Models::FileInfo
17
19
 
18
20
  LabelInfo = SignwellSDK::Models::LabelInfo
19
21
 
22
+ RateLimitErrorResponse = SignwellSDK::Models::RateLimitErrorResponse
23
+
20
24
  TextValidation = SignwellSDK::Models::TextValidation
21
25
 
22
26
  V1 = SignwellSDK::Models::V1
23
27
 
24
28
  V1MeParams = SignwellSDK::Models::V1MeParams
29
+
30
+ ValidationErrorResponse = SignwellSDK::Models::ValidationErrorResponse
25
31
  end
@@ -0,0 +1,52 @@
1
+ module SignwellSDK
2
+ module Models
3
+ type error_response =
4
+ { message: String, meta: SignwellSDK::ErrorResponse::Meta }
5
+
6
+ class ErrorResponse < SignwellSDK::Internal::Type::BaseModel
7
+ attr_reader message: String?
8
+
9
+ def message=: (String) -> String
10
+
11
+ attr_reader meta: SignwellSDK::ErrorResponse::Meta?
12
+
13
+ def meta=: (
14
+ SignwellSDK::ErrorResponse::Meta
15
+ ) -> SignwellSDK::ErrorResponse::Meta
16
+
17
+ def initialize: (
18
+ ?message: String,
19
+ ?meta: SignwellSDK::ErrorResponse::Meta
20
+ ) -> void
21
+
22
+ def to_hash: -> {
23
+ message: String,
24
+ meta: SignwellSDK::ErrorResponse::Meta
25
+ }
26
+
27
+ type meta = { error: String, message: String, messages: ::Array[String] }
28
+
29
+ class Meta < SignwellSDK::Internal::Type::BaseModel
30
+ attr_accessor error: String
31
+
32
+ attr_accessor message: String
33
+
34
+ attr_reader messages: ::Array[String]?
35
+
36
+ def messages=: (::Array[String]) -> ::Array[String]
37
+
38
+ def initialize: (
39
+ error: String,
40
+ message: String,
41
+ ?messages: ::Array[String]
42
+ ) -> void
43
+
44
+ def to_hash: -> {
45
+ error: String,
46
+ message: String,
47
+ messages: ::Array[String]
48
+ }
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,13 @@
1
+ module SignwellSDK
2
+ module Models
3
+ type rate_limit_error_response = { error: String }
4
+
5
+ class RateLimitErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ attr_accessor error: String
7
+
8
+ def initialize: (error: String) -> void
9
+
10
+ def to_hash: -> { error: String }
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ module SignwellSDK
2
+ module Models
3
+ type validation_error_response = { errors: ::Hash[Symbol, top] }
4
+
5
+ class ValidationErrorResponse < SignwellSDK::Internal::Type::BaseModel
6
+ attr_accessor errors: ::Hash[Symbol, top]
7
+
8
+ def initialize: (errors: ::Hash[Symbol, top]) -> void
9
+
10
+ def to_hash: -> { errors: ::Hash[Symbol, top] }
11
+ end
12
+ end
13
+ end
@@ -9,15 +9,21 @@ module SignwellSDK
9
9
 
10
10
  module DateFormat = SignwellSDK::Models::DateFormat
11
11
 
12
+ class ErrorResponse = SignwellSDK::Models::ErrorResponse
13
+
12
14
  module FieldType = SignwellSDK::Models::FieldType
13
15
 
14
16
  class FileInfo = SignwellSDK::Models::FileInfo
15
17
 
16
18
  class LabelInfo = SignwellSDK::Models::LabelInfo
17
19
 
20
+ class RateLimitErrorResponse = SignwellSDK::Models::RateLimitErrorResponse
21
+
18
22
  module TextValidation = SignwellSDK::Models::TextValidation
19
23
 
20
24
  module V1 = SignwellSDK::Models::V1
21
25
 
22
26
  class V1MeParams = SignwellSDK::Models::V1MeParams
27
+
28
+ class ValidationErrorResponse = SignwellSDK::Models::ValidationErrorResponse
23
29
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: signwell_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.alpha.1
4
+ version: 0.1.0.pre.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Signwell SDK
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description:
42
- email: ''
42
+ email: support@signwell.com
43
43
  executables: []
44
44
  extensions: []
45
45
  extra_rdoc_files:
@@ -74,9 +74,11 @@ files:
74
74
  - lib/signwell_sdk/models/checkbox_validation.rb
75
75
  - lib/signwell_sdk/models/copied_contact_info.rb
76
76
  - lib/signwell_sdk/models/date_format.rb
77
+ - lib/signwell_sdk/models/error_response.rb
77
78
  - lib/signwell_sdk/models/field_type.rb
78
79
  - lib/signwell_sdk/models/file_info.rb
79
80
  - lib/signwell_sdk/models/label_info.rb
81
+ - lib/signwell_sdk/models/rate_limit_error_response.rb
80
82
  - lib/signwell_sdk/models/text_validation.rb
81
83
  - lib/signwell_sdk/models/v1/api_application_delete_params.rb
82
84
  - lib/signwell_sdk/models/v1/api_application_retrieve_params.rb
@@ -115,6 +117,7 @@ files:
115
117
  - lib/signwell_sdk/models/v1/label.rb
116
118
  - lib/signwell_sdk/models/v1/template_checkbox_group.rb
117
119
  - lib/signwell_sdk/models/v1_me_params.rb
120
+ - lib/signwell_sdk/models/validation_error_response.rb
118
121
  - lib/signwell_sdk/request_options.rb
119
122
  - lib/signwell_sdk/resources/v1.rb
120
123
  - lib/signwell_sdk/resources/v1/api_applications.rb
@@ -148,9 +151,11 @@ files:
148
151
  - rbi/signwell_sdk/models/checkbox_validation.rbi
149
152
  - rbi/signwell_sdk/models/copied_contact_info.rbi
150
153
  - rbi/signwell_sdk/models/date_format.rbi
154
+ - rbi/signwell_sdk/models/error_response.rbi
151
155
  - rbi/signwell_sdk/models/field_type.rbi
152
156
  - rbi/signwell_sdk/models/file_info.rbi
153
157
  - rbi/signwell_sdk/models/label_info.rbi
158
+ - rbi/signwell_sdk/models/rate_limit_error_response.rbi
154
159
  - rbi/signwell_sdk/models/text_validation.rbi
155
160
  - rbi/signwell_sdk/models/v1/api_application_delete_params.rbi
156
161
  - rbi/signwell_sdk/models/v1/api_application_retrieve_params.rbi
@@ -189,6 +194,7 @@ files:
189
194
  - rbi/signwell_sdk/models/v1/label.rbi
190
195
  - rbi/signwell_sdk/models/v1/template_checkbox_group.rbi
191
196
  - rbi/signwell_sdk/models/v1_me_params.rbi
197
+ - rbi/signwell_sdk/models/validation_error_response.rbi
192
198
  - rbi/signwell_sdk/request_options.rbi
193
199
  - rbi/signwell_sdk/resources/v1.rbi
194
200
  - rbi/signwell_sdk/resources/v1/api_applications.rbi
@@ -221,9 +227,11 @@ files:
221
227
  - sig/signwell_sdk/models/checkbox_validation.rbs
222
228
  - sig/signwell_sdk/models/copied_contact_info.rbs
223
229
  - sig/signwell_sdk/models/date_format.rbs
230
+ - sig/signwell_sdk/models/error_response.rbs
224
231
  - sig/signwell_sdk/models/field_type.rbs
225
232
  - sig/signwell_sdk/models/file_info.rbs
226
233
  - sig/signwell_sdk/models/label_info.rbs
234
+ - sig/signwell_sdk/models/rate_limit_error_response.rbs
227
235
  - sig/signwell_sdk/models/text_validation.rbs
228
236
  - sig/signwell_sdk/models/v1/api_application_delete_params.rbs
229
237
  - sig/signwell_sdk/models/v1/api_application_retrieve_params.rbs
@@ -262,6 +270,7 @@ files:
262
270
  - sig/signwell_sdk/models/v1/label.rbs
263
271
  - sig/signwell_sdk/models/v1/template_checkbox_group.rbs
264
272
  - sig/signwell_sdk/models/v1_me_params.rbs
273
+ - sig/signwell_sdk/models/validation_error_response.rbs
265
274
  - sig/signwell_sdk/request_options.rbs
266
275
  - sig/signwell_sdk/resources/v1.rbs
267
276
  - sig/signwell_sdk/resources/v1/api_applications.rbs