Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove type DateTime and include various upstream changes #5

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions client/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ api_stripe_service.go
api_submit_service.go
api_user_collaborations_service.go
api_user_highlights_service.go
api_user_lists_service.go
api_user_recommendations_service.go
api_user_service.go
api_vote_service.go
Expand All @@ -28,6 +29,7 @@ configuration.go
docs/AuthenticationServiceAPI.md
docs/BakeRepoDto.md
docs/BlogSummaryServiceAPI.md
docs/CollaboratorsDto.md
docs/ContributionServiceAPI.md
docs/ContributorsServiceAPI.md
docs/CreateBlogSummaryDto.md
Expand All @@ -37,12 +39,14 @@ docs/CreateInsightMemberDto.md
docs/CreateIssueSummaryDto.md
docs/CreateUserCollaborationDto.md
docs/CreateUserHighlightDto.md
docs/CreateUserListDto.md
docs/DbBakedRepo.md
docs/DbCommitAuthors.md
docs/DbCommits.md
docs/DbContribution.md
docs/DbEmoji.md
docs/DbEndorsement.md
docs/DbFilteredUser.md
docs/DbInsight.md
docs/DbInsightMember.md
docs/DbPRInsight.md
Expand All @@ -60,6 +64,8 @@ docs/DbUserHighlight.md
docs/DbUserHighlightReaction.md
docs/DbUserHighlightReactionResponse.md
docs/DbUserHighlightRepo.md
docs/DbUserList.md
docs/DbUserListContributor.md
docs/DbUserToUserFollows.md
docs/EmojisServiceAPI.md
docs/EndorsementsServiceAPI.md
Expand All @@ -77,6 +83,8 @@ docs/GenerateCodeExplanationDto.md
docs/GenerateCodeRefactorSuggestionDto.md
docs/GenerateCodeTestSuggestionDto.md
docs/GeneratePullRequestDescriptionDto.md
docs/GetContributors200Response.md
docs/GetUserListContributors200Response.md
docs/HealthCheckServiceAPI.md
docs/HealthStatusService200Response.md
docs/HealthStatusService200ResponseInfoValue.md
Expand Down Expand Up @@ -113,25 +121,29 @@ docs/UpdateUserEmailPreferencesDto.md
docs/UpdateUserProfileInterestsDto.md
docs/UserCollaborationsServiceAPI.md
docs/UserHighlightsServiceAPI.md
docs/UserListsServiceAPI.md
docs/UserOnboardingDto.md
docs/UserRecommendationsServiceAPI.md
docs/UserServiceAPI.md
docs/VoteServiceAPI.md
docs/VotedRepoDto.md
model_bake_repo_dto.go
model_collaborators_dto.go
model_create_blog_summary_dto.go
model_create_endorsement_dto.go
model_create_insight_dto.go
model_create_insight_member_dto.go
model_create_issue_summary_dto.go
model_create_user_collaboration_dto.go
model_create_user_highlight_dto.go
model_create_user_list_dto.go
model_db_baked_repo.go
model_db_commit_authors.go
model_db_commits.go
model_db_contribution.go
model_db_emoji.go
model_db_endorsement.go
model_db_filtered_user.go
model_db_insight.go
model_db_insight_member.go
model_db_pr_insight.go
Expand All @@ -149,6 +161,8 @@ model_db_user_highlight.go
model_db_user_highlight_reaction.go
model_db_user_highlight_reaction_response.go
model_db_user_highlight_repo.go
model_db_user_list.go
model_db_user_list_contributor.go
model_db_user_to_user_follows.go
model_find_all_by_repo_id_200_response.go
model_find_all_emojis_200_response.go
Expand All @@ -164,6 +178,8 @@ model_generate_code_explanation_dto.go
model_generate_code_refactor_suggestion_dto.go
model_generate_code_test_suggestion_dto.go
model_generate_pull_request_description_dto.go
model_get_contributors_200_response.go
model_get_user_list_contributors_200_response.go
model_health_status_service_200_response.go
model_health_status_service_200_response_info_value.go
model_health_status_service_503_response.go
Expand Down
20 changes: 19 additions & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ ctx = context.WithValue(context.Background(), client.ContextOperationServerVaria

## Documentation for API Endpoints

All URIs are relative to *http://localhost:3001*
All URIs are relative to *https://api.opensauced.pizza*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
Expand Down Expand Up @@ -214,6 +214,16 @@ Class | Method | HTTP request | Description
*UserHighlightsServiceAPI* | [**GetFollowingHighlights**](docs/UserHighlightsServiceAPI.md#getfollowinghighlights) | **Get** /v1/user/highlights/following | Fetches highlights for users the authenticated user follows
*UserHighlightsServiceAPI* | [**GetUserHighlight**](docs/UserHighlightsServiceAPI.md#getuserhighlight) | **Get** /v1/user/highlights/{id} | Retrieves a highlight
*UserHighlightsServiceAPI* | [**UpdateHighlightForUser**](docs/UserHighlightsServiceAPI.md#updatehighlightforuser) | **Patch** /v1/user/highlights/{id} | Updates the highlight for the authenticated user
*UserListsServiceAPI* | [**AddListForUser**](docs/UserListsServiceAPI.md#addlistforuser) | **Post** /v1/lists | Adds a new list for the authenticated user
*UserListsServiceAPI* | [**DeleteListForUser**](docs/UserListsServiceAPI.md#deletelistforuser) | **Delete** /v1/lists/{id} | Deletes the list for the authenticated user
*UserListsServiceAPI* | [**DeleteUserListContributor**](docs/UserListsServiceAPI.md#deleteuserlistcontributor) | **Delete** /v1/lists/{id}/contributors/{userListContributorId} | Delete contributor from an individual user list
*UserListsServiceAPI* | [**GetContributors**](docs/UserListsServiceAPI.md#getcontributors) | **Get** /v1/lists/contributors | Retrieves paginated contributors
*UserListsServiceAPI* | [**GetListsForUser**](docs/UserListsServiceAPI.md#getlistsforuser) | **Get** /v1/lists | Gets lists for the authenticated user
*UserListsServiceAPI* | [**GetUserList**](docs/UserListsServiceAPI.md#getuserlist) | **Get** /v1/lists/{id} | Retrieves an individual user list
*UserListsServiceAPI* | [**GetUserListContributors**](docs/UserListsServiceAPI.md#getuserlistcontributors) | **Get** /v1/lists/{id}/contributors | Retrieves contributors for an individual user list
*UserListsServiceAPI* | [**PostUserListContributors**](docs/UserListsServiceAPI.md#postuserlistcontributors) | **Post** /v1/lists/{id}/contributors | Add new contributors to an individual user list
*UserListsServiceAPI* | [**UpdateListForUser**](docs/UserListsServiceAPI.md#updatelistforuser) | **Patch** /v1/lists/{id} | Updates the list for the authenticated user
*UserRecommendationsServiceAPI* | [**FindUserOrgsRepoRecommendations**](docs/UserRecommendationsServiceAPI.md#finduserorgsreporecommendations) | **Get** /v1/user/recommendations/orgs | Listing recommended repos for the authenticated user based on their orgs
*UserRecommendationsServiceAPI* | [**FindUserRepoRecommendations**](docs/UserRecommendationsServiceAPI.md#finduserreporecommendations) | **Get** /v1/user/recommendations/repos | Listing recommended repos for the authenticated user
*UserServiceAPI* | [**FindAllHighlightsByUsername**](docs/UserServiceAPI.md#findallhighlightsbyusername) | **Get** /v1/users/{username}/highlights | Listing all Highlights for a user and paginate them
*UserServiceAPI* | [**FindAllTopReposByUsername**](docs/UserServiceAPI.md#findalltopreposbyusername) | **Get** /v1/users/{username}/top-repos | Listing all Top Repos for a user and paginate them
Expand All @@ -223,6 +233,7 @@ Class | Method | HTTP request | Description
*UserServiceAPI* | [**GetFollowStatusByUsername**](docs/UserServiceAPI.md#getfollowstatusbyusername) | **Get** /v1/users/{username}/follow | Checks if the authenticated user follows the provided username
*UserServiceAPI* | [**GetTop10Highlights**](docs/UserServiceAPI.md#gettop10highlights) | **Get** /v1/users/top | List top users
*UserServiceAPI* | [**GetUserNotifications**](docs/UserServiceAPI.md#getusernotifications) | **Get** /v1/user/notifications | Retrieves notifications for the authenticated user
*UserServiceAPI* | [**GetUsersByFilter**](docs/UserServiceAPI.md#getusersbyfilter) | **Get** /v1/users/search | Search users
*UserServiceAPI* | [**UnfollowUserByUsername**](docs/UserServiceAPI.md#unfollowuserbyusername) | **Delete** /v1/users/{username}/follow | Unfollows a user by username
*VoteServiceAPI* | [**DownVoteOneById**](docs/VoteServiceAPI.md#downvoteonebyid) | **Delete** /v1/repos/{id}/vote | Finds a repo by :id and removes existing vote
*VoteServiceAPI* | [**DownVoteOneByOwnerAndRepo**](docs/VoteServiceAPI.md#downvoteonebyownerandrepo) | **Delete** /v1/repos/{owner}/{repo}/vote | Finds a repo by :owner and :repo and removes existing vote
Expand All @@ -235,19 +246,22 @@ Class | Method | HTTP request | Description
## Documentation For Models

- [BakeRepoDto](docs/BakeRepoDto.md)
- [CollaboratorsDto](docs/CollaboratorsDto.md)
- [CreateBlogSummaryDto](docs/CreateBlogSummaryDto.md)
- [CreateEndorsementDto](docs/CreateEndorsementDto.md)
- [CreateInsightDto](docs/CreateInsightDto.md)
- [CreateInsightMemberDto](docs/CreateInsightMemberDto.md)
- [CreateIssueSummaryDto](docs/CreateIssueSummaryDto.md)
- [CreateUserCollaborationDto](docs/CreateUserCollaborationDto.md)
- [CreateUserHighlightDto](docs/CreateUserHighlightDto.md)
- [CreateUserListDto](docs/CreateUserListDto.md)
- [DbBakedRepo](docs/DbBakedRepo.md)
- [DbCommitAuthors](docs/DbCommitAuthors.md)
- [DbCommits](docs/DbCommits.md)
- [DbContribution](docs/DbContribution.md)
- [DbEmoji](docs/DbEmoji.md)
- [DbEndorsement](docs/DbEndorsement.md)
- [DbFilteredUser](docs/DbFilteredUser.md)
- [DbInsight](docs/DbInsight.md)
- [DbInsightMember](docs/DbInsightMember.md)
- [DbPRInsight](docs/DbPRInsight.md)
Expand All @@ -265,6 +279,8 @@ Class | Method | HTTP request | Description
- [DbUserHighlightReaction](docs/DbUserHighlightReaction.md)
- [DbUserHighlightReactionResponse](docs/DbUserHighlightReactionResponse.md)
- [DbUserHighlightRepo](docs/DbUserHighlightRepo.md)
- [DbUserList](docs/DbUserList.md)
- [DbUserListContributor](docs/DbUserListContributor.md)
- [DbUserToUserFollows](docs/DbUserToUserFollows.md)
- [FindAllByRepoId200Response](docs/FindAllByRepoId200Response.md)
- [FindAllEmojis200Response](docs/FindAllEmojis200Response.md)
Expand All @@ -280,6 +296,8 @@ Class | Method | HTTP request | Description
- [GenerateCodeRefactorSuggestionDto](docs/GenerateCodeRefactorSuggestionDto.md)
- [GenerateCodeTestSuggestionDto](docs/GenerateCodeTestSuggestionDto.md)
- [GeneratePullRequestDescriptionDto](docs/GeneratePullRequestDescriptionDto.md)
- [GetContributors200Response](docs/GetContributors200Response.md)
- [GetUserListContributors200Response](docs/GetUserListContributors200Response.md)
- [HealthStatusService200Response](docs/HealthStatusService200Response.md)
- [HealthStatusService200ResponseInfoValue](docs/HealthStatusService200ResponseInfoValue.md)
- [HealthStatusService503Response](docs/HealthStatusService503Response.md)
Expand Down
Loading