weft-sdk 0.2.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.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +9 -0
  3. data/docs/APIKeysApi.md +208 -0
  4. data/docs/AccountApi.md +72 -0
  5. data/docs/AccountDetails.md +30 -0
  6. data/docs/Agent.md +38 -0
  7. data/docs/AgentListResponse.md +20 -0
  8. data/docs/AgentResponse.md +18 -0
  9. data/docs/AgentStats.md +30 -0
  10. data/docs/AgentsApi.md +147 -0
  11. data/docs/ApiKey.md +28 -0
  12. data/docs/ApiKeyCreated.md +26 -0
  13. data/docs/ApiKeyCreatedResponse.md +18 -0
  14. data/docs/ApiKeyListResponse.md +18 -0
  15. data/docs/AuthApi.md +385 -0
  16. data/docs/AuthResponse.md +18 -0
  17. data/docs/AuthResponseData.md +22 -0
  18. data/docs/ConfirmRequest.md +18 -0
  19. data/docs/CreateApiKeyRequest.md +18 -0
  20. data/docs/DefaultApi.md +67 -0
  21. data/docs/Error.md +24 -0
  22. data/docs/ErrorResponse.md +18 -0
  23. data/docs/MeResponse.md +18 -0
  24. data/docs/MessageResponse.md +18 -0
  25. data/docs/MessageResponseData.md +18 -0
  26. data/docs/Pagination.md +24 -0
  27. data/docs/PasswordResetRequest.md +18 -0
  28. data/docs/PasswordUpdateRequest.md +22 -0
  29. data/docs/Payment.md +44 -0
  30. data/docs/PaymentListResponse.md +20 -0
  31. data/docs/PaymentResponse.md +18 -0
  32. data/docs/PaymentsApi.md +147 -0
  33. data/docs/ResendConfirmationRequest.md +18 -0
  34. data/docs/SignInRequest.md +20 -0
  35. data/docs/SignUpRequest.md +22 -0
  36. data/docs/User.md +22 -0
  37. data/lib/weft/facilitator/client.rb +89 -0
  38. data/lib/weft/facilitator/fee.rb +47 -0
  39. data/lib/weft/facilitator/middleware.rb +190 -0
  40. data/lib/weft/generated/api/account_api.rb +77 -0
  41. data/lib/weft/generated/api/agents_api.rb +148 -0
  42. data/lib/weft/generated/api/api_keys_api.rb +204 -0
  43. data/lib/weft/generated/api/auth_api.rb +418 -0
  44. data/lib/weft/generated/api/default_api.rb +77 -0
  45. data/lib/weft/generated/api/payments_api.rb +148 -0
  46. data/lib/weft/generated/api_client.rb +397 -0
  47. data/lib/weft/generated/api_error.rb +58 -0
  48. data/lib/weft/generated/api_model_base.rb +88 -0
  49. data/lib/weft/generated/configuration.rb +317 -0
  50. data/lib/weft/generated/models/account_details.rb +310 -0
  51. data/lib/weft/generated/models/agent.rb +417 -0
  52. data/lib/weft/generated/models/agent_list_response.rb +192 -0
  53. data/lib/weft/generated/models/agent_response.rb +164 -0
  54. data/lib/weft/generated/models/agent_stats.rb +201 -0
  55. data/lib/weft/generated/models/api_key.rb +244 -0
  56. data/lib/weft/generated/models/api_key_created.rb +252 -0
  57. data/lib/weft/generated/models/api_key_created_response.rb +164 -0
  58. data/lib/weft/generated/models/api_key_list_response.rb +166 -0
  59. data/lib/weft/generated/models/auth_response.rb +164 -0
  60. data/lib/weft/generated/models/auth_response_data.rb +199 -0
  61. data/lib/weft/generated/models/confirm_request.rb +164 -0
  62. data/lib/weft/generated/models/create_api_key_request.rb +148 -0
  63. data/lib/weft/generated/models/error.rb +208 -0
  64. data/lib/weft/generated/models/error_response.rb +164 -0
  65. data/lib/weft/generated/models/me_response.rb +164 -0
  66. data/lib/weft/generated/models/message_response.rb +164 -0
  67. data/lib/weft/generated/models/message_response_data.rb +164 -0
  68. data/lib/weft/generated/models/pagination.rb +242 -0
  69. data/lib/weft/generated/models/password_reset_request.rb +164 -0
  70. data/lib/weft/generated/models/password_update_request.rb +216 -0
  71. data/lib/weft/generated/models/payment.rb +437 -0
  72. data/lib/weft/generated/models/payment_list_response.rb +192 -0
  73. data/lib/weft/generated/models/payment_response.rb +164 -0
  74. data/lib/weft/generated/models/resend_confirmation_request.rb +164 -0
  75. data/lib/weft/generated/models/sign_in_request.rb +190 -0
  76. data/lib/weft/generated/models/sign_up_request.rb +216 -0
  77. data/lib/weft/generated/models/user.rb +199 -0
  78. data/lib/weft/generated/version.rb +15 -0
  79. data/lib/weft/generated.rb +4 -0
  80. data/lib/weft/sdk.rb +10 -0
  81. metadata +123 -0
@@ -0,0 +1,216 @@
1
+ =begin
2
+ #Weft API
3
+
4
+ #API for agent-first payments and discovery.
5
+
6
+ The version of the OpenAPI document: 0.2.1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Weft
17
+ class SignUpRequest < ApiModelBase
18
+ attr_accessor :email
19
+
20
+ attr_accessor :password
21
+
22
+ attr_accessor :password_confirmation
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'email' => :'email',
28
+ :'password' => :'password',
29
+ :'password_confirmation' => :'password_confirmation'
30
+ }
31
+ end
32
+
33
+ # Returns attribute mapping this model knows about
34
+ def self.acceptable_attribute_map
35
+ attribute_map
36
+ end
37
+
38
+ # Returns all the JSON keys this model knows about
39
+ def self.acceptable_attributes
40
+ acceptable_attribute_map.values
41
+ end
42
+
43
+ # Attribute type mapping.
44
+ def self.openapi_types
45
+ {
46
+ :'email' => :'String',
47
+ :'password' => :'String',
48
+ :'password_confirmation' => :'String'
49
+ }
50
+ end
51
+
52
+ # List of attributes with nullable: true
53
+ def self.openapi_nullable
54
+ Set.new([
55
+ ])
56
+ end
57
+
58
+ # Initializes the object
59
+ # @param [Hash] attributes Model attributes in the form of hash
60
+ def initialize(attributes = {})
61
+ if (!attributes.is_a?(Hash))
62
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Weft::SignUpRequest` initialize method"
63
+ end
64
+
65
+ # check to see if the attribute exists and convert string to symbol for hash key
66
+ acceptable_attribute_map = self.class.acceptable_attribute_map
67
+ attributes = attributes.each_with_object({}) { |(k, v), h|
68
+ if (!acceptable_attribute_map.key?(k.to_sym))
69
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Weft::SignUpRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
70
+ end
71
+ h[k.to_sym] = v
72
+ }
73
+
74
+ if attributes.key?(:'email')
75
+ self.email = attributes[:'email']
76
+ else
77
+ self.email = nil
78
+ end
79
+
80
+ if attributes.key?(:'password')
81
+ self.password = attributes[:'password']
82
+ else
83
+ self.password = nil
84
+ end
85
+
86
+ if attributes.key?(:'password_confirmation')
87
+ self.password_confirmation = attributes[:'password_confirmation']
88
+ else
89
+ self.password_confirmation = nil
90
+ end
91
+ end
92
+
93
+ # Show invalid properties with the reasons. Usually used together with valid?
94
+ # @return Array for valid properties with the reasons
95
+ def list_invalid_properties
96
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
97
+ invalid_properties = Array.new
98
+ if @email.nil?
99
+ invalid_properties.push('invalid value for "email", email cannot be nil.')
100
+ end
101
+
102
+ if @password.nil?
103
+ invalid_properties.push('invalid value for "password", password cannot be nil.')
104
+ end
105
+
106
+ if @password_confirmation.nil?
107
+ invalid_properties.push('invalid value for "password_confirmation", password_confirmation cannot be nil.')
108
+ end
109
+
110
+ invalid_properties
111
+ end
112
+
113
+ # Check to see if the all the properties in the model are valid
114
+ # @return true if the model is valid
115
+ def valid?
116
+ warn '[DEPRECATED] the `valid?` method is obsolete'
117
+ return false if @email.nil?
118
+ return false if @password.nil?
119
+ return false if @password_confirmation.nil?
120
+ true
121
+ end
122
+
123
+ # Custom attribute writer method with validation
124
+ # @param [Object] email Value to be assigned
125
+ def email=(email)
126
+ if email.nil?
127
+ fail ArgumentError, 'email cannot be nil'
128
+ end
129
+
130
+ @email = email
131
+ end
132
+
133
+ # Custom attribute writer method with validation
134
+ # @param [Object] password Value to be assigned
135
+ def password=(password)
136
+ if password.nil?
137
+ fail ArgumentError, 'password cannot be nil'
138
+ end
139
+
140
+ @password = password
141
+ end
142
+
143
+ # Custom attribute writer method with validation
144
+ # @param [Object] password_confirmation Value to be assigned
145
+ def password_confirmation=(password_confirmation)
146
+ if password_confirmation.nil?
147
+ fail ArgumentError, 'password_confirmation cannot be nil'
148
+ end
149
+
150
+ @password_confirmation = password_confirmation
151
+ end
152
+
153
+ # Checks equality by comparing each attribute.
154
+ # @param [Object] Object to be compared
155
+ def ==(o)
156
+ return true if self.equal?(o)
157
+ self.class == o.class &&
158
+ email == o.email &&
159
+ password == o.password &&
160
+ password_confirmation == o.password_confirmation
161
+ end
162
+
163
+ # @see the `==` method
164
+ # @param [Object] Object to be compared
165
+ def eql?(o)
166
+ self == o
167
+ end
168
+
169
+ # Calculates hash code according to all attributes.
170
+ # @return [Integer] Hash code
171
+ def hash
172
+ [email, password, password_confirmation].hash
173
+ end
174
+
175
+ # Builds the object from hash
176
+ # @param [Hash] attributes Model attributes in the form of hash
177
+ # @return [Object] Returns the model itself
178
+ def self.build_from_hash(attributes)
179
+ return nil unless attributes.is_a?(Hash)
180
+ attributes = attributes.transform_keys(&:to_sym)
181
+ transformed_hash = {}
182
+ openapi_types.each_pair do |key, type|
183
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
184
+ transformed_hash["#{key}"] = nil
185
+ elsif type =~ /\AArray<(.*)>/i
186
+ # check to ensure the input is an array given that the attribute
187
+ # is documented as an array but the input is not
188
+ if attributes[attribute_map[key]].is_a?(Array)
189
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
190
+ end
191
+ elsif !attributes[attribute_map[key]].nil?
192
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
193
+ end
194
+ end
195
+ new(transformed_hash)
196
+ end
197
+
198
+ # Returns the object in the form of hash
199
+ # @return [Hash] Returns the object in the form of hash
200
+ def to_hash
201
+ hash = {}
202
+ self.class.attribute_map.each_pair do |attr, param|
203
+ value = self.send(attr)
204
+ if value.nil?
205
+ is_nullable = self.class.openapi_nullable.include?(attr)
206
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
207
+ end
208
+
209
+ hash[param] = _to_hash(value)
210
+ end
211
+ hash
212
+ end
213
+
214
+ end
215
+
216
+ end
@@ -0,0 +1,199 @@
1
+ =begin
2
+ #Weft API
3
+
4
+ #API for agent-first payments and discovery.
5
+
6
+ The version of the OpenAPI document: 0.2.1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Weft
17
+ class User < ApiModelBase
18
+ attr_accessor :id
19
+
20
+ attr_accessor :email
21
+
22
+ attr_accessor :status
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'id' => :'id',
28
+ :'email' => :'email',
29
+ :'status' => :'status'
30
+ }
31
+ end
32
+
33
+ # Returns attribute mapping this model knows about
34
+ def self.acceptable_attribute_map
35
+ attribute_map
36
+ end
37
+
38
+ # Returns all the JSON keys this model knows about
39
+ def self.acceptable_attributes
40
+ acceptable_attribute_map.values
41
+ end
42
+
43
+ # Attribute type mapping.
44
+ def self.openapi_types
45
+ {
46
+ :'id' => :'Integer',
47
+ :'email' => :'String',
48
+ :'status' => :'String'
49
+ }
50
+ end
51
+
52
+ # List of attributes with nullable: true
53
+ def self.openapi_nullable
54
+ Set.new([
55
+ ])
56
+ end
57
+
58
+ # Initializes the object
59
+ # @param [Hash] attributes Model attributes in the form of hash
60
+ def initialize(attributes = {})
61
+ if (!attributes.is_a?(Hash))
62
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Weft::User` initialize method"
63
+ end
64
+
65
+ # check to see if the attribute exists and convert string to symbol for hash key
66
+ acceptable_attribute_map = self.class.acceptable_attribute_map
67
+ attributes = attributes.each_with_object({}) { |(k, v), h|
68
+ if (!acceptable_attribute_map.key?(k.to_sym))
69
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Weft::User`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
70
+ end
71
+ h[k.to_sym] = v
72
+ }
73
+
74
+ if attributes.key?(:'id')
75
+ self.id = attributes[:'id']
76
+ else
77
+ self.id = nil
78
+ end
79
+
80
+ if attributes.key?(:'email')
81
+ self.email = attributes[:'email']
82
+ else
83
+ self.email = nil
84
+ end
85
+
86
+ if attributes.key?(:'status')
87
+ self.status = attributes[:'status']
88
+ end
89
+ end
90
+
91
+ # Show invalid properties with the reasons. Usually used together with valid?
92
+ # @return Array for valid properties with the reasons
93
+ def list_invalid_properties
94
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
95
+ invalid_properties = Array.new
96
+ if @id.nil?
97
+ invalid_properties.push('invalid value for "id", id cannot be nil.')
98
+ end
99
+
100
+ if @email.nil?
101
+ invalid_properties.push('invalid value for "email", email cannot be nil.')
102
+ end
103
+
104
+ invalid_properties
105
+ end
106
+
107
+ # Check to see if the all the properties in the model are valid
108
+ # @return true if the model is valid
109
+ def valid?
110
+ warn '[DEPRECATED] the `valid?` method is obsolete'
111
+ return false if @id.nil?
112
+ return false if @email.nil?
113
+ true
114
+ end
115
+
116
+ # Custom attribute writer method with validation
117
+ # @param [Object] id Value to be assigned
118
+ def id=(id)
119
+ if id.nil?
120
+ fail ArgumentError, 'id cannot be nil'
121
+ end
122
+
123
+ @id = id
124
+ end
125
+
126
+ # Custom attribute writer method with validation
127
+ # @param [Object] email Value to be assigned
128
+ def email=(email)
129
+ if email.nil?
130
+ fail ArgumentError, 'email cannot be nil'
131
+ end
132
+
133
+ @email = email
134
+ end
135
+
136
+ # Checks equality by comparing each attribute.
137
+ # @param [Object] Object to be compared
138
+ def ==(o)
139
+ return true if self.equal?(o)
140
+ self.class == o.class &&
141
+ id == o.id &&
142
+ email == o.email &&
143
+ status == o.status
144
+ end
145
+
146
+ # @see the `==` method
147
+ # @param [Object] Object to be compared
148
+ def eql?(o)
149
+ self == o
150
+ end
151
+
152
+ # Calculates hash code according to all attributes.
153
+ # @return [Integer] Hash code
154
+ def hash
155
+ [id, email, status].hash
156
+ end
157
+
158
+ # Builds the object from hash
159
+ # @param [Hash] attributes Model attributes in the form of hash
160
+ # @return [Object] Returns the model itself
161
+ def self.build_from_hash(attributes)
162
+ return nil unless attributes.is_a?(Hash)
163
+ attributes = attributes.transform_keys(&:to_sym)
164
+ transformed_hash = {}
165
+ openapi_types.each_pair do |key, type|
166
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
167
+ transformed_hash["#{key}"] = nil
168
+ elsif type =~ /\AArray<(.*)>/i
169
+ # check to ensure the input is an array given that the attribute
170
+ # is documented as an array but the input is not
171
+ if attributes[attribute_map[key]].is_a?(Array)
172
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
173
+ end
174
+ elsif !attributes[attribute_map[key]].nil?
175
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
176
+ end
177
+ end
178
+ new(transformed_hash)
179
+ end
180
+
181
+ # Returns the object in the form of hash
182
+ # @return [Hash] Returns the object in the form of hash
183
+ def to_hash
184
+ hash = {}
185
+ self.class.attribute_map.each_pair do |attr, param|
186
+ value = self.send(attr)
187
+ if value.nil?
188
+ is_nullable = self.class.openapi_nullable.include?(attr)
189
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
190
+ end
191
+
192
+ hash[param] = _to_hash(value)
193
+ end
194
+ hash
195
+ end
196
+
197
+ end
198
+
199
+ end
@@ -0,0 +1,15 @@
1
+ =begin
2
+ #Weft API
3
+
4
+ #API for agent-first payments and discovery.
5
+
6
+ The version of the OpenAPI document: 0.2.1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ module Weft
14
+ VERSION = '0.2.0'
15
+ end
@@ -0,0 +1,4 @@
1
+ module Weft
2
+ module Generated
3
+ end
4
+ end
data/lib/weft/sdk.rb ADDED
@@ -0,0 +1,10 @@
1
+ module Weft
2
+ module SDK
3
+ VERSION = '0.2.0'
4
+ end
5
+ end
6
+
7
+ require_relative 'generated'
8
+ require_relative 'facilitator/client'
9
+ require_relative 'facilitator/fee'
10
+ require_relative 'facilitator/middleware'
metadata ADDED
@@ -0,0 +1,123 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: weft-sdk
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Weft Labs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-02-24 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - docs/APIKeysApi.md
21
+ - docs/AccountApi.md
22
+ - docs/AccountDetails.md
23
+ - docs/Agent.md
24
+ - docs/AgentListResponse.md
25
+ - docs/AgentResponse.md
26
+ - docs/AgentStats.md
27
+ - docs/AgentsApi.md
28
+ - docs/ApiKey.md
29
+ - docs/ApiKeyCreated.md
30
+ - docs/ApiKeyCreatedResponse.md
31
+ - docs/ApiKeyListResponse.md
32
+ - docs/AuthApi.md
33
+ - docs/AuthResponse.md
34
+ - docs/AuthResponseData.md
35
+ - docs/ConfirmRequest.md
36
+ - docs/CreateApiKeyRequest.md
37
+ - docs/DefaultApi.md
38
+ - docs/Error.md
39
+ - docs/ErrorResponse.md
40
+ - docs/MeResponse.md
41
+ - docs/MessageResponse.md
42
+ - docs/MessageResponseData.md
43
+ - docs/Pagination.md
44
+ - docs/PasswordResetRequest.md
45
+ - docs/PasswordUpdateRequest.md
46
+ - docs/Payment.md
47
+ - docs/PaymentListResponse.md
48
+ - docs/PaymentResponse.md
49
+ - docs/PaymentsApi.md
50
+ - docs/ResendConfirmationRequest.md
51
+ - docs/SignInRequest.md
52
+ - docs/SignUpRequest.md
53
+ - docs/User.md
54
+ - lib/weft/facilitator/client.rb
55
+ - lib/weft/facilitator/fee.rb
56
+ - lib/weft/facilitator/middleware.rb
57
+ - lib/weft/generated.rb
58
+ - lib/weft/generated/api/account_api.rb
59
+ - lib/weft/generated/api/agents_api.rb
60
+ - lib/weft/generated/api/api_keys_api.rb
61
+ - lib/weft/generated/api/auth_api.rb
62
+ - lib/weft/generated/api/default_api.rb
63
+ - lib/weft/generated/api/payments_api.rb
64
+ - lib/weft/generated/api_client.rb
65
+ - lib/weft/generated/api_error.rb
66
+ - lib/weft/generated/api_model_base.rb
67
+ - lib/weft/generated/configuration.rb
68
+ - lib/weft/generated/models/account_details.rb
69
+ - lib/weft/generated/models/agent.rb
70
+ - lib/weft/generated/models/agent_list_response.rb
71
+ - lib/weft/generated/models/agent_response.rb
72
+ - lib/weft/generated/models/agent_stats.rb
73
+ - lib/weft/generated/models/api_key.rb
74
+ - lib/weft/generated/models/api_key_created.rb
75
+ - lib/weft/generated/models/api_key_created_response.rb
76
+ - lib/weft/generated/models/api_key_list_response.rb
77
+ - lib/weft/generated/models/auth_response.rb
78
+ - lib/weft/generated/models/auth_response_data.rb
79
+ - lib/weft/generated/models/confirm_request.rb
80
+ - lib/weft/generated/models/create_api_key_request.rb
81
+ - lib/weft/generated/models/error.rb
82
+ - lib/weft/generated/models/error_response.rb
83
+ - lib/weft/generated/models/me_response.rb
84
+ - lib/weft/generated/models/message_response.rb
85
+ - lib/weft/generated/models/message_response_data.rb
86
+ - lib/weft/generated/models/pagination.rb
87
+ - lib/weft/generated/models/password_reset_request.rb
88
+ - lib/weft/generated/models/password_update_request.rb
89
+ - lib/weft/generated/models/payment.rb
90
+ - lib/weft/generated/models/payment_list_response.rb
91
+ - lib/weft/generated/models/payment_response.rb
92
+ - lib/weft/generated/models/resend_confirmation_request.rb
93
+ - lib/weft/generated/models/sign_in_request.rb
94
+ - lib/weft/generated/models/sign_up_request.rb
95
+ - lib/weft/generated/models/user.rb
96
+ - lib/weft/generated/version.rb
97
+ - lib/weft/sdk.rb
98
+ homepage:
99
+ licenses:
100
+ - Apache-2.0
101
+ metadata:
102
+ homepage_uri: https://github.com/weft-labs/weft-sdk
103
+ source_code_uri: https://github.com/weft-labs/weft-sdk
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 3.2.0
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubygems_version: 3.4.19
120
+ signing_key:
121
+ specification_version: 4
122
+ summary: Unified Weft SDK for the Weft API and x402 Facilitator
123
+ test_files: []