You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2.`prefix`: (optional) The API prefix path that will be used for all API calls. If all paths in your OpenAPI spec share a common prefix, list it here. Set to the empty string if no prefix exists.
23
+
```typescript
24
+
const prefix ="/cloud/v2";
25
+
```
26
+
27
+
3. Headers: The server sends headers with each API request. We recommend not hard-coding any authentication credentials into the server file and instead using environment variables. You can modify these in the `headers` object:
0 commit comments