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
10 changes: 5 additions & 5 deletions src/libs/Runway/Generated/Runway.IRunwayClient.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ public partial interface IRunwayClient : global::System.IDisposable
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }


/// <summary>
///
/// </summary>
public OrganizationClient Organization { get; }

/// <summary>
/// These endpoints all kick off tasks to create generations.
/// </summary>
Expand All @@ -55,10 +60,5 @@ public partial interface IRunwayClient : global::System.IDisposable
/// </summary>
public UploadsClient Uploads { get; }

/// <summary>
///
/// </summary>
public OrganizationClient Organization { get; }

}
}
16 changes: 8 additions & 8 deletions src/libs/Runway/Generated/Runway.RunwayClient.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,36 +38,36 @@ public sealed partial class RunwayClient : global::Runway.IRunwayClient, global:


/// <summary>
/// These endpoints all kick off tasks to create generations.
///
/// </summary>
public StartGeneratingClient StartGenerating => new StartGeneratingClient(HttpClient, authorizations: Authorizations)
public OrganizationClient Organization => new OrganizationClient(HttpClient, authorizations: Authorizations)
{
ReadResponseAsString = ReadResponseAsString,
JsonSerializerContext = JsonSerializerContext,
};

/// <summary>
/// Endpoints for managing tasks that have been submitted.
/// These endpoints all kick off tasks to create generations.
/// </summary>
public TaskManagementClient TaskManagement => new TaskManagementClient(HttpClient, authorizations: Authorizations)
public StartGeneratingClient StartGenerating => new StartGeneratingClient(HttpClient, authorizations: Authorizations)
{
ReadResponseAsString = ReadResponseAsString,
JsonSerializerContext = JsonSerializerContext,
};

/// <summary>
/// Endpoints for uploading media files.
/// Endpoints for managing tasks that have been submitted.
/// </summary>
public UploadsClient Uploads => new UploadsClient(HttpClient, authorizations: Authorizations)
public TaskManagementClient TaskManagement => new TaskManagementClient(HttpClient, authorizations: Authorizations)
{
ReadResponseAsString = ReadResponseAsString,
JsonSerializerContext = JsonSerializerContext,
};

/// <summary>
///
/// Endpoints for uploading media files.
/// </summary>
public OrganizationClient Organization => new OrganizationClient(HttpClient, authorizations: Authorizations)
public UploadsClient Uploads => new UploadsClient(HttpClient, authorizations: Authorizations)
{
ReadResponseAsString = ReadResponseAsString,
JsonSerializerContext = JsonSerializerContext,
Expand Down