Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated SDKs #378

Merged
merged 1 commit into from
Nov 14, 2024
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
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
Loading