Skip to content

Commit

Permalink
build(codegen): updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Nov 14, 2024
1 parent 6fcb4c2 commit eb1e1a7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 46 deletions.
45 changes: 3 additions & 42 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,9 @@
**Api changes**

<details>
<summary>Added Type(s)</summary>
<summary>Changed Property(s)</summary>

- added type `ApprovalRuleSetCustomFieldAction`
- added type `ApprovalRuleSetCustomTypeAction`
</details>


<details>
<summary>Added Property(s)</summary>

- added property `custom` to type `ApprovalRule`
- added property `source` to type `EventBridgeDestination`
</details>


<details>
<summary>Added Enum(s)</summary>

- added enum `approval-rule` to type `CustomFieldReferenceValue`
- added enum `approval-rule` to type `ResourceTypeId`
</details>


<details>
<summary>Added Method(s)</summary>

- added method `apiRoot.withProjectKey().productTailoring().head()`
</details>

**Import changes**

<details>
<summary>Added Type(s)</summary>

- added type `NewMasterVariantAdditionNotAllowedError`
</details>

**History changes**

<details>
<summary>Required Property(s)</summary>

- changed property `id` of type `ModifiedBy` to be optional
- :warning: changed property `line` of type `GraphQLErrorLocation` from type `integer` to `number`
- :warning: changed property `column` of type `GraphQLErrorLocation` from type `integer` to `number`
</details>

Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace commercetools.Sdk.Api.Models.GraphQl

public partial class GraphQLErrorLocation : IGraphQLErrorLocation
{
public int Line { get; set; }
public long Line { get; set; }

public int Column { get; set; }
public long Column { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace commercetools.Sdk.Api.Models.GraphQl
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.GraphQl.GraphQLErrorLocation))]
public partial interface IGraphQLErrorLocation
{
int Line { get; set; }
long Line { get; set; }

int Column { get; set; }
long Column { get; set; }

}
}
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,4 @@ c8c2455221baca20421082b7715eaa0a712af7f1
d410bad973f2fe90ea8239c4cb586fe0cfc13856
6bb8d35316a92441d0a59417b49ad3a8c7037e45
605a1ff5cf861ca0d8e2711ca79374804f180b50
f254d17f05343dcc4299fc53ff9b335b5ef63d69

0 comments on commit eb1e1a7

Please sign in to comment.