config/definitions.rb in checkoff-0.97.0 vs config/definitions.rb in checkoff-0.98.0
- old
+ new
@@ -40,10 +40,12 @@
# end
# class Collection < Asana::Resources::Collection; end
# module Resources
# # https://developers.asana.com/reference/gettask
# class Task
+# # @return [String]
+# def resource_subtype; end
# # @return [String,nil]
# def due_at; end
# # @return [String,nil]
# def due_on; end
# # @return [Hash<String, String>, nil]
@@ -134,9 +136,15 @@
# end
# class Section
# # @param project_gid [String]
# # @return [Enumerable<Asana::Resources::Section>]
# def get_sections_for_project(project_gid:, options: {}); end
+# # Returns the complete record for a single section.
+# #
+# # @param [String] id - The section to get.
+# # @param options [Hash] - the request I/O options.
+# # @return [Asana::Resources::Section]
+# def find_by_id(id, options: {}); end
# end
# class Project
# # Returns the compact project records for all projects in the workspace.
# #
# # @param workspace [Strin] The workspace or organization to find projects in.