Skip to content

Commit

Permalink
Merge pull request #343 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 Aug 2, 2024
2 parents 3213f15 + 3dbff32 commit 7019a1e
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 730 deletions.
19 changes: 19 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
**Api changes**

<details>
<summary>Removed Resource(s)</summary>

- :warning: removed resource `/{projectKey}/me/carts/key={key}`
</details>


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

Expand All @@ -8,6 +15,18 @@
- added enum `customer-group` to type `CustomFieldReferenceValue`
</details>


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

- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().get()`
- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().head()`
- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().post()`
- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().delete()`
- :warning: removed method `apiRoot.withProjectKey().me().quoteRequests().withId().delete()`
- :warning: removed method `apiRoot.withProjectKey().me().quoteRequests().withKey().delete()`
</details>

**Import changes**

<details>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -75,41 +75,6 @@ public static IEnumerable<object[]> GetData()
.Build(),
"Post",
"/test_projectKey/me/quote-requests/test_ID",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithId("test_ID")
.Delete()
.WithVersion(2)
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/test_ID?version=2",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithId("test_ID")
.Delete()
.WithExpand("expand")
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/test_ID?expand=expand",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithId("test_ID")
.Delete()
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/test_ID",
}
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,41 +75,6 @@ public static IEnumerable<object[]> GetData()
.Build(),
"Post",
"/test_projectKey/me/quote-requests/key=test_key",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithKey("test_key")
.Delete()
.WithVersion(2)
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/key=test_key?version=2",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithKey("test_key")
.Delete()
.WithExpand("expand")
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/key=test_key?expand=expand",
},
new Object[] {
ApiRoot
.WithProjectKey("test_projectKey")
.Me()
.QuoteRequests()
.WithKey("test_key")
.Delete()
.Build(),
"Delete",
"/test_projectKey/me/quote-requests/key=test_key",
}
};
}
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 7019a1e

Please sign in to comment.