From 3f8f9fce1344ac23776435da757a9534b2ee47a3 Mon Sep 17 00:00:00 2001 From: gitnexbot Date: Tue, 12 Mar 2024 00:06:36 +0000 Subject: [PATCH] Synchronizing API and documentation updates --- docs/IssueApi.md | 4 ++-- src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/IssueApi.md b/docs/IssueApi.md index bd5d58a..5c7fea4 100644 --- a/docs/IssueApi.md +++ b/docs/IssueApi.md @@ -4785,7 +4785,7 @@ String type = "type_example"; // String | filter by type (issues / pulls) if set String milestones = "milestones_example"; // String | comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded Date since = new Date(); // Date | Only show items updated after the given time. This is a timestamp in RFC 3339 format Date before = new Date(); // Date | Only show items updated before the given time. This is a timestamp in RFC 3339 format -String createdBy = "createdBy_example"; // String | Only show items which were created by the the given user +String createdBy = "createdBy_example"; // String | Only show items which were created by the given user String assignedBy = "assignedBy_example"; // String | Only show items for which the given user is assigned String mentionedBy = "mentionedBy_example"; // String | Only show items in which the given user was mentioned Integer page = 56; // Integer | page number of results to return (1-based) @@ -4812,7 +4812,7 @@ Name | Type | Description | Notes **milestones** | **String**| comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded | [optional] **since** | **Date**| Only show items updated after the given time. This is a timestamp in RFC 3339 format | [optional] **before** | **Date**| Only show items updated before the given time. This is a timestamp in RFC 3339 format | [optional] - **createdBy** | **String**| Only show items which were created by the the given user | [optional] + **createdBy** | **String**| Only show items which were created by the given user | [optional] **assignedBy** | **String**| Only show items for which the given user is assigned | [optional] **mentionedBy** | **String**| Only show items in which the given user was mentioned | [optional] **page** | **Integer**| page number of results to return (1-based) | [optional] diff --git a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java index 4fb8c64..3ab2fe2 100644 --- a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java +++ b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java @@ -876,7 +876,7 @@ public interface IssueApi { * format (optional) * @param before Only show items updated before the given time. This is a timestamp in RFC 3339 * format (optional) - * @param createdBy Only show items which were created by the the given user (optional) + * @param createdBy Only show items which were created by the given user (optional) * @param assignedBy Only show items for which the given user is assigned (optional) * @param mentionedBy Only show items in which the given user was mentioned (optional) * @param page page number of results to return (1-based) (optional)