lib/smartsheet/endpoints/sheets/comments_attachments.rb in smartsheet-1.0.0 vs lib/smartsheet/endpoints/sheets/comments_attachments.rb in smartsheet-1.1.0

- old
+ new

@@ -1,79 +1,79 @@ -require 'smartsheet/api/file_spec' - -module Smartsheet - # Comments Attachments Endpoints - # @see https://smartsheet-platform.github.io/api-docs/?ruby#attachments API Attachments Docs - class CommentsAttachments - attr_reader :client - private :client - - def initialize(client) - @client = client - end - - def attach_url(sheet_id:, comment_id:, body:, params: {}, header_overrides: {}) - endpoint_spec = Smartsheet::API::EndpointSpec.new( - :post, - ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], - body_type: :json - ) - request_spec = Smartsheet::API::RequestSpec.new( - header_overrides: header_overrides, - params: params, - body: body, - sheet_id: sheet_id, - comment_id: comment_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def attach_file( - sheet_id:, - comment_id:, - file:, - filename:, - file_length:, - content_type: '', - params: {}, - header_overrides: {} - ) - endpoint_spec = Smartsheet::API::EndpointSpec.new( - :post, - ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], - body_type: :file - ) - request_spec = Smartsheet::API::RequestSpec.new( - header_overrides: header_overrides, - params: params, - file_spec: Smartsheet::API::ObjectFileSpec.new(file, filename, file_length, content_type), - sheet_id: sheet_id, - comment_id: comment_id - ) - client.make_request(endpoint_spec, request_spec) - end - - def attach_file_from_path( - sheet_id:, - comment_id:, - path:, - filename: nil, - content_type: '', - params: {}, - header_overrides: {} - ) - endpoint_spec = Smartsheet::API::EndpointSpec.new( - :post, - ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], - body_type: :file - ) - request_spec = Smartsheet::API::RequestSpec.new( - header_overrides: header_overrides, - params: params, - file_spec: Smartsheet::API::PathFileSpec.new(path, filename, content_type), - sheet_id: sheet_id, - comment_id: comment_id - ) - client.make_request(endpoint_spec, request_spec) - end - end +require 'smartsheet/api/file_spec' + +module Smartsheet + # Comments Attachments Endpoints + # @see https://smartsheet-platform.github.io/api-docs/?ruby#attachments API Attachments Docs + class CommentsAttachments + attr_reader :client + private :client + + def initialize(client) + @client = client + end + + def attach_url(sheet_id:, comment_id:, body:, params: {}, header_overrides: {}) + endpoint_spec = Smartsheet::API::EndpointSpec.new( + :post, + ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], + body_type: :json + ) + request_spec = Smartsheet::API::RequestSpec.new( + header_overrides: header_overrides, + params: params, + body: body, + sheet_id: sheet_id, + comment_id: comment_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def attach_file( + sheet_id:, + comment_id:, + file:, + filename:, + file_length:, + content_type: '', + params: {}, + header_overrides: {} + ) + endpoint_spec = Smartsheet::API::EndpointSpec.new( + :post, + ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], + body_type: :file + ) + request_spec = Smartsheet::API::RequestSpec.new( + header_overrides: header_overrides, + params: params, + file_spec: Smartsheet::API::ObjectFileSpec.new(file, filename, file_length, content_type), + sheet_id: sheet_id, + comment_id: comment_id + ) + client.make_request(endpoint_spec, request_spec) + end + + def attach_file_from_path( + sheet_id:, + comment_id:, + path:, + filename: nil, + content_type: '', + params: {}, + header_overrides: {} + ) + endpoint_spec = Smartsheet::API::EndpointSpec.new( + :post, + ['sheets', :sheet_id, 'comments', :comment_id, 'attachments'], + body_type: :file + ) + request_spec = Smartsheet::API::RequestSpec.new( + header_overrides: header_overrides, + params: params, + file_spec: Smartsheet::API::PathFileSpec.new(path, filename, content_type), + sheet_id: sheet_id, + comment_id: comment_id + ) + client.make_request(endpoint_spec, request_spec) + end + end end \ No newline at end of file