lib/smartsheet/endpoints/sheets/rows_attachments.rb in smartsheet-1.0.0 vs lib/smartsheet/endpoints/sheets/rows_attachments.rb in smartsheet-1.1.0
- old
+ new
@@ -1,93 +1,93 @@
-require 'smartsheet/api/file_spec'
-
-module Smartsheet
- # Rows Attachments Endpoints
- # @see https://smartsheet-platform.github.io/api-docs/?ruby#attachments API Attachments Docs
- class RowsAttachments
- attr_reader :client
- private :client
-
- def initialize(client)
- @client = client
- end
-
- def list(sheet_id:, row_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :get,
- ['sheets', :sheet_id, 'rows', :row_id, 'attachments']
- )
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- sheet_id: sheet_id,
- row_id: row_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def attach_url(sheet_id:, row_id:, body:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :post,
- ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
- body_type: :json
- )
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params,
- body: body,
- sheet_id: sheet_id,
- row_id: row_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def attach_file(
- sheet_id:,
- row_id:,
- file:,
- filename:,
- file_length:,
- content_type: '',
- params: {},
- header_overrides: {}
- )
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :post,
- ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
- body_type: :file
- )
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- file_spec: Smartsheet::API::ObjectFileSpec.new(file, filename, file_length, content_type),
- sheet_id: sheet_id,
- row_id: row_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def attach_file_from_path(
- sheet_id:,
- row_id:,
- path:,
- filename: nil,
- content_type: '',
- params: {},
- header_overrides: {}
- )
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :post,
- ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
- body_type: :file
- )
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- file_spec: Smartsheet::API::PathFileSpec.new(path, filename, content_type),
- sheet_id: sheet_id,
- row_id: row_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
- end
+require 'smartsheet/api/file_spec'
+
+module Smartsheet
+ # Rows Attachments Endpoints
+ # @see https://smartsheet-platform.github.io/api-docs/?ruby#attachments API Attachments Docs
+ class RowsAttachments
+ attr_reader :client
+ private :client
+
+ def initialize(client)
+ @client = client
+ end
+
+ def list(sheet_id:, row_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :get,
+ ['sheets', :sheet_id, 'rows', :row_id, 'attachments']
+ )
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ sheet_id: sheet_id,
+ row_id: row_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def attach_url(sheet_id:, row_id:, body:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :post,
+ ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
+ body_type: :json
+ )
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params,
+ body: body,
+ sheet_id: sheet_id,
+ row_id: row_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def attach_file(
+ sheet_id:,
+ row_id:,
+ file:,
+ filename:,
+ file_length:,
+ content_type: '',
+ params: {},
+ header_overrides: {}
+ )
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :post,
+ ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
+ body_type: :file
+ )
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ file_spec: Smartsheet::API::ObjectFileSpec.new(file, filename, file_length, content_type),
+ sheet_id: sheet_id,
+ row_id: row_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def attach_file_from_path(
+ sheet_id:,
+ row_id:,
+ path:,
+ filename: nil,
+ content_type: '',
+ params: {},
+ header_overrides: {}
+ )
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :post,
+ ['sheets', :sheet_id, 'rows', :row_id, 'attachments'],
+ body_type: :file
+ )
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ file_spec: Smartsheet::API::PathFileSpec.new(path, filename, content_type),
+ sheet_id: sheet_id,
+ row_id: row_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+ end
end
\ No newline at end of file