Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public partial class ApiEndpointsClient
partial void PrepareListProjectsArguments(
global::System.Net.Http.HttpClient httpClient,
ref string? name,
ref global::System.Guid? createdBy,
ref string? createdBy,
ref global::System.DateTime? createdAfter,
ref global::System.DateTime? createdBefore,
ref global::System.DateTime? updatedAfter,
Expand All @@ -41,7 +41,7 @@ partial void PrepareListProjectsRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string? name,
global::System.Guid? createdBy,
string? createdBy,
global::System.DateTime? createdAfter,
global::System.DateTime? createdBefore,
global::System.DateTime? updatedAfter,
Expand Down Expand Up @@ -87,7 +87,7 @@ partial void ProcessListProjectsResponseContent(
/// <exception cref="global::Descript.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Descript.ListProjectsResponse> ListProjectsAsync(
string? name = default,
global::System.Guid? createdBy = default,
string? createdBy = default,
global::System.DateTime? createdAfter = default,
global::System.DateTime? createdBefore = default,
global::System.DateTime? updatedAfter = default,
Expand Down Expand Up @@ -141,7 +141,7 @@ partial void ProcessListProjectsResponseContent(
baseUri: HttpClient.BaseAddress);
__pathBuilder
.AddOptionalParameter("name", name)
.AddOptionalParameter("created_by", createdBy?.ToString())
.AddOptionalParameter("created_by", createdBy)
.AddOptionalParameter("created_after", createdAfter?.ToString("yyyy-MM-ddTHH:mm:ssZ"))
.AddOptionalParameter("created_before", createdBefore?.ToString("yyyy-MM-ddTHH:mm:ssZ"))
.AddOptionalParameter("updated_after", updatedAfter?.ToString("yyyy-MM-ddTHH:mm:ssZ"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public partial interface IApiEndpointsClient
/// <exception cref="global::Descript.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Descript.ListProjectsResponse> ListProjectsAsync(
string? name = default,
global::System.Guid? createdBy = default,
string? createdBy = default,
global::System.DateTime? createdAfter = default,
global::System.DateTime? createdBefore = default,
global::System.DateTime? updatedAfter = default,
Expand Down
3 changes: 1 addition & 2 deletions src/libs/Descript/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1558,11 +1558,10 @@ paths:
type: string
- in: query
name: created_by
description: Filter projects created by this user UUID.
description: Filter projects created by this user UUID. Pass `me` to filter by the authenticated user.
required: false
schema:
type: string
format: uuid
- in: query
name: created_after
description: Filter projects created after this ISO 8601 timestamp.
Expand Down