lib/smartsheet/endpoints/sights/sights.rb in smartsheet-1.0.0 vs lib/smartsheet/endpoints/sights/sights.rb in smartsheet-1.1.0

- old
+ new

@@ -1,102 +1,102 @@ -require_relative 'sights_share' - -module Smartsheet - # Sights Endpoints - # @see https://smartsheet-platform.github.io/api-docs/?ruby#sights API Sights Docs - # - # @!attribute [r] share - # @return [SightsShare] - class Sights - attr_reader :client, :share - private :client - - def initialize(client) - @client = client - - @share = SightsShare.new(client) - end - - def copy(sight_id:, body:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['sights', :sight_id, 'copy'], body_type: :json) - request_spec = Smartsheet::API::RequestSpec.new( - header_overrides: header_overrides, - params: params, - body: body, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def delete(sight_id:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:delete, ['sights', :sight_id]) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def get(sight_id:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights', :sight_id]) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def list(params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights']) - request_spec = Smartsheet::API::RequestSpec.new( - header_overrides: header_overrides, - params: params - ) - client.make_request(endpoint_spec, request_spec) - end - - def move(sight_id:, body:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['sights', :sight_id, 'move'], body_type: :json) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - body: body, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def get_publish_status(sight_id:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights', :sight_id, 'publish']) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def set_publish_status(sight_id:, body:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['sights', :sight_id, 'publish'], body_type: :json) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - body: body, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def update(sight_id:, body:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['sights', :sight_id], body_type: :json) - request_spec = Smartsheet::API::RequestSpec.new( - params: params, - header_overrides: header_overrides, - body: body, - sight_id: sight_id - ) - client.make_request(endpoint_spec, request_spec) - end - end +require_relative 'sights_share' + +module Smartsheet + # Sights Endpoints + # @see https://smartsheet-platform.github.io/api-docs/?ruby#sights API Sights Docs + # + # @!attribute [r] share + # @return [SightsShare] + class Sights + attr_reader :client, :share + private :client + + def initialize(client) + @client = client + + @share = SightsShare.new(client) + end + + def copy(sight_id:, body:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['sights', :sight_id, 'copy'], body_type: :json) + request_spec = Smartsheet::API::RequestSpec.new( + header_overrides: header_overrides, + params: params, + body: body, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def delete(sight_id:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:delete, ['sights', :sight_id]) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def get(sight_id:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights', :sight_id]) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def list(params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights']) + request_spec = Smartsheet::API::RequestSpec.new( + header_overrides: header_overrides, + params: params + ) + client.make_request(endpoint_spec, request_spec) + end + + def move(sight_id:, body:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['sights', :sight_id, 'move'], body_type: :json) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + body: body, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def get_publish_status(sight_id:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['sights', :sight_id, 'publish']) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def set_publish_status(sight_id:, body:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['sights', :sight_id, 'publish'], body_type: :json) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + body: body, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def update(sight_id:, body:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['sights', :sight_id], body_type: :json) + request_spec = Smartsheet::API::RequestSpec.new( + params: params, + header_overrides: header_overrides, + body: body, + sight_id: sight_id + ) + client.make_request(endpoint_spec, request_spec) + end + end end \ No newline at end of file