# frozen_string_literal: true module Seam module Clients class Devices def initialize(client:, defaults:) @client = client @defaults = defaults end def simulate @simulate ||= Seam::Clients::DevicesSimulate.new(client: @client, defaults: @defaults) end def unmanaged @unmanaged ||= Seam::Clients::DevicesUnmanaged.new(client: @client, defaults: @defaults) end def delete(device_id:) @client.post("/devices/delete", {device_id: device_id}.compact) nil end def get(device_id: nil, name: nil) res = @client.post("/devices/get", {device_id: device_id, name: name}.compact) Seam::Resources::Device.load_from_response(res.body["device"]) end def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil) res = @client.post("/devices/list", {connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, connected_account_ids: connected_account_ids, created_before: created_before, custom_metadata_has: custom_metadata_has, device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact) Seam::Resources::Device.load_from_response(res.body["devices"]) end def list_device_providers(provider_category: nil) res = @client.post("/devices/list_device_providers", {provider_category: provider_category}.compact) Seam::Resources::DeviceProvider.load_from_response(res.body["device_providers"]) end def update(device_id:, custom_metadata: nil, is_managed: nil, name: nil, properties: nil) @client.post("/devices/update", {device_id: device_id, custom_metadata: custom_metadata, is_managed: is_managed, name: name, properties: properties}.compact) nil end end end end