Skip to content

Commit

Permalink
feat(openint): Update openint API (#33)
Browse files Browse the repository at this point in the history
* exposing pnl and balance sheet query params

* Adding transaction list

* adding account list report

* adding customer balance

* cleaning up shared params

* build and publish version

* fixing cashflow typo

* updatng openint
  • Loading branch information
pellicceama authored Oct 22, 2024
1 parent 16c6c45 commit 1aab927
Show file tree
Hide file tree
Showing 4 changed files with 763 additions and 33 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,16 @@ On the other hand OpenSDKs is most valuable when you are working with multiple 3
1. Make any changes to the `src` folder of the package, usually in the `src/{name}.oas.ts` file
2. Run `turbo run download --filter {package-name i.e. sdk-qbo}` to download the package
3. Run `turbo run generate --filter {package-name i.e. sdk-qbo}` to generate the package

Or use this single command

```
SDK=sdk-qbo && \
turbo run download --filter $SDK && \
turbo run generate --filter $SDK && \
turbo run build --filter $SDK
```

4. Run `turbo run build --filter {package-name i.e. sdk-qbo}` to build the package
5. Ensure that your changes made it to the auto generated files in the package top level folder (i.e. `{name}.oas.types.d.ts` & `{name}.oas.json`)
6. Make sure you have bumped the version in `package.json` of the package you are releasing
Expand Down
Loading

0 comments on commit 1aab927

Please sign in to comment.