Skip to content

Commit

Permalink
SDK regeneration (#17)
Browse files Browse the repository at this point in the history
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
  • Loading branch information
fern-api[bot] committed Jun 19, 2024
1 parent f7f8932 commit 90a52f6
Show file tree
Hide file tree
Showing 64 changed files with 371 additions and 39 deletions.
20 changes: 10 additions & 10 deletions src/SchematicHQ.Client.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchematicHQ.Client", "SchematicHQ.Client\SchematicHQ.Client.csproj", "{39566A81-4008-4EE6-8000-D6F1B416C595}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchematicHQ.Client", "SchematicHQ.Client\SchematicHQ.Client.csproj", "{41730C42-98CA-44C9-97CA-B06F136101CD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchematicHQ.Client.Test", "SchematicHQ.Client.Test\SchematicHQ.Client.Test.csproj", "{90CE9020-49FA-45BB-B122-0C3A6E7FAB28}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchematicHQ.Client.Test", "SchematicHQ.Client.Test\SchematicHQ.Client.Test.csproj", "{439AE051-B290-400E-A575-103ACCA138E9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -16,13 +16,13 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{39566A81-4008-4EE6-8000-D6F1B416C595}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39566A81-4008-4EE6-8000-D6F1B416C595}.Debug|Any CPU.Build.0 = Debug|Any CPU
{39566A81-4008-4EE6-8000-D6F1B416C595}.Release|Any CPU.ActiveCfg = Release|Any CPU
{39566A81-4008-4EE6-8000-D6F1B416C595}.Release|Any CPU.Build.0 = Release|Any CPU
{90CE9020-49FA-45BB-B122-0C3A6E7FAB28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90CE9020-49FA-45BB-B122-0C3A6E7FAB28}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90CE9020-49FA-45BB-B122-0C3A6E7FAB28}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90CE9020-49FA-45BB-B122-0C3A6E7FAB28}.Release|Any CPU.Build.0 = Release|Any CPU
{41730C42-98CA-44C9-97CA-B06F136101CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41730C42-98CA-44C9-97CA-B06F136101CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41730C42-98CA-44C9-97CA-B06F136101CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41730C42-98CA-44C9-97CA-B06F136101CD}.Release|Any CPU.Build.0 = Release|Any CPU
{439AE051-B290-400E-A575-103ACCA138E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{439AE051-B290-400E-A575-103ACCA138E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{439AE051-B290-400E-A575-103ACCA138E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{439AE051-B290-400E-A575-103ACCA138E9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions src/SchematicHQ.Client/Accounts/Types/CountApiKeysParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class CountApiKeysParams
[JsonPropertyName("environment_id")]
public string? EnvironmentId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class CountApiRequestsParams
[JsonPropertyName("environment_id")]
public string? EnvironmentId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
6 changes: 6 additions & 0 deletions src/SchematicHQ.Client/Accounts/Types/ListApiKeysParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class ListApiKeysParams
[JsonPropertyName("environment_id")]
public string? EnvironmentId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class ListApiRequestsParams
[JsonPropertyName("environment_id")]
public string? EnvironmentId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class ListEnvironmentsParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
6 changes: 6 additions & 0 deletions src/SchematicHQ.Client/Billing/Types/ListProductsParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@ public class ListProductsParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

[JsonPropertyName("name")]
public string? Name { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
12 changes: 12 additions & 0 deletions src/SchematicHQ.Client/Companies/Types/CountCompaniesParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,30 @@ public class CountCompaniesParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

[JsonPropertyName("plan_id")]
public string? PlanId { get; init; }

/// <summary>
/// Search filter
/// </summary>
[JsonPropertyName("q")]
public string? Q { get; init; }

/// <summary>
/// Filter out companies that already have a company override for the specified feature ID
/// </summary>
[JsonPropertyName("without_feature_override_for")]
public string? WithoutFeatureOverrideFor { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ public class CountEntityKeyDefinitionsParams
[JsonPropertyName("key")]
public string? Key { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ public class CountEntityTraitDefinitionsParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
9 changes: 9 additions & 0 deletions src/SchematicHQ.Client/Companies/Types/CountUsersParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,24 @@ public class CountUsersParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

[JsonPropertyName("plan_id")]
public string? PlanId { get; init; }

/// <summary>
/// Search filter
/// </summary>
[JsonPropertyName("q")]
public string? Q { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class GetActiveCompanySubscriptionParams
[JsonPropertyName("company_id")]
public string? CompanyId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ public class GetActiveDealsParams
[JsonPropertyName("deal_stage")]
public string? DealStage { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class GetEntityTraitValuesParams
[JsonPropertyName("definition_id")]
public string? DefinitionId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
12 changes: 12 additions & 0 deletions src/SchematicHQ.Client/Companies/Types/ListCompaniesParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,30 @@ public class ListCompaniesParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

[JsonPropertyName("plan_id")]
public string? PlanId { get; init; }

/// <summary>
/// Search filter
/// </summary>
[JsonPropertyName("q")]
public string? Q { get; init; }

/// <summary>
/// Filter out companies that already have a company override for the specified feature ID
/// </summary>
[JsonPropertyName("without_feature_override_for")]
public string? WithoutFeatureOverrideFor { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class ListCompanyMembershipsParams
[JsonPropertyName("company_id")]
public string? CompanyId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ public class ListCompanyPlansParams
[JsonPropertyName("company_id")]
public string? CompanyId { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ public class ListEntityKeyDefinitionsParams
[JsonPropertyName("key")]
public string? Key { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ public class ListEntityTraitDefinitionsParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

Expand Down
9 changes: 9 additions & 0 deletions src/SchematicHQ.Client/Companies/Types/ListUsersParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,24 @@ public class ListUsersParams
[JsonPropertyName("ids")]
public List<string>? Ids { get; init; }

/// <summary>
/// Page limit (default 100)
/// </summary>
[JsonPropertyName("limit")]
public int? Limit { get; init; }

/// <summary>
/// Page offset (default 0)
/// </summary>
[JsonPropertyName("offset")]
public int? Offset { get; init; }

[JsonPropertyName("plan_id")]
public string? PlanId { get; init; }

/// <summary>
/// Search filter
/// </summary>
[JsonPropertyName("q")]
public string? Q { get; init; }
}
Loading

0 comments on commit 90a52f6

Please sign in to comment.