lib/smartsheet/endpoints/reports/reports.rb in smartsheet-1.0.0 vs lib/smartsheet/endpoints/reports/reports.rb in smartsheet-1.1.0
- old
+ new
@@ -1,101 +1,101 @@
-require 'smartsheet/constants'
-
-require_relative 'reports_share'
-
-module Smartsheet
- # Reports Endpoints
- # @see https://smartsheet-platform.github.io/api-docs/?ruby#reports API Reports Docs
- #
- # @!attribute [r] share
- # @return [ReportsShare]
- class Reports
- include Smartsheet::Constants
-
- attr_reader :client, :share
- private :client
-
- def initialize(client)
- @client = client
-
- @share = ReportsShare.new(client)
- end
-
- def get(report_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports', :report_id])
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def get_as_excel(report_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :get,
- ['reports', :report_id],
- headers: {Accept: EXCEL_TYPE}
- )
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def get_as_csv(report_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(
- :get,
- ['reports', :report_id],
- headers: {Accept: CSV_TYPE})
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def list(params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports'])
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def get_publish_status(report_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports', :report_id, 'publish'])
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def set_publish_status(report_id:, body:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['reports', :report_id, 'publish'], body_type: :json)
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- body: body,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def send_via_email(report_id:, body:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['reports', :report_id, 'emails'], body_type: :json)
- request_spec = Smartsheet::API::RequestSpec.new(
- params: params,
- header_overrides: header_overrides,
- body: body,
- report_id: report_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
- end
+require 'smartsheet/constants'
+
+require_relative 'reports_share'
+
+module Smartsheet
+ # Reports Endpoints
+ # @see https://smartsheet-platform.github.io/api-docs/?ruby#reports API Reports Docs
+ #
+ # @!attribute [r] share
+ # @return [ReportsShare]
+ class Reports
+ include Smartsheet::Constants
+
+ attr_reader :client, :share
+ private :client
+
+ def initialize(client)
+ @client = client
+
+ @share = ReportsShare.new(client)
+ end
+
+ def get(report_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports', :report_id])
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def get_as_excel(report_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :get,
+ ['reports', :report_id],
+ headers: {Accept: EXCEL_TYPE}
+ )
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def get_as_csv(report_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(
+ :get,
+ ['reports', :report_id],
+ headers: {Accept: CSV_TYPE})
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def list(params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports'])
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def get_publish_status(report_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['reports', :report_id, 'publish'])
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def set_publish_status(report_id:, body:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:put, ['reports', :report_id, 'publish'], body_type: :json)
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ body: body,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def send_via_email(report_id:, body:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:post, ['reports', :report_id, 'emails'], body_type: :json)
+ request_spec = Smartsheet::API::RequestSpec.new(
+ params: params,
+ header_overrides: header_overrides,
+ body: body,
+ report_id: report_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+ end
end
\ No newline at end of file