Skip to content

Commit

Permalink
Fix field names.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Nov 11, 2022
1 parent b1d7744 commit c9e5297
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
<PackageTags>Squidex HeadlessCMS</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>9.1</Version>
<Version>9.2</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion csharp/Squidex.ClientLibrary/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageTags>Squidex HeadlessCMS</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>12.1.0</Version>
<Version>12.2.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23882,14 +23882,14 @@ public partial class SchemaDto : Resource
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInLists", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[System.ComponentModel.DataAnnotations.Required]
public FieldNames FieldsInLists { get; set; } = new FieldNames();
public System.Collections.Generic.List<string> FieldsInLists { get; set; } = new System.Collections.Generic.List<string>();

/// <summary>
/// The name of fields that are used in content references.
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInReferences", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[System.ComponentModel.DataAnnotations.Required]
public FieldNames FieldsInReferences { get; set; } = new FieldNames();
public System.Collections.Generic.List<string> FieldsInReferences { get; set; } = new System.Collections.Generic.List<string>();

/// <summary>
/// The field rules.
Expand Down Expand Up @@ -24011,12 +24011,6 @@ public partial class SchemaScriptsDto

}

[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.17.0.0 (NJsonSchema v10.8.0.0 (Newtonsoft.Json v9.0.0.0))")]
public partial class FieldNames : System.Collections.Generic.List<string>
{

}

[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.17.0.0 (NJsonSchema v10.8.0.0 (Newtonsoft.Json v9.0.0.0))")]
public partial class FieldRuleDto
{
Expand Down Expand Up @@ -24091,13 +24085,13 @@ public partial class ConfigureUIFieldsDto
/// The name of fields that are used in content lists.
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInLists", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInLists { get; set; }
public System.Collections.Generic.List<string> FieldsInLists { get; set; }

/// <summary>
/// The name of fields that are used in content references.
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInReferences", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInReferences { get; set; }
public System.Collections.Generic.List<string> FieldsInReferences { get; set; }

}

Expand Down Expand Up @@ -24182,13 +24176,13 @@ public abstract partial class UpsertSchemaDto
/// The names of the fields that should be used in references.
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInReferences", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInReferences { get; set; }
public System.Collections.Generic.List<string> FieldsInReferences { get; set; }

/// <summary>
/// The names of the fields that should be shown in lists, including meta fields.
/// </summary>
[Newtonsoft.Json.JsonProperty("fieldsInLists", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInLists { get; set; }
public System.Collections.Generic.List<string> FieldsInLists { get; set; }

/// <summary>
/// Optional fields.
Expand Down

0 comments on commit c9e5297

Please sign in to comment.