Skip to content

Commit

Permalink
Merge pull request #368 from commercetools/gen-sdk-updates
Browse files Browse the repository at this point in the history
Update generated SDKs
  • Loading branch information
kodiakhq[bot] authored Oct 22, 2024
2 parents 5a35d63 + 0f4a5c8 commit 81aa9fa
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
**Api changes**

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

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


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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public partial class EventBridgeDestination : IEventBridgeDestination
public string Region { get; set; }

public string AccountId { get; set; }

public string Source { get; set; }
public EventBridgeDestination()
{
this.Type = "EventBridge";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ public partial interface IEventBridgeDestination : IDestination

string AccountId { get; set; }

string Source { get; set; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public IComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string
p => new CombinationQueryPredicate<EventBridgeDestinationQueryBuilderDsl>(p, EventBridgeDestinationQueryBuilderDsl.Of),
PredicateFormatter.Format);
}
public IComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string> Source()
{
return new ComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string>(BinaryQueryPredicate.Of().Left(new ConstantQueryPredicate("source")),
p => new CombinationQueryPredicate<EventBridgeDestinationQueryBuilderDsl>(p, EventBridgeDestinationQueryBuilderDsl.Of),
PredicateFormatter.Format);
}

}
}
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -289,3 +289,4 @@ e985f4b7aa55610705ee49bd3eb645c2fd03eb6c
7b61d389a7b8bd5dac2d780c6b6fbea0b881400c
c27603f949e869148570ebb8bd3ec6db34a985b7
82bca33a98d14907ea79e2cca281625dd82cdf0d
c8c2455221baca20421082b7715eaa0a712af7f1

0 comments on commit 81aa9fa

Please sign in to comment.