aure_ex 0.1.0

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.
@@ -0,0 +1,204 @@
1
+ =begin
2
+ #AureEX REST API
3
+
4
+ #API REST AureEX (camelCase inglês): depósitos USDT, saques USDT, conversões com origem USDT, webhooks e empresa. Auth: headers `X-Api-Key` e `X-Api-Secret`. Envelope: `{ \"success\": true, \"data\": ... }` / `{ \"success\": false, \"error\": { \"code\", \"message\", \"details\" } }`. Fonte para agentes: https://api.aure-ex.com/llms-full.txt
5
+
6
+ The version of the OpenAPI document: 0.1.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.23.0
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module AureEx
16
+ class DepositsApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Cria depósito USDT (endereço)
23
+ # @param deposit_create [DepositCreate]
24
+ # @param [Hash] opts the optional parameters
25
+ # @return [SuccessEnvelope]
26
+ def deposits_create(deposit_create, opts = {})
27
+ data, _status_code, _headers = deposits_create_with_http_info(deposit_create, opts)
28
+ data
29
+ end
30
+
31
+ # Cria depósito USDT (endereço)
32
+ # @param deposit_create [DepositCreate]
33
+ # @param [Hash] opts the optional parameters
34
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
35
+ def deposits_create_with_http_info(deposit_create, opts = {})
36
+ if @api_client.config.debugging
37
+ @api_client.config.logger.debug 'Calling API: DepositsApi.deposits_create ...'
38
+ end
39
+ # verify the required parameter 'deposit_create' is set
40
+ if @api_client.config.client_side_validation && deposit_create.nil?
41
+ fail ArgumentError, "Missing the required parameter 'deposit_create' when calling DepositsApi.deposits_create"
42
+ end
43
+ # resource path
44
+ local_var_path = '/deposits'
45
+
46
+ # query parameters
47
+ query_params = opts[:query_params] || {}
48
+
49
+ # header parameters
50
+ header_params = opts[:header_params] || {}
51
+ # HTTP header 'Accept' (if needed)
52
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
53
+ # HTTP header 'Content-Type'
54
+ content_type = @api_client.select_header_content_type(['application/json'])
55
+ if !content_type.nil?
56
+ header_params['Content-Type'] = content_type
57
+ end
58
+
59
+ # form parameters
60
+ form_params = opts[:form_params] || {}
61
+
62
+ # http body (model)
63
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(deposit_create)
64
+
65
+ # return_type
66
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
67
+
68
+ # auth_names
69
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
70
+
71
+ new_options = opts.merge(
72
+ :operation => :"DepositsApi.deposits_create",
73
+ :header_params => header_params,
74
+ :query_params => query_params,
75
+ :form_params => form_params,
76
+ :body => post_body,
77
+ :auth_names => auth_names,
78
+ :return_type => return_type
79
+ )
80
+
81
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
82
+ if @api_client.config.debugging
83
+ @api_client.config.logger.debug "API called: DepositsApi#deposits_create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
84
+ end
85
+ return data, status_code, headers
86
+ end
87
+
88
+ # Consulta depósito USDT
89
+ # @param id [String] Identificador ULID do recurso
90
+ # @param [Hash] opts the optional parameters
91
+ # @return [SuccessEnvelope]
92
+ def deposits_get(id, opts = {})
93
+ data, _status_code, _headers = deposits_get_with_http_info(id, opts)
94
+ data
95
+ end
96
+
97
+ # Consulta depósito USDT
98
+ # @param id [String] Identificador ULID do recurso
99
+ # @param [Hash] opts the optional parameters
100
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
101
+ def deposits_get_with_http_info(id, opts = {})
102
+ if @api_client.config.debugging
103
+ @api_client.config.logger.debug 'Calling API: DepositsApi.deposits_get ...'
104
+ end
105
+ # verify the required parameter 'id' is set
106
+ if @api_client.config.client_side_validation && id.nil?
107
+ fail ArgumentError, "Missing the required parameter 'id' when calling DepositsApi.deposits_get"
108
+ end
109
+ # resource path
110
+ local_var_path = '/deposits/{id}'.sub('{id}', CGI.escape(id.to_s))
111
+
112
+ # query parameters
113
+ query_params = opts[:query_params] || {}
114
+
115
+ # header parameters
116
+ header_params = opts[:header_params] || {}
117
+ # HTTP header 'Accept' (if needed)
118
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
119
+
120
+ # form parameters
121
+ form_params = opts[:form_params] || {}
122
+
123
+ # http body (model)
124
+ post_body = opts[:debug_body]
125
+
126
+ # return_type
127
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
128
+
129
+ # auth_names
130
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
131
+
132
+ new_options = opts.merge(
133
+ :operation => :"DepositsApi.deposits_get",
134
+ :header_params => header_params,
135
+ :query_params => query_params,
136
+ :form_params => form_params,
137
+ :body => post_body,
138
+ :auth_names => auth_names,
139
+ :return_type => return_type
140
+ )
141
+
142
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
143
+ if @api_client.config.debugging
144
+ @api_client.config.logger.debug "API called: DepositsApi#deposits_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
145
+ end
146
+ return data, status_code, headers
147
+ end
148
+
149
+ # Lista depósitos USDT
150
+ # @param [Hash] opts the optional parameters
151
+ # @return [SuccessEnvelope]
152
+ def deposits_list(opts = {})
153
+ data, _status_code, _headers = deposits_list_with_http_info(opts)
154
+ data
155
+ end
156
+
157
+ # Lista depósitos USDT
158
+ # @param [Hash] opts the optional parameters
159
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
160
+ def deposits_list_with_http_info(opts = {})
161
+ if @api_client.config.debugging
162
+ @api_client.config.logger.debug 'Calling API: DepositsApi.deposits_list ...'
163
+ end
164
+ # resource path
165
+ local_var_path = '/deposits'
166
+
167
+ # query parameters
168
+ query_params = opts[:query_params] || {}
169
+
170
+ # header parameters
171
+ header_params = opts[:header_params] || {}
172
+ # HTTP header 'Accept' (if needed)
173
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
174
+
175
+ # form parameters
176
+ form_params = opts[:form_params] || {}
177
+
178
+ # http body (model)
179
+ post_body = opts[:debug_body]
180
+
181
+ # return_type
182
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
183
+
184
+ # auth_names
185
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
186
+
187
+ new_options = opts.merge(
188
+ :operation => :"DepositsApi.deposits_list",
189
+ :header_params => header_params,
190
+ :query_params => query_params,
191
+ :form_params => form_params,
192
+ :body => post_body,
193
+ :auth_names => auth_names,
194
+ :return_type => return_type
195
+ )
196
+
197
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
198
+ if @api_client.config.debugging
199
+ @api_client.config.logger.debug "API called: DepositsApi#deposits_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
200
+ end
201
+ return data, status_code, headers
202
+ end
203
+ end
204
+ end
@@ -0,0 +1,333 @@
1
+ =begin
2
+ #AureEX REST API
3
+
4
+ #API REST AureEX (camelCase inglês): depósitos USDT, saques USDT, conversões com origem USDT, webhooks e empresa. Auth: headers `X-Api-Key` e `X-Api-Secret`. Envelope: `{ \"success\": true, \"data\": ... }` / `{ \"success\": false, \"error\": { \"code\", \"message\", \"details\" } }`. Fonte para agentes: https://api.aure-ex.com/llms-full.txt
5
+
6
+ The version of the OpenAPI document: 0.1.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.23.0
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module AureEx
16
+ class WebhooksApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Cria webhook
23
+ # @param webhook_create [WebhookCreate]
24
+ # @param [Hash] opts the optional parameters
25
+ # @return [SuccessEnvelope]
26
+ def webhooks_create(webhook_create, opts = {})
27
+ data, _status_code, _headers = webhooks_create_with_http_info(webhook_create, opts)
28
+ data
29
+ end
30
+
31
+ # Cria webhook
32
+ # @param webhook_create [WebhookCreate]
33
+ # @param [Hash] opts the optional parameters
34
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
35
+ def webhooks_create_with_http_info(webhook_create, opts = {})
36
+ if @api_client.config.debugging
37
+ @api_client.config.logger.debug 'Calling API: WebhooksApi.webhooks_create ...'
38
+ end
39
+ # verify the required parameter 'webhook_create' is set
40
+ if @api_client.config.client_side_validation && webhook_create.nil?
41
+ fail ArgumentError, "Missing the required parameter 'webhook_create' when calling WebhooksApi.webhooks_create"
42
+ end
43
+ # resource path
44
+ local_var_path = '/webhooks'
45
+
46
+ # query parameters
47
+ query_params = opts[:query_params] || {}
48
+
49
+ # header parameters
50
+ header_params = opts[:header_params] || {}
51
+ # HTTP header 'Accept' (if needed)
52
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
53
+ # HTTP header 'Content-Type'
54
+ content_type = @api_client.select_header_content_type(['application/json'])
55
+ if !content_type.nil?
56
+ header_params['Content-Type'] = content_type
57
+ end
58
+
59
+ # form parameters
60
+ form_params = opts[:form_params] || {}
61
+
62
+ # http body (model)
63
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(webhook_create)
64
+
65
+ # return_type
66
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
67
+
68
+ # auth_names
69
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
70
+
71
+ new_options = opts.merge(
72
+ :operation => :"WebhooksApi.webhooks_create",
73
+ :header_params => header_params,
74
+ :query_params => query_params,
75
+ :form_params => form_params,
76
+ :body => post_body,
77
+ :auth_names => auth_names,
78
+ :return_type => return_type
79
+ )
80
+
81
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
82
+ if @api_client.config.debugging
83
+ @api_client.config.logger.debug "API called: WebhooksApi#webhooks_create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
84
+ end
85
+ return data, status_code, headers
86
+ end
87
+
88
+ # Remove webhook
89
+ # @param id [String] Identificador ULID do recurso
90
+ # @param [Hash] opts the optional parameters
91
+ # @return [SuccessEnvelope]
92
+ def webhooks_delete(id, opts = {})
93
+ data, _status_code, _headers = webhooks_delete_with_http_info(id, opts)
94
+ data
95
+ end
96
+
97
+ # Remove webhook
98
+ # @param id [String] Identificador ULID do recurso
99
+ # @param [Hash] opts the optional parameters
100
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
101
+ def webhooks_delete_with_http_info(id, opts = {})
102
+ if @api_client.config.debugging
103
+ @api_client.config.logger.debug 'Calling API: WebhooksApi.webhooks_delete ...'
104
+ end
105
+ # verify the required parameter 'id' is set
106
+ if @api_client.config.client_side_validation && id.nil?
107
+ fail ArgumentError, "Missing the required parameter 'id' when calling WebhooksApi.webhooks_delete"
108
+ end
109
+ # resource path
110
+ local_var_path = '/webhooks/{id}'.sub('{id}', CGI.escape(id.to_s))
111
+
112
+ # query parameters
113
+ query_params = opts[:query_params] || {}
114
+
115
+ # header parameters
116
+ header_params = opts[:header_params] || {}
117
+ # HTTP header 'Accept' (if needed)
118
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
119
+
120
+ # form parameters
121
+ form_params = opts[:form_params] || {}
122
+
123
+ # http body (model)
124
+ post_body = opts[:debug_body]
125
+
126
+ # return_type
127
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
128
+
129
+ # auth_names
130
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
131
+
132
+ new_options = opts.merge(
133
+ :operation => :"WebhooksApi.webhooks_delete",
134
+ :header_params => header_params,
135
+ :query_params => query_params,
136
+ :form_params => form_params,
137
+ :body => post_body,
138
+ :auth_names => auth_names,
139
+ :return_type => return_type
140
+ )
141
+
142
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
143
+ if @api_client.config.debugging
144
+ @api_client.config.logger.debug "API called: WebhooksApi#webhooks_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
145
+ end
146
+ return data, status_code, headers
147
+ end
148
+
149
+ # Consulta webhook
150
+ # @param id [String] Identificador ULID do recurso
151
+ # @param [Hash] opts the optional parameters
152
+ # @return [SuccessEnvelope]
153
+ def webhooks_get(id, opts = {})
154
+ data, _status_code, _headers = webhooks_get_with_http_info(id, opts)
155
+ data
156
+ end
157
+
158
+ # Consulta webhook
159
+ # @param id [String] Identificador ULID do recurso
160
+ # @param [Hash] opts the optional parameters
161
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
162
+ def webhooks_get_with_http_info(id, opts = {})
163
+ if @api_client.config.debugging
164
+ @api_client.config.logger.debug 'Calling API: WebhooksApi.webhooks_get ...'
165
+ end
166
+ # verify the required parameter 'id' is set
167
+ if @api_client.config.client_side_validation && id.nil?
168
+ fail ArgumentError, "Missing the required parameter 'id' when calling WebhooksApi.webhooks_get"
169
+ end
170
+ # resource path
171
+ local_var_path = '/webhooks/{id}'.sub('{id}', CGI.escape(id.to_s))
172
+
173
+ # query parameters
174
+ query_params = opts[:query_params] || {}
175
+
176
+ # header parameters
177
+ header_params = opts[:header_params] || {}
178
+ # HTTP header 'Accept' (if needed)
179
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
180
+
181
+ # form parameters
182
+ form_params = opts[:form_params] || {}
183
+
184
+ # http body (model)
185
+ post_body = opts[:debug_body]
186
+
187
+ # return_type
188
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
189
+
190
+ # auth_names
191
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
192
+
193
+ new_options = opts.merge(
194
+ :operation => :"WebhooksApi.webhooks_get",
195
+ :header_params => header_params,
196
+ :query_params => query_params,
197
+ :form_params => form_params,
198
+ :body => post_body,
199
+ :auth_names => auth_names,
200
+ :return_type => return_type
201
+ )
202
+
203
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
204
+ if @api_client.config.debugging
205
+ @api_client.config.logger.debug "API called: WebhooksApi#webhooks_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
206
+ end
207
+ return data, status_code, headers
208
+ end
209
+
210
+ # Lista webhooks
211
+ # @param [Hash] opts the optional parameters
212
+ # @return [SuccessEnvelope]
213
+ def webhooks_list(opts = {})
214
+ data, _status_code, _headers = webhooks_list_with_http_info(opts)
215
+ data
216
+ end
217
+
218
+ # Lista webhooks
219
+ # @param [Hash] opts the optional parameters
220
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
221
+ def webhooks_list_with_http_info(opts = {})
222
+ if @api_client.config.debugging
223
+ @api_client.config.logger.debug 'Calling API: WebhooksApi.webhooks_list ...'
224
+ end
225
+ # resource path
226
+ local_var_path = '/webhooks'
227
+
228
+ # query parameters
229
+ query_params = opts[:query_params] || {}
230
+
231
+ # header parameters
232
+ header_params = opts[:header_params] || {}
233
+ # HTTP header 'Accept' (if needed)
234
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
235
+
236
+ # form parameters
237
+ form_params = opts[:form_params] || {}
238
+
239
+ # http body (model)
240
+ post_body = opts[:debug_body]
241
+
242
+ # return_type
243
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
244
+
245
+ # auth_names
246
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
247
+
248
+ new_options = opts.merge(
249
+ :operation => :"WebhooksApi.webhooks_list",
250
+ :header_params => header_params,
251
+ :query_params => query_params,
252
+ :form_params => form_params,
253
+ :body => post_body,
254
+ :auth_names => auth_names,
255
+ :return_type => return_type
256
+ )
257
+
258
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
259
+ if @api_client.config.debugging
260
+ @api_client.config.logger.debug "API called: WebhooksApi#webhooks_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
261
+ end
262
+ return data, status_code, headers
263
+ end
264
+
265
+ # Atualiza webhook
266
+ # @param id [String] Identificador ULID do recurso
267
+ # @param [Hash] opts the optional parameters
268
+ # @option opts [WebhookCreate] :webhook_create
269
+ # @return [SuccessEnvelope]
270
+ def webhooks_update(id, opts = {})
271
+ data, _status_code, _headers = webhooks_update_with_http_info(id, opts)
272
+ data
273
+ end
274
+
275
+ # Atualiza webhook
276
+ # @param id [String] Identificador ULID do recurso
277
+ # @param [Hash] opts the optional parameters
278
+ # @option opts [WebhookCreate] :webhook_create
279
+ # @return [Array<(SuccessEnvelope, Integer, Hash)>] SuccessEnvelope data, response status code and response headers
280
+ def webhooks_update_with_http_info(id, opts = {})
281
+ if @api_client.config.debugging
282
+ @api_client.config.logger.debug 'Calling API: WebhooksApi.webhooks_update ...'
283
+ end
284
+ # verify the required parameter 'id' is set
285
+ if @api_client.config.client_side_validation && id.nil?
286
+ fail ArgumentError, "Missing the required parameter 'id' when calling WebhooksApi.webhooks_update"
287
+ end
288
+ # resource path
289
+ local_var_path = '/webhooks/{id}'.sub('{id}', CGI.escape(id.to_s))
290
+
291
+ # query parameters
292
+ query_params = opts[:query_params] || {}
293
+
294
+ # header parameters
295
+ header_params = opts[:header_params] || {}
296
+ # HTTP header 'Accept' (if needed)
297
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
298
+ # HTTP header 'Content-Type'
299
+ content_type = @api_client.select_header_content_type(['application/json'])
300
+ if !content_type.nil?
301
+ header_params['Content-Type'] = content_type
302
+ end
303
+
304
+ # form parameters
305
+ form_params = opts[:form_params] || {}
306
+
307
+ # http body (model)
308
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'webhook_create'])
309
+
310
+ # return_type
311
+ return_type = opts[:debug_return_type] || 'SuccessEnvelope'
312
+
313
+ # auth_names
314
+ auth_names = opts[:debug_auth_names] || ['ApiKeyAuth', 'ApiSecretAuth']
315
+
316
+ new_options = opts.merge(
317
+ :operation => :"WebhooksApi.webhooks_update",
318
+ :header_params => header_params,
319
+ :query_params => query_params,
320
+ :form_params => form_params,
321
+ :body => post_body,
322
+ :auth_names => auth_names,
323
+ :return_type => return_type
324
+ )
325
+
326
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
327
+ if @api_client.config.debugging
328
+ @api_client.config.logger.debug "API called: WebhooksApi#webhooks_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
329
+ end
330
+ return data, status_code, headers
331
+ end
332
+ end
333
+ end