Skip to content

Commit

Permalink
release v2024.8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarshanbhag committed Aug 23, 2024
1 parent 6e641bc commit 8d6ef21
Show file tree
Hide file tree
Showing 16 changed files with 1,788 additions and 12 deletions.
2 changes: 1 addition & 1 deletion turnkey_client/.swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.58
3.0.61
6 changes: 6 additions & 0 deletions turnkey_client/lib/turnkey_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,18 @@
require 'turnkey_client/models/delete_private_key_tags_intent'
require 'turnkey_client/models/delete_private_key_tags_request'
require 'turnkey_client/models/delete_private_key_tags_result'
require 'turnkey_client/models/delete_private_keys_intent'
require 'turnkey_client/models/delete_private_keys_request'
require 'turnkey_client/models/delete_private_keys_result'
require 'turnkey_client/models/delete_user_tags_intent'
require 'turnkey_client/models/delete_user_tags_request'
require 'turnkey_client/models/delete_user_tags_result'
require 'turnkey_client/models/delete_users_intent'
require 'turnkey_client/models/delete_users_request'
require 'turnkey_client/models/delete_users_result'
require 'turnkey_client/models/delete_wallets_intent'
require 'turnkey_client/models/delete_wallets_request'
require 'turnkey_client/models/delete_wallets_result'
require 'turnkey_client/models/disable_private_key_intent'
require 'turnkey_client/models/disable_private_key_result'
require 'turnkey_client/models/effect'
Expand Down
58 changes: 58 additions & 0 deletions turnkey_client/lib/turnkey_client/api/private_keys_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,64 @@ def create_private_keys_with_http_info(body, opts = {})
end
return data, status_code, headers
end
# Delete organization private keys
# Deletes private keys for an organization
# @param body
# @param [Hash] opts the optional parameters
# @return [ActivityResponse]
def delete_private_keys(body, opts = {})
data, _status_code, _headers = delete_private_keys_with_http_info(body, opts)
data
end

# Delete organization private keys
# Deletes private keys for an organization
# @param body
# @param [Hash] opts the optional parameters
# @return [Array<(ActivityResponse, Integer, Hash)>] ActivityResponse data, response status code and response headers
def delete_private_keys_with_http_info(body, opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: PrivateKeysApi.delete_private_keys ...'
end
# verify the required parameter 'body' is set
if @api_client.config.client_side_validation && body.nil?
fail ArgumentError, "Missing the required parameter 'body' when calling PrivateKeysApi.delete_private_keys"
end
# resource path
local_var_path = '/public/v1/submit/delete_private_keys'

# query parameters
query_params = opts[:query_params] || {}

# header parameters
header_params = opts[:header_params] || {}
# HTTP header 'Accept' (if needed)
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
# HTTP header 'Content-Type'
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

# form parameters
form_params = opts[:form_params] || {}

# http body (model)
post_body = opts[:body] || @api_client.object_to_http_body(body)

return_type = opts[:return_type] || 'ActivityResponse'

auth_names = opts[:auth_names] || ['ApiKeyAuth', 'AuthenticatorAuth']
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
:header_params => header_params,
:query_params => query_params,
:form_params => form_params,
:body => post_body,
:auth_names => auth_names,
:return_type => return_type)

if @api_client.config.debugging
@api_client.config.logger.debug "API called: PrivateKeysApi#delete_private_keys\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end
# Export Private Key
# Exports a Private Key
# @param body
Expand Down
58 changes: 58 additions & 0 deletions turnkey_client/lib/turnkey_client/api/wallets_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,64 @@ def create_wallet_accounts_with_http_info(body, opts = {})
end
return data, status_code, headers
end
# Delete organization wallets
# Deletes wallets for an organization
# @param body
# @param [Hash] opts the optional parameters
# @return [ActivityResponse]
def delete_wallets(body, opts = {})
data, _status_code, _headers = delete_wallets_with_http_info(body, opts)
data
end

# Delete organization wallets
# Deletes wallets for an organization
# @param body
# @param [Hash] opts the optional parameters
# @return [Array<(ActivityResponse, Integer, Hash)>] ActivityResponse data, response status code and response headers
def delete_wallets_with_http_info(body, opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: WalletsApi.delete_wallets ...'
end
# verify the required parameter 'body' is set
if @api_client.config.client_side_validation && body.nil?
fail ArgumentError, "Missing the required parameter 'body' when calling WalletsApi.delete_wallets"
end
# resource path
local_var_path = '/public/v1/submit/delete_wallets'

# query parameters
query_params = opts[:query_params] || {}

# header parameters
header_params = opts[:header_params] || {}
# HTTP header 'Accept' (if needed)
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
# HTTP header 'Content-Type'
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

# form parameters
form_params = opts[:form_params] || {}

# http body (model)
post_body = opts[:body] || @api_client.object_to_http_body(body)

return_type = opts[:return_type] || 'ActivityResponse'

auth_names = opts[:auth_names] || ['ApiKeyAuth', 'AuthenticatorAuth']
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
:header_params => header_params,
:query_params => query_params,
:form_params => form_params,
:body => post_body,
:auth_names => auth_names,
:return_type => return_type)

if @api_client.config.debugging
@api_client.config.logger.debug "API called: WalletsApi#delete_wallets\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end
# Export Wallet
# Exports a Wallet
# @param body
Expand Down
2 changes: 2 additions & 0 deletions turnkey_client/lib/turnkey_client/models/activity_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ class ActivityType
CREATE_READ_WRITE_SESSION = 'ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION'.freeze
EMAIL_AUTH_V2 = 'ACTIVITY_TYPE_EMAIL_AUTH_V2'.freeze
CREATE_SUB_ORGANIZATION_V6 = 'ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6'.freeze
DELETE_PRIVATE_KEYS = 'ACTIVITY_TYPE_DELETE_PRIVATE_KEYS'.freeze
DELETE_WALLETS = 'ACTIVITY_TYPE_DELETE_WALLETS'.freeze

# Builds the enum from string
# @param [String] The enum value in the form of the string
Expand Down
223 changes: 223 additions & 0 deletions turnkey_client/lib/turnkey_client/models/delete_private_keys_intent.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
=begin
#API Reference
#Review our [API Introduction](../api-introduction) to get started.
OpenAPI spec version: 1.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
=end

require 'date'

module TurnkeyClient
class DeletePrivateKeysIntent
# List of unique identifiers for private keys within an organization
attr_accessor :private_key_ids

# Optional parameter for deleting the private keys, even if any have not been previously exported. If they have been exported, this field is ignored.
attr_accessor :delete_without_export

# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
:'private_key_ids' => :'privateKeyIds',
:'delete_without_export' => :'deleteWithoutExport'
}
end

# Attribute type mapping.
def self.openapi_types
{
:'private_key_ids' => :'Object',
:'delete_without_export' => :'Object'
}
end

# List of attributes with nullable: true
def self.openapi_nullable
Set.new([
])
end

# Initializes the object
# @param [Hash] attributes Model attributes in the form of hash
def initialize(attributes = {})
if (!attributes.is_a?(Hash))
fail ArgumentError, "The input argument (attributes) must be a hash in `TurnkeyClient::DeletePrivateKeysIntent` initialize method"
end

# check to see if the attribute exists and convert string to symbol for hash key
attributes = attributes.each_with_object({}) { |(k, v), h|
if (!self.class.attribute_map.key?(k.to_sym))
fail ArgumentError, "`#{k}` is not a valid attribute in `TurnkeyClient::DeletePrivateKeysIntent`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
end
h[k.to_sym] = v
}

if attributes.key?(:'private_key_ids')
if (value = attributes[:'private_key_ids']).is_a?(Array)
self.private_key_ids = value
end
end

if attributes.key?(:'delete_without_export')
self.delete_without_export = attributes[:'delete_without_export']
end
end

# Show invalid properties with the reasons. Usually used together with valid?
# @return Array for valid properties with the reasons
def list_invalid_properties
invalid_properties = Array.new
if @private_key_ids.nil?
invalid_properties.push('invalid value for "private_key_ids", private_key_ids cannot be nil.')
end

invalid_properties
end

# Check to see if the all the properties in the model are valid
# @return true if the model is valid
def valid?
return false if @private_key_ids.nil?
true
end

# Checks equality by comparing each attribute.
# @param [Object] Object to be compared
def ==(o)
return true if self.equal?(o)
self.class == o.class &&
private_key_ids == o.private_key_ids &&
delete_without_export == o.delete_without_export
end

# @see the `==` method
# @param [Object] Object to be compared
def eql?(o)
self == o
end

# Calculates hash code according to all attributes.
# @return [Integer] Hash code
def hash
[private_key_ids, delete_without_export].hash
end

# Builds the object from hash
# @param [Hash] attributes Model attributes in the form of hash
# @return [Object] Returns the model itself
def self.build_from_hash(attributes)
new.build_from_hash(attributes)
end

# Builds the object from hash
# @param [Hash] attributes Model attributes in the form of hash
# @return [Object] Returns the model itself
def build_from_hash(attributes)
return nil unless attributes.is_a?(Hash)
self.class.openapi_types.each_pair do |key, type|
if type =~ /\AArray<(.*)>/i
# check to ensure the input is an array given that the attribute
# is documented as an array but the input is not
if attributes[self.class.attribute_map[key]].is_a?(Array)
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
end
elsif !attributes[self.class.attribute_map[key]].nil?
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
self.send("#{key}=", nil)
end
end

self
end

# Deserializes the data based on type
# @param string type Data type
# @param string value Value to be deserialized
# @return [Object] Deserialized data
def _deserialize(type, value)
case type.to_sym
when :DateTime
DateTime.parse(value)
when :Date
Date.parse(value)
when :String
value.to_s
when :Integer
value.to_i
when :Float
value.to_f
when :Boolean
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
true
else
false
end
when :Object
# generic object (usually a Hash), return directly
value
when /\AArray<(?<inner_type>.+)>\z/
inner_type = Regexp.last_match[:inner_type]
value.map { |v| _deserialize(inner_type, v) }
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
k_type = Regexp.last_match[:k_type]
v_type = Regexp.last_match[:v_type]
{}.tap do |hash|
value.each do |k, v|
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
end
end
else # model
TurnkeyClient.const_get(type).build_from_hash(value)
end
end

# Returns the string representation of the object
# @return [String] String presentation of the object
def to_s
to_hash.to_s
end

# to_body is an alias to to_hash (backward compatibility)
# @return [Hash] Returns the object in the form of hash
def to_body
to_hash
end

# Returns the object in the form of hash
# @return [Hash] Returns the object in the form of hash
def to_hash
hash = {}
self.class.attribute_map.each_pair do |attr, param|
value = self.send(attr)
if value.nil?
is_nullable = self.class.openapi_nullable.include?(attr)
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
end

hash[param] = _to_hash(value)
end
hash
end

# Outputs non-array value in the form of hash
# For object, use to_hash. Otherwise, just return the value
# @param [Object] value Any valid value
# @return [Hash] Returns the value in the form of hash
def _to_hash(value)
if value.is_a?(Array)
value.compact.map { |v| _to_hash(v) }
elsif value.is_a?(Hash)
{}.tap do |hash|
value.each { |k, v| hash[k] = _to_hash(v) }
end
elsif value.respond_to? :to_hash
value.to_hash
else
value
end
end end
end
Loading

0 comments on commit 8d6ef21

Please sign in to comment.