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 Aug 2, 2024
1 parent 3213f15 commit 3dbff32
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 3dbff32

Please sign in to comment.