forgejo 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/CHANGELOG.md~ +3 -0
  4. data/Makefile +16 -16
  5. data/README.md +68 -12
  6. data/config.yaml +21 -0
  7. data/config.yaml~ +13 -0
  8. data/docs/APIForbiddenError.md +20 -0
  9. data/docs/APIInvalidTopicsError.md +20 -0
  10. data/docs/APINotFound.md +22 -0
  11. data/docs/APIRepoArchivedError.md +20 -0
  12. data/docs/APIUnauthorizedError.md +20 -0
  13. data/docs/APIValidationError.md +20 -0
  14. data/docs/ActivitypubApi.md +133 -0
  15. data/docs/AdminApi.md +1305 -184
  16. data/docs/Attachment.md +2 -0
  17. data/docs/CreatePushMirrorOption.md +3 -1
  18. data/docs/CreateQuotaGroupOptions.md +20 -0
  19. data/docs/CreateQuotaRuleOptions.md +22 -0
  20. data/docs/EditAttachmentOptions.md +2 -0
  21. data/docs/EditQuotaRuleOptions.md +20 -0
  22. data/docs/EditRepoOption.md +2 -0
  23. data/docs/IssueApi.md +55 -55
  24. data/docs/MarkupOption.md +2 -0
  25. data/docs/NoteOptions.md +18 -0
  26. data/docs/OrganizationApi.md +386 -19
  27. data/docs/PackageApi.md +1 -1
  28. data/docs/PullRequest.md +2 -0
  29. data/docs/PushMirror.md +2 -0
  30. data/docs/QuotaGroup.md +20 -0
  31. data/docs/QuotaInfo.md +20 -0
  32. data/docs/QuotaRuleInfo.md +22 -0
  33. data/docs/QuotaUsed.md +18 -0
  34. data/docs/QuotaUsedArtifact.md +22 -0
  35. data/docs/QuotaUsedAttachment.md +24 -0
  36. data/docs/QuotaUsedAttachmentContainedIn.md +20 -0
  37. data/docs/QuotaUsedPackage.md +26 -0
  38. data/docs/QuotaUsedSize.md +22 -0
  39. data/docs/QuotaUsedSizeAssets.md +22 -0
  40. data/docs/QuotaUsedSizeAssetsAttachments.md +20 -0
  41. data/docs/QuotaUsedSizeAssetsPackages.md +18 -0
  42. data/docs/QuotaUsedSizeGit.md +18 -0
  43. data/docs/QuotaUsedSizeRepos.md +20 -0
  44. data/docs/RepoCreateReleaseAttachmentRequest.md +4 -2
  45. data/docs/Repository.md +2 -0
  46. data/docs/RepositoryApi.md +308 -72
  47. data/docs/SetUserQuotaGroupsOptions.md +18 -0
  48. data/docs/UpdateBranchRepoOption.md +18 -0
  49. data/docs/UserApi.md +390 -33
  50. data/forgejo.gemspec +12 -13
  51. data/lib/forgejo/api/activitypub_api.rb +110 -2
  52. data/lib/forgejo/api/admin_api.rb +1148 -109
  53. data/lib/forgejo/api/issue_api.rb +94 -36
  54. data/lib/forgejo/api/miscellaneous_api.rb +2 -2
  55. data/lib/forgejo/api/notification_api.rb +2 -2
  56. data/lib/forgejo/api/organization_api.rb +363 -2
  57. data/lib/forgejo/api/package_api.rb +4 -2
  58. data/lib/forgejo/api/repository_api.rb +370 -26
  59. data/lib/forgejo/api/settings_api.rb +2 -2
  60. data/lib/forgejo/api/user_api.rb +350 -8
  61. data/lib/forgejo/api_client.rb +2 -2
  62. data/lib/forgejo/api_error.rb +2 -2
  63. data/lib/forgejo/configuration.rb +2 -2
  64. data/lib/forgejo/models/access_token.rb +11 -5
  65. data/lib/forgejo/models/action_task.rb +11 -5
  66. data/lib/forgejo/models/action_task_response.rb +11 -5
  67. data/lib/forgejo/models/action_variable.rb +11 -5
  68. data/lib/forgejo/models/activity.rb +11 -5
  69. data/lib/forgejo/models/activity_pub.rb +11 -5
  70. data/lib/forgejo/models/add_collaborator_option.rb +45 -5
  71. data/lib/forgejo/models/add_time_option.rb +21 -5
  72. data/lib/forgejo/models/annotated_tag.rb +11 -5
  73. data/lib/forgejo/models/annotated_tag_object.rb +11 -5
  74. data/lib/forgejo/models/api_error.rb +11 -5
  75. data/lib/forgejo/models/api_forbidden_error.rb +229 -0
  76. data/lib/forgejo/models/api_invalid_topics_error.rb +231 -0
  77. data/lib/forgejo/models/api_not_found.rb +240 -0
  78. data/lib/forgejo/models/api_repo_archived_error.rb +229 -0
  79. data/lib/forgejo/models/api_unauthorized_error.rb +229 -0
  80. data/lib/forgejo/models/api_validation_error.rb +229 -0
  81. data/lib/forgejo/models/attachment.rb +55 -6
  82. data/lib/forgejo/models/blocked_user.rb +11 -5
  83. data/lib/forgejo/models/branch.rb +11 -5
  84. data/lib/forgejo/models/branch_protection.rb +11 -5
  85. data/lib/forgejo/models/change_file_operation.rb +21 -5
  86. data/lib/forgejo/models/change_files_options.rb +21 -5
  87. data/lib/forgejo/models/changed_file.rb +11 -5
  88. data/lib/forgejo/models/combined_status.rb +11 -5
  89. data/lib/forgejo/models/comment.rb +11 -5
  90. data/lib/forgejo/models/commit.rb +11 -5
  91. data/lib/forgejo/models/commit_affected_files.rb +11 -5
  92. data/lib/forgejo/models/commit_date_options.rb +11 -5
  93. data/lib/forgejo/models/commit_meta.rb +11 -5
  94. data/lib/forgejo/models/commit_stats.rb +11 -5
  95. data/lib/forgejo/models/commit_status.rb +11 -5
  96. data/lib/forgejo/models/commit_user.rb +11 -5
  97. data/lib/forgejo/models/compare.rb +11 -5
  98. data/lib/forgejo/models/contents_response.rb +11 -5
  99. data/lib/forgejo/models/create_access_token_option.rb +21 -5
  100. data/lib/forgejo/models/create_branch_protection_option.rb +11 -5
  101. data/lib/forgejo/models/create_branch_repo_option.rb +21 -5
  102. data/lib/forgejo/models/create_email_option.rb +11 -5
  103. data/lib/forgejo/models/create_file_options.rb +21 -5
  104. data/lib/forgejo/models/create_fork_option.rb +11 -5
  105. data/lib/forgejo/models/create_gpg_key_option.rb +21 -5
  106. data/lib/forgejo/models/create_hook_option.rb +21 -5
  107. data/lib/forgejo/models/create_issue_comment_option.rb +21 -5
  108. data/lib/forgejo/models/create_issue_option.rb +21 -5
  109. data/lib/forgejo/models/create_key_option.rb +31 -5
  110. data/lib/forgejo/models/create_label_option.rb +31 -5
  111. data/lib/forgejo/models/create_milestone_option.rb +11 -5
  112. data/lib/forgejo/models/create_o_auth2_application_options.rb +11 -5
  113. data/lib/forgejo/models/create_or_update_secret_option.rb +21 -5
  114. data/lib/forgejo/models/create_org_option.rb +21 -5
  115. data/lib/forgejo/models/create_pull_request_option.rb +11 -5
  116. data/lib/forgejo/models/create_pull_review_comment.rb +11 -5
  117. data/lib/forgejo/models/create_pull_review_options.rb +11 -5
  118. data/lib/forgejo/models/create_push_mirror_option.rb +24 -9
  119. data/lib/forgejo/models/create_quota_group_options.rb +234 -0
  120. data/lib/forgejo/models/create_quota_rule_options.rb +244 -0
  121. data/lib/forgejo/models/create_release_option.rb +21 -5
  122. data/lib/forgejo/models/create_repo_option.rb +21 -5
  123. data/lib/forgejo/models/create_status_option.rb +11 -5
  124. data/lib/forgejo/models/create_tag_option.rb +21 -5
  125. data/lib/forgejo/models/create_tag_protection_option.rb +11 -5
  126. data/lib/forgejo/models/create_team_option.rb +21 -5
  127. data/lib/forgejo/models/create_user_option.rb +31 -5
  128. data/lib/forgejo/models/create_variable_option.rb +21 -5
  129. data/lib/forgejo/models/create_wiki_page_options.rb +11 -5
  130. data/lib/forgejo/models/cron.rb +11 -5
  131. data/lib/forgejo/models/delete_email_option.rb +11 -5
  132. data/lib/forgejo/models/delete_file_options.rb +21 -5
  133. data/lib/forgejo/models/delete_labels_option.rb +11 -5
  134. data/lib/forgejo/models/deploy_key.rb +11 -5
  135. data/lib/forgejo/models/dismiss_pull_review_options.rb +11 -5
  136. data/lib/forgejo/models/dispatch_workflow_option.rb +21 -5
  137. data/lib/forgejo/models/edit_attachment_options.rb +22 -6
  138. data/lib/forgejo/models/edit_branch_protection_option.rb +11 -5
  139. data/lib/forgejo/models/edit_deadline_option.rb +21 -5
  140. data/lib/forgejo/models/edit_git_hook_option.rb +11 -5
  141. data/lib/forgejo/models/edit_hook_option.rb +11 -5
  142. data/lib/forgejo/models/edit_issue_comment_option.rb +21 -5
  143. data/lib/forgejo/models/edit_issue_option.rb +11 -5
  144. data/lib/forgejo/models/edit_label_option.rb +11 -5
  145. data/lib/forgejo/models/edit_milestone_option.rb +11 -5
  146. data/lib/forgejo/models/edit_org_option.rb +11 -5
  147. data/lib/forgejo/models/edit_pull_request_option.rb +11 -5
  148. data/lib/forgejo/models/edit_quota_rule_options.rb +234 -0
  149. data/lib/forgejo/models/edit_reaction_option.rb +11 -5
  150. data/lib/forgejo/models/edit_release_option.rb +11 -5
  151. data/lib/forgejo/models/edit_repo_option.rb +22 -6
  152. data/lib/forgejo/models/edit_tag_protection_option.rb +11 -5
  153. data/lib/forgejo/models/edit_team_option.rb +21 -5
  154. data/lib/forgejo/models/edit_user_option.rb +11 -5
  155. data/lib/forgejo/models/email.rb +11 -5
  156. data/lib/forgejo/models/external_tracker.rb +11 -5
  157. data/lib/forgejo/models/external_wiki.rb +11 -5
  158. data/lib/forgejo/models/file_commit_response.rb +11 -5
  159. data/lib/forgejo/models/file_delete_response.rb +11 -5
  160. data/lib/forgejo/models/file_links_response.rb +11 -5
  161. data/lib/forgejo/models/file_response.rb +11 -5
  162. data/lib/forgejo/models/files_response.rb +11 -5
  163. data/lib/forgejo/models/general_api_settings.rb +11 -5
  164. data/lib/forgejo/models/general_attachment_settings.rb +11 -5
  165. data/lib/forgejo/models/general_repo_settings.rb +11 -5
  166. data/lib/forgejo/models/general_ui_settings.rb +11 -5
  167. data/lib/forgejo/models/generate_repo_option.rb +31 -5
  168. data/lib/forgejo/models/git_blob_response.rb +11 -5
  169. data/lib/forgejo/models/git_entry.rb +11 -5
  170. data/lib/forgejo/models/git_hook.rb +11 -5
  171. data/lib/forgejo/models/git_object.rb +11 -5
  172. data/lib/forgejo/models/git_tree_response.rb +11 -5
  173. data/lib/forgejo/models/gitignore_template_info.rb +11 -5
  174. data/lib/forgejo/models/gpg_key.rb +11 -5
  175. data/lib/forgejo/models/gpg_key_email.rb +11 -5
  176. data/lib/forgejo/models/hook.rb +11 -5
  177. data/lib/forgejo/models/identity.rb +11 -5
  178. data/lib/forgejo/models/internal_tracker.rb +11 -5
  179. data/lib/forgejo/models/issue.rb +11 -5
  180. data/lib/forgejo/models/issue_config.rb +11 -5
  181. data/lib/forgejo/models/issue_config_contact_link.rb +11 -5
  182. data/lib/forgejo/models/issue_config_validation.rb +11 -5
  183. data/lib/forgejo/models/issue_deadline.rb +11 -5
  184. data/lib/forgejo/models/issue_form_field.rb +11 -5
  185. data/lib/forgejo/models/issue_labels_option.rb +11 -5
  186. data/lib/forgejo/models/issue_meta.rb +11 -5
  187. data/lib/forgejo/models/issue_template.rb +11 -5
  188. data/lib/forgejo/models/label.rb +11 -5
  189. data/lib/forgejo/models/label_template.rb +11 -5
  190. data/lib/forgejo/models/license_template_info.rb +11 -5
  191. data/lib/forgejo/models/licenses_template_list_entry.rb +11 -5
  192. data/lib/forgejo/models/markdown_option.rb +11 -5
  193. data/lib/forgejo/models/markup_option.rb +22 -6
  194. data/lib/forgejo/models/merge_pull_request_option.rb +11 -5
  195. data/lib/forgejo/models/migrate_repo_options.rb +31 -5
  196. data/lib/forgejo/models/milestone.rb +11 -5
  197. data/lib/forgejo/models/new_issue_pins_allowed.rb +11 -5
  198. data/lib/forgejo/models/node_info.rb +11 -5
  199. data/lib/forgejo/models/node_info_services.rb +11 -5
  200. data/lib/forgejo/models/node_info_software.rb +11 -5
  201. data/lib/forgejo/models/node_info_usage.rb +11 -5
  202. data/lib/forgejo/models/node_info_usage_users.rb +11 -5
  203. data/lib/forgejo/models/note.rb +11 -5
  204. data/lib/forgejo/models/note_options.rb +220 -0
  205. data/lib/forgejo/models/notification_count.rb +11 -5
  206. data/lib/forgejo/models/notification_subject.rb +11 -5
  207. data/lib/forgejo/models/notification_thread.rb +11 -5
  208. data/lib/forgejo/models/o_auth2_application.rb +11 -5
  209. data/lib/forgejo/models/organization.rb +11 -5
  210. data/lib/forgejo/models/organization_permissions.rb +11 -5
  211. data/lib/forgejo/models/package.rb +11 -5
  212. data/lib/forgejo/models/package_file.rb +11 -5
  213. data/lib/forgejo/models/payload_commit.rb +11 -5
  214. data/lib/forgejo/models/payload_commit_verification.rb +11 -5
  215. data/lib/forgejo/models/payload_user.rb +11 -5
  216. data/lib/forgejo/models/permission.rb +11 -5
  217. data/lib/forgejo/models/pr_branch_info.rb +11 -5
  218. data/lib/forgejo/models/public_key.rb +11 -5
  219. data/lib/forgejo/models/pull_request.rb +23 -6
  220. data/lib/forgejo/models/pull_request_meta.rb +11 -5
  221. data/lib/forgejo/models/pull_review.rb +11 -5
  222. data/lib/forgejo/models/pull_review_comment.rb +11 -5
  223. data/lib/forgejo/models/pull_review_request_options.rb +11 -5
  224. data/lib/forgejo/models/push_mirror.rb +21 -6
  225. data/lib/forgejo/models/quota_group.rb +234 -0
  226. data/lib/forgejo/models/quota_info.rb +233 -0
  227. data/lib/forgejo/models/quota_rule_info.rb +244 -0
  228. data/lib/forgejo/models/quota_used.rb +221 -0
  229. data/lib/forgejo/models/quota_used_artifact.rb +242 -0
  230. data/lib/forgejo/models/quota_used_attachment.rb +251 -0
  231. data/lib/forgejo/models/quota_used_attachment_contained_in.rb +232 -0
  232. data/lib/forgejo/models/quota_used_package.rb +262 -0
  233. data/lib/forgejo/models/quota_used_size.rb +239 -0
  234. data/lib/forgejo/models/quota_used_size_assets.rb +240 -0
  235. data/lib/forgejo/models/quota_used_size_assets_attachments.rb +232 -0
  236. data/lib/forgejo/models/quota_used_size_assets_packages.rb +222 -0
  237. data/lib/forgejo/models/quota_used_size_git.rb +222 -0
  238. data/lib/forgejo/models/quota_used_size_repos.rb +232 -0
  239. data/lib/forgejo/models/reaction.rb +11 -5
  240. data/lib/forgejo/models/reference.rb +11 -5
  241. data/lib/forgejo/models/release.rb +11 -5
  242. data/lib/forgejo/models/rename_user_option.rb +21 -5
  243. data/lib/forgejo/models/replace_flags_option.rb +11 -5
  244. data/lib/forgejo/models/repo_collaborator_permission.rb +11 -5
  245. data/lib/forgejo/models/repo_commit.rb +11 -5
  246. data/lib/forgejo/models/repo_create_release_attachment_request.rb +26 -10
  247. data/lib/forgejo/models/repo_topic_options.rb +11 -5
  248. data/lib/forgejo/models/repo_transfer.rb +11 -5
  249. data/lib/forgejo/models/repository.rb +21 -6
  250. data/lib/forgejo/models/repository_meta.rb +11 -5
  251. data/lib/forgejo/models/search_results.rb +11 -5
  252. data/lib/forgejo/models/secret.rb +11 -5
  253. data/lib/forgejo/models/server_version.rb +11 -5
  254. data/lib/forgejo/models/set_user_quota_groups_options.rb +241 -0
  255. data/lib/forgejo/models/stop_watch.rb +11 -5
  256. data/lib/forgejo/models/submit_pull_review_options.rb +11 -5
  257. data/lib/forgejo/models/tag.rb +11 -5
  258. data/lib/forgejo/models/tag_archive_download_count.rb +11 -5
  259. data/lib/forgejo/models/tag_protection.rb +11 -5
  260. data/lib/forgejo/models/team.rb +11 -5
  261. data/lib/forgejo/models/team_search200_response.rb +11 -5
  262. data/lib/forgejo/models/timeline_comment.rb +11 -5
  263. data/lib/forgejo/models/topic_name.rb +11 -5
  264. data/lib/forgejo/models/topic_response.rb +11 -5
  265. data/lib/forgejo/models/tracked_time.rb +11 -5
  266. data/lib/forgejo/models/transfer_repo_option.rb +21 -5
  267. data/lib/forgejo/models/update_branch_repo_option.rb +239 -0
  268. data/lib/forgejo/models/update_file_options.rb +31 -5
  269. data/lib/forgejo/models/update_repo_avatar_option.rb +11 -5
  270. data/lib/forgejo/models/update_user_avatar_option.rb +11 -5
  271. data/lib/forgejo/models/update_variable_option.rb +21 -5
  272. data/lib/forgejo/models/user.rb +11 -5
  273. data/lib/forgejo/models/user_heatmap_data.rb +11 -5
  274. data/lib/forgejo/models/user_search200_response.rb +11 -5
  275. data/lib/forgejo/models/user_settings.rb +11 -5
  276. data/lib/forgejo/models/user_settings_options.rb +11 -5
  277. data/lib/forgejo/models/watch_info.rb +11 -5
  278. data/lib/forgejo/models/wiki_commit.rb +11 -5
  279. data/lib/forgejo/models/wiki_commit_list.rb +11 -5
  280. data/lib/forgejo/models/wiki_page.rb +11 -5
  281. data/lib/forgejo/models/wiki_page_meta_data.rb +11 -5
  282. data/lib/forgejo/version.rb +3 -3
  283. data/lib/forgejo.rb +28 -2
  284. data/manifest.scm +6 -2
  285. data/openapi-generator-cli.jar +0 -0
  286. data/pom.xml~ +22 -0
  287. data/smoke +1 -1
  288. data/spec/models/api_forbidden_error_spec.rb +42 -0
  289. data/spec/models/api_invalid_topics_error_spec.rb +42 -0
  290. data/spec/models/api_not_found_spec.rb +48 -0
  291. data/spec/models/api_repo_archived_error_spec.rb +42 -0
  292. data/spec/models/api_unauthorized_error_spec.rb +42 -0
  293. data/spec/models/api_validation_error_spec.rb +42 -0
  294. data/spec/models/create_quota_group_options_spec.rb +42 -0
  295. data/spec/models/create_quota_rule_options_spec.rb +48 -0
  296. data/spec/models/edit_quota_rule_options_spec.rb +42 -0
  297. data/spec/models/note_options_spec.rb +36 -0
  298. data/spec/models/quota_group_spec.rb +42 -0
  299. data/spec/models/quota_info_spec.rb +42 -0
  300. data/spec/models/quota_rule_info_spec.rb +48 -0
  301. data/spec/models/quota_used_artifact_spec.rb +48 -0
  302. data/spec/models/quota_used_attachment_contained_in_spec.rb +42 -0
  303. data/spec/models/quota_used_attachment_spec.rb +54 -0
  304. data/spec/models/quota_used_package_spec.rb +60 -0
  305. data/spec/models/quota_used_size_assets_attachments_spec.rb +42 -0
  306. data/spec/models/quota_used_size_assets_packages_spec.rb +36 -0
  307. data/spec/models/quota_used_size_assets_spec.rb +48 -0
  308. data/spec/models/quota_used_size_git_spec.rb +36 -0
  309. data/spec/models/quota_used_size_repos_spec.rb +42 -0
  310. data/spec/models/quota_used_size_spec.rb +48 -0
  311. data/spec/models/quota_used_spec.rb +36 -0
  312. data/spec/models/set_user_quota_groups_options_spec.rb +36 -0
  313. data/spec/models/update_branch_repo_option_spec.rb +36 -0
  314. data/spec/spec_helper.rb +2 -2
  315. data/swagger.v1.json +2563 -338
  316. data/swagger.v1.patched.json +1 -1
  317. metadata +291 -182
  318. data/LICENSE~ +0 -9
  319. data/Makefile~ +0 -2
  320. data/patch~ +0 -1
  321. data/smoke~ +0 -1
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -29,9 +29,14 @@ module Forgejo
29
29
  }
30
30
  end
31
31
 
32
+ # Returns attribute mapping this model knows about
33
+ def self.acceptable_attribute_map
34
+ attribute_map
35
+ end
36
+
32
37
  # Returns all the JSON keys this model knows about
33
38
  def self.acceptable_attributes
34
- attribute_map.values
39
+ acceptable_attribute_map.values
35
40
  end
36
41
 
37
42
  # Attribute type mapping.
@@ -56,9 +61,10 @@ module Forgejo
56
61
  end
57
62
 
58
63
  # check to see if the attribute exists and convert string to symbol for hash key
64
+ acceptable_attribute_map = self.class.acceptable_attribute_map
59
65
  attributes = attributes.each_with_object({}) { |(k, v), h|
60
- if (!self.class.attribute_map.key?(k.to_sym))
61
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserHeatmapData`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
66
+ if (!acceptable_attribute_map.key?(k.to_sym))
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserHeatmapData`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
62
68
  end
63
69
  h[k.to_sym] = v
64
70
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -27,9 +27,14 @@ module Forgejo
27
27
  }
28
28
  end
29
29
 
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
30
35
  # Returns all the JSON keys this model knows about
31
36
  def self.acceptable_attributes
32
- attribute_map.values
37
+ acceptable_attribute_map.values
33
38
  end
34
39
 
35
40
  # Attribute type mapping.
@@ -54,9 +59,10 @@ module Forgejo
54
59
  end
55
60
 
56
61
  # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
57
63
  attributes = attributes.each_with_object({}) { |(k, v), h|
58
- if (!self.class.attribute_map.key?(k.to_sym))
59
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSearch200Response`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSearch200Response`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
60
66
  end
61
67
  h[k.to_sym] = v
62
68
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -56,9 +56,14 @@ module Forgejo
56
56
  }
57
57
  end
58
58
 
59
+ # Returns attribute mapping this model knows about
60
+ def self.acceptable_attribute_map
61
+ attribute_map
62
+ end
63
+
59
64
  # Returns all the JSON keys this model knows about
60
65
  def self.acceptable_attributes
61
- attribute_map.values
66
+ acceptable_attribute_map.values
62
67
  end
63
68
 
64
69
  # Attribute type mapping.
@@ -92,9 +97,10 @@ module Forgejo
92
97
  end
93
98
 
94
99
  # check to see if the attribute exists and convert string to symbol for hash key
100
+ acceptable_attribute_map = self.class.acceptable_attribute_map
95
101
  attributes = attributes.each_with_object({}) { |(k, v), h|
96
- if (!self.class.attribute_map.key?(k.to_sym))
97
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSettings`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
102
+ if (!acceptable_attribute_map.key?(k.to_sym))
103
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSettings`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
98
104
  end
99
105
  h[k.to_sym] = v
100
106
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -56,9 +56,14 @@ module Forgejo
56
56
  }
57
57
  end
58
58
 
59
+ # Returns attribute mapping this model knows about
60
+ def self.acceptable_attribute_map
61
+ attribute_map
62
+ end
63
+
59
64
  # Returns all the JSON keys this model knows about
60
65
  def self.acceptable_attributes
61
- attribute_map.values
66
+ acceptable_attribute_map.values
62
67
  end
63
68
 
64
69
  # Attribute type mapping.
@@ -92,9 +97,10 @@ module Forgejo
92
97
  end
93
98
 
94
99
  # check to see if the attribute exists and convert string to symbol for hash key
100
+ acceptable_attribute_map = self.class.acceptable_attribute_map
95
101
  attributes = attributes.each_with_object({}) { |(k, v), h|
96
- if (!self.class.attribute_map.key?(k.to_sym))
97
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSettingsOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
102
+ if (!acceptable_attribute_map.key?(k.to_sym))
103
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::UserSettingsOptions`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
98
104
  end
99
105
  h[k.to_sym] = v
100
106
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -40,9 +40,14 @@ module Forgejo
40
40
  }
41
41
  end
42
42
 
43
+ # Returns attribute mapping this model knows about
44
+ def self.acceptable_attribute_map
45
+ attribute_map
46
+ end
47
+
43
48
  # Returns all the JSON keys this model knows about
44
49
  def self.acceptable_attributes
45
- attribute_map.values
50
+ acceptable_attribute_map.values
46
51
  end
47
52
 
48
53
  # Attribute type mapping.
@@ -71,9 +76,10 @@ module Forgejo
71
76
  end
72
77
 
73
78
  # check to see if the attribute exists and convert string to symbol for hash key
79
+ acceptable_attribute_map = self.class.acceptable_attribute_map
74
80
  attributes = attributes.each_with_object({}) { |(k, v), h|
75
- if (!self.class.attribute_map.key?(k.to_sym))
76
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WatchInfo`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
81
+ if (!acceptable_attribute_map.key?(k.to_sym))
82
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WatchInfo`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
77
83
  end
78
84
  h[k.to_sym] = v
79
85
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -34,9 +34,14 @@ module Forgejo
34
34
  }
35
35
  end
36
36
 
37
+ # Returns attribute mapping this model knows about
38
+ def self.acceptable_attribute_map
39
+ attribute_map
40
+ end
41
+
37
42
  # Returns all the JSON keys this model knows about
38
43
  def self.acceptable_attributes
39
- attribute_map.values
44
+ acceptable_attribute_map.values
40
45
  end
41
46
 
42
47
  # Attribute type mapping.
@@ -63,9 +68,10 @@ module Forgejo
63
68
  end
64
69
 
65
70
  # check to see if the attribute exists and convert string to symbol for hash key
71
+ acceptable_attribute_map = self.class.acceptable_attribute_map
66
72
  attributes = attributes.each_with_object({}) { |(k, v), h|
67
- if (!self.class.attribute_map.key?(k.to_sym))
68
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiCommit`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
73
+ if (!acceptable_attribute_map.key?(k.to_sym))
74
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiCommit`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
69
75
  end
70
76
  h[k.to_sym] = v
71
77
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -28,9 +28,14 @@ module Forgejo
28
28
  }
29
29
  end
30
30
 
31
+ # Returns attribute mapping this model knows about
32
+ def self.acceptable_attribute_map
33
+ attribute_map
34
+ end
35
+
31
36
  # Returns all the JSON keys this model knows about
32
37
  def self.acceptable_attributes
33
- attribute_map.values
38
+ acceptable_attribute_map.values
34
39
  end
35
40
 
36
41
  # Attribute type mapping.
@@ -55,9 +60,10 @@ module Forgejo
55
60
  end
56
61
 
57
62
  # check to see if the attribute exists and convert string to symbol for hash key
63
+ acceptable_attribute_map = self.class.acceptable_attribute_map
58
64
  attributes = attributes.each_with_object({}) { |(k, v), h|
59
- if (!self.class.attribute_map.key?(k.to_sym))
60
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiCommitList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
65
+ if (!acceptable_attribute_map.key?(k.to_sym))
66
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiCommitList`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
61
67
  end
62
68
  h[k.to_sym] = v
63
69
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -47,9 +47,14 @@ module Forgejo
47
47
  }
48
48
  end
49
49
 
50
+ # Returns attribute mapping this model knows about
51
+ def self.acceptable_attribute_map
52
+ attribute_map
53
+ end
54
+
50
55
  # Returns all the JSON keys this model knows about
51
56
  def self.acceptable_attributes
52
- attribute_map.values
57
+ acceptable_attribute_map.values
53
58
  end
54
59
 
55
60
  # Attribute type mapping.
@@ -80,9 +85,10 @@ module Forgejo
80
85
  end
81
86
 
82
87
  # check to see if the attribute exists and convert string to symbol for hash key
88
+ acceptable_attribute_map = self.class.acceptable_attribute_map
83
89
  attributes = attributes.each_with_object({}) { |(k, v), h|
84
- if (!self.class.attribute_map.key?(k.to_sym))
85
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiPage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
90
+ if (!acceptable_attribute_map.key?(k.to_sym))
91
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiPage`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
86
92
  end
87
93
  h[k.to_sym] = v
88
94
  }
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -34,9 +34,14 @@ module Forgejo
34
34
  }
35
35
  end
36
36
 
37
+ # Returns attribute mapping this model knows about
38
+ def self.acceptable_attribute_map
39
+ attribute_map
40
+ end
41
+
37
42
  # Returns all the JSON keys this model knows about
38
43
  def self.acceptable_attributes
39
- attribute_map.values
44
+ acceptable_attribute_map.values
40
45
  end
41
46
 
42
47
  # Attribute type mapping.
@@ -63,9 +68,10 @@ module Forgejo
63
68
  end
64
69
 
65
70
  # check to see if the attribute exists and convert string to symbol for hash key
71
+ acceptable_attribute_map = self.class.acceptable_attribute_map
66
72
  attributes = attributes.each_with_object({}) { |(k, v), h|
67
- if (!self.class.attribute_map.key?(k.to_sym))
68
- fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiPageMetaData`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
73
+ if (!acceptable_attribute_map.key?(k.to_sym))
74
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::WikiPageMetaData`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
69
75
  end
70
76
  h[k.to_sym] = v
71
77
  }
@@ -3,13 +3,13 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
13
13
  module Forgejo
14
- VERSION = '0.1.0'
14
+ VERSION = '0.2.1'
15
15
  end
data/lib/forgejo.rb CHANGED
@@ -3,10 +3,10 @@
3
3
 
4
4
  #This documentation describes the Forgejo API.
5
5
 
6
- The version of the OpenAPI document: 8.0.3-53-9d5cce4bcc+gitea-1.22.0
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.9.0
9
+ Generator version: 7.12.0
10
10
 
11
11
  =end
12
12
 
@@ -18,6 +18,12 @@ require 'forgejo/configuration'
18
18
 
19
19
  # Models
20
20
  require 'forgejo/models/api_error'
21
+ require 'forgejo/models/api_forbidden_error'
22
+ require 'forgejo/models/api_invalid_topics_error'
23
+ require 'forgejo/models/api_not_found'
24
+ require 'forgejo/models/api_repo_archived_error'
25
+ require 'forgejo/models/api_unauthorized_error'
26
+ require 'forgejo/models/api_validation_error'
21
27
  require 'forgejo/models/access_token'
22
28
  require 'forgejo/models/action_task'
23
29
  require 'forgejo/models/action_task_response'
@@ -66,6 +72,8 @@ require 'forgejo/models/create_pull_request_option'
66
72
  require 'forgejo/models/create_pull_review_comment'
67
73
  require 'forgejo/models/create_pull_review_options'
68
74
  require 'forgejo/models/create_push_mirror_option'
75
+ require 'forgejo/models/create_quota_group_options'
76
+ require 'forgejo/models/create_quota_rule_options'
69
77
  require 'forgejo/models/create_release_option'
70
78
  require 'forgejo/models/create_repo_option'
71
79
  require 'forgejo/models/create_status_option'
@@ -93,6 +101,7 @@ require 'forgejo/models/edit_label_option'
93
101
  require 'forgejo/models/edit_milestone_option'
94
102
  require 'forgejo/models/edit_org_option'
95
103
  require 'forgejo/models/edit_pull_request_option'
104
+ require 'forgejo/models/edit_quota_rule_options'
96
105
  require 'forgejo/models/edit_reaction_option'
97
106
  require 'forgejo/models/edit_release_option'
98
107
  require 'forgejo/models/edit_repo_option'
@@ -148,6 +157,7 @@ require 'forgejo/models/node_info_software'
148
157
  require 'forgejo/models/node_info_usage'
149
158
  require 'forgejo/models/node_info_usage_users'
150
159
  require 'forgejo/models/note'
160
+ require 'forgejo/models/note_options'
151
161
  require 'forgejo/models/notification_count'
152
162
  require 'forgejo/models/notification_subject'
153
163
  require 'forgejo/models/notification_thread'
@@ -168,6 +178,20 @@ require 'forgejo/models/pull_review'
168
178
  require 'forgejo/models/pull_review_comment'
169
179
  require 'forgejo/models/pull_review_request_options'
170
180
  require 'forgejo/models/push_mirror'
181
+ require 'forgejo/models/quota_group'
182
+ require 'forgejo/models/quota_info'
183
+ require 'forgejo/models/quota_rule_info'
184
+ require 'forgejo/models/quota_used'
185
+ require 'forgejo/models/quota_used_artifact'
186
+ require 'forgejo/models/quota_used_attachment'
187
+ require 'forgejo/models/quota_used_attachment_contained_in'
188
+ require 'forgejo/models/quota_used_package'
189
+ require 'forgejo/models/quota_used_size'
190
+ require 'forgejo/models/quota_used_size_assets'
191
+ require 'forgejo/models/quota_used_size_assets_attachments'
192
+ require 'forgejo/models/quota_used_size_assets_packages'
193
+ require 'forgejo/models/quota_used_size_git'
194
+ require 'forgejo/models/quota_used_size_repos'
171
195
  require 'forgejo/models/reaction'
172
196
  require 'forgejo/models/reference'
173
197
  require 'forgejo/models/release'
@@ -183,6 +207,7 @@ require 'forgejo/models/repository_meta'
183
207
  require 'forgejo/models/search_results'
184
208
  require 'forgejo/models/secret'
185
209
  require 'forgejo/models/server_version'
210
+ require 'forgejo/models/set_user_quota_groups_options'
186
211
  require 'forgejo/models/stop_watch'
187
212
  require 'forgejo/models/submit_pull_review_options'
188
213
  require 'forgejo/models/tag'
@@ -195,6 +220,7 @@ require 'forgejo/models/topic_name'
195
220
  require 'forgejo/models/topic_response'
196
221
  require 'forgejo/models/tracked_time'
197
222
  require 'forgejo/models/transfer_repo_option'
223
+ require 'forgejo/models/update_branch_repo_option'
198
224
  require 'forgejo/models/update_file_options'
199
225
  require 'forgejo/models/update_repo_avatar_option'
200
226
  require 'forgejo/models/update_user_avatar_option'
data/manifest.scm CHANGED
@@ -1,2 +1,6 @@
1
- (specifications->manifest (list "ruby@3.1" "ruby-faraday"
2
- "ruby-faraday-multipart" "ruby-marcel"))
1
+ (specifications->manifest (list "ruby@3.1"
2
+ "ruby-faraday"
3
+ "ruby-faraday-multipart"
4
+ "ruby-marcel"
5
+ "wget"
6
+ "openjdk"))
Binary file
data/pom.xml~ ADDED
@@ -0,0 +1,22 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0"
2
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
+ <modelVersion>4.0.0</modelVersion>
6
+ <groupId>your.group.id</groupId>
7
+ <artifactId>your-artifact-id</artifactId>
8
+ <version>1.0-SNAPSHOT</version>
9
+
10
+ <properties>
11
+ <openapi-generator-version>5.3.0</openapi-generator-version>
12
+ </properties>
13
+
14
+ <dependencies>
15
+ <dependency>
16
+ <groupId>org.openapitools</groupId>
17
+ <artifactId>openapi-generator-maven-plugin</artifactId>
18
+ <version>${openapi-generator-version}</version>
19
+ </dependency>
20
+ <!-- Add other dependencies here -->
21
+ </dependencies>
22
+ </project>
data/smoke CHANGED
@@ -6,7 +6,7 @@ Forgejo.configure do |config|
6
6
  config.scheme = "https"
7
7
  config.host = "codeberg.org"
8
8
  config.base_path = "/api/v1/"
9
- config.api_key["Authorization"] = ENV["TOKEN"]
9
+ config.api_key["Authorization"] = ENV["TOKEN"] # note that token must have "token " prefixed
10
10
  config.configure_faraday_connection do |conn|
11
11
  conn.response :logger, nil, headers: true, bodies: false, log_level: :debug
12
12
  end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Forgejo API
3
+
4
+ #This documentation describes the Forgejo API.
5
+
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.12.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Forgejo::APIForbiddenError
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Forgejo::APIForbiddenError do
21
+ let(:instance) { Forgejo::APIForbiddenError.new }
22
+
23
+ describe 'test an instance of APIForbiddenError' do
24
+ it 'should create an instance of APIForbiddenError' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Forgejo::APIForbiddenError)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "message"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "url"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Forgejo API
3
+
4
+ #This documentation describes the Forgejo API.
5
+
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.12.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Forgejo::APIInvalidTopicsError
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Forgejo::APIInvalidTopicsError do
21
+ let(:instance) { Forgejo::APIInvalidTopicsError.new }
22
+
23
+ describe 'test an instance of APIInvalidTopicsError' do
24
+ it 'should create an instance of APIInvalidTopicsError' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Forgejo::APIInvalidTopicsError)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "invalid_topics"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "message"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #Forgejo API
3
+
4
+ #This documentation describes the Forgejo API.
5
+
6
+ The version of the OpenAPI document: 10.0.0-121-28886cd+gitea-1.22.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.12.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Forgejo::APINotFound
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Forgejo::APINotFound do
21
+ let(:instance) { Forgejo::APINotFound.new }
22
+
23
+ describe 'test an instance of APINotFound' do
24
+ it 'should create an instance of APINotFound' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Forgejo::APINotFound)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "errors"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "message"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "url"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ end