Skip to content

Commit b77dca7

Browse files
committed
chore: cleanup changesets
1 parent 78dec6a commit b77dca7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'@sap-cloud-sdk/openapi': minor
3+
---
4+
5+
[New Functionality] Introduce `setBasePath()` method on the OpenAPI request builder which allows to set the base path dynamically. This gets prepended with the path parameter for every request to the client.
6+
```typescript
7+
const responseData = await MyApi.myFunction()
8+
.setBasePath('/base/path/to/service')
9+
.execute(destination);
10+
```

.changeset/chilled-flowers-hide.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,3 @@
55
---
66

77
[New Functionality] Support `basePath` in the `options-per-service.json` file in the OpenAPI generator. It enables the base path to be prepended to the path parameter for every request of the generated client.
8-
Introduce `setBasePath()` method on the OpenAPI request builder which allows to set the base path dynamically for every request to the client.
9-
```typescript
10-
const responseData = await MyApi.myFunction()
11-
.setBasePath('/base/path/to/service')
12-
.execute(destination);
13-
```

0 commit comments

Comments
 (0)