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 @@ -12,7 +12,7 @@ public partial interface IOrthogonalClient
/// <param name="path"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::ScrapeGraphAI.ApiException"></exception>
global::System.Threading.Tasks.Task<string> ProxyX402PathPostAsync(
global::System.Threading.Tasks.Task<string> ProxyX402PathDeleteAsync(
string path,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public partial interface IOrthogonalClient
/// <param name="path"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::ScrapeGraphAI.ApiException"></exception>
global::System.Threading.Tasks.Task<string> ProxyX402PathPost2Async(
global::System.Threading.Tasks.Task<string> ProxyX402PathDelete2Async(
string path,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public partial interface IOrthogonalClient
/// <param name="path"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::ScrapeGraphAI.ApiException"></exception>
global::System.Threading.Tasks.Task<string> ProxyX402PathPost3Async(
global::System.Threading.Tasks.Task<string> ProxyX402PathDelete3Async(
string path,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public partial interface IOrthogonalClient
/// <param name="path"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::ScrapeGraphAI.ApiException"></exception>
global::System.Threading.Tasks.Task<string> ProxyX402PathPost4Async(
global::System.Threading.Tasks.Task<string> ProxyX402PathDelete4Async(
string path,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#nullable enable

namespace ScrapeGraphAI
{
public partial interface IOrthogonalClient
{
/// <summary>
/// Proxy<br/>
/// Proxy endpoint for Orthogonal API integration.<br/>
/// Forwards requests to https://api.orth.sh/pay/{ORTHOGONHAL_API_KEY}/{path}
/// </summary>
/// <param name="path"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::ScrapeGraphAI.ApiException"></exception>
global::System.Threading.Tasks.Task<string> ProxyX402PathDelete5Async(
string path,
global::System.Threading.CancellationToken cancellationToken = default);
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ScrapeGraphAI
{
public sealed partial class ProxyX402PathPostResponse
public sealed partial class ProxyX402PathDeleteResponse
{
/// <summary>
/// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
Expand Down Expand Up @@ -34,14 +34,14 @@ public string ToJson(
/// <summary>
/// Deserializes a JSON string using the provided JsonSerializerContext.
/// </summary>
public static global::ScrapeGraphAI.ProxyX402PathPostResponse? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse? FromJson(
string json,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return global::System.Text.Json.JsonSerializer.Deserialize(
json,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathPostResponse;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse;
}

/// <summary>
Expand All @@ -51,26 +51,26 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::ScrapeGraphAI.ProxyX402PathPostResponse? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse? FromJson(
string json,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathPostResponse>(
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathDeleteResponse>(
json,
jsonSerializerOptions);
}

/// <summary>
/// Deserializes a JSON stream using the provided JsonSerializerContext.
/// </summary>
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse?> FromJsonStreamAsync(
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
jsonStream,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathPostResponse;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse;
}

/// <summary>
Expand All @@ -80,11 +80,11 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse?> FromJsonStreamAsync(
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathPostResponse?>(
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathDeleteResponse?>(
jsonStream,
jsonSerializerOptions);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace ScrapeGraphAI
/// <summary>
///
/// </summary>
public sealed partial class ProxyX402PathPostResponse4
public sealed partial class ProxyX402PathDeleteResponse
{

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ScrapeGraphAI
{
public sealed partial class ProxyX402PathPostResponse2
public sealed partial class ProxyX402PathDeleteResponse2
{
/// <summary>
/// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
Expand Down Expand Up @@ -34,14 +34,14 @@ public string ToJson(
/// <summary>
/// Deserializes a JSON string using the provided JsonSerializerContext.
/// </summary>
public static global::ScrapeGraphAI.ProxyX402PathPostResponse2? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse2? FromJson(
string json,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return global::System.Text.Json.JsonSerializer.Deserialize(
json,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse2),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathPostResponse2;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse2),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse2;
}

/// <summary>
Expand All @@ -51,26 +51,26 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::ScrapeGraphAI.ProxyX402PathPostResponse2? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse2? FromJson(
string json,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathPostResponse2>(
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathDeleteResponse2>(
json,
jsonSerializerOptions);
}

/// <summary>
/// Deserializes a JSON stream using the provided JsonSerializerContext.
/// </summary>
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse2?> FromJsonStreamAsync(
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse2?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
jsonStream,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse2),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathPostResponse2;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse2),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse2;
}

/// <summary>
Expand All @@ -80,11 +80,11 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse2?> FromJsonStreamAsync(
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse2?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathPostResponse2?>(
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathDeleteResponse2?>(
jsonStream,
jsonSerializerOptions);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace ScrapeGraphAI
/// <summary>
///
/// </summary>
public sealed partial class ProxyX402PathPostResponse
public sealed partial class ProxyX402PathDeleteResponse2
{

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ScrapeGraphAI
{
public sealed partial class ProxyX402PathPostResponse3
public sealed partial class ProxyX402PathDeleteResponse3
{
/// <summary>
/// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
Expand Down Expand Up @@ -34,14 +34,14 @@ public string ToJson(
/// <summary>
/// Deserializes a JSON string using the provided JsonSerializerContext.
/// </summary>
public static global::ScrapeGraphAI.ProxyX402PathPostResponse3? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse3? FromJson(
string json,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return global::System.Text.Json.JsonSerializer.Deserialize(
json,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse3),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathPostResponse3;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse3),
jsonSerializerContext) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse3;
}

/// <summary>
Expand All @@ -51,26 +51,26 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::ScrapeGraphAI.ProxyX402PathPostResponse3? FromJson(
public static global::ScrapeGraphAI.ProxyX402PathDeleteResponse3? FromJson(
string json,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathPostResponse3>(
return global::System.Text.Json.JsonSerializer.Deserialize<global::ScrapeGraphAI.ProxyX402PathDeleteResponse3>(
json,
jsonSerializerOptions);
}

/// <summary>
/// Deserializes a JSON stream using the provided JsonSerializerContext.
/// </summary>
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse3?> FromJsonStreamAsync(
public static async global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse3?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
jsonStream,
typeof(global::ScrapeGraphAI.ProxyX402PathPostResponse3),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathPostResponse3;
typeof(global::ScrapeGraphAI.ProxyX402PathDeleteResponse3),
jsonSerializerContext).ConfigureAwait(false)) as global::ScrapeGraphAI.ProxyX402PathDeleteResponse3;
}

/// <summary>
Expand All @@ -80,11 +80,11 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathPostResponse3?> FromJsonStreamAsync(
public static global::System.Threading.Tasks.ValueTask<global::ScrapeGraphAI.ProxyX402PathDeleteResponse3?> FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathPostResponse3?>(
return global::System.Text.Json.JsonSerializer.DeserializeAsync<global::ScrapeGraphAI.ProxyX402PathDeleteResponse3?>(
jsonStream,
jsonSerializerOptions);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace ScrapeGraphAI
/// <summary>
///
/// </summary>
public sealed partial class ProxyX402PathPostResponse2
public sealed partial class ProxyX402PathDeleteResponse3
{

/// <summary>
Expand Down
Loading