Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.3.0 - 2026-07-07

### 🚀 New Features

- **Entity Onboardings**: Added `onboardings` resource under v2 entities to manage the onboarding process
- `list`, `get`, `create` and `submit` methods for onboardings
- `upload_document` to upload a document to a specific slot
- `upload_shareholder_document` to upload a shareholder's document
- `upload_legal_representative_document` to upload a legal representative's document
- **Entity Creation**: Added `create` method for entities in the v2 API
- **Webhook Endpoints**: Added `webhook_endpoints` manager to create, retrieve, list, update, delete and test webhook endpoints
- **Multipart Uploads**: The HTTP client now supports `multipart/form-data` requests, used for document uploads

## 1.2.0 - 2026-04-08

### 🚀 New Features
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
fintoc (1.2.0)
fintoc (1.3.0)
http
money-rails
tabulate
Expand Down
2 changes: 1 addition & 1 deletion lib/fintoc/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Fintoc
VERSION = '1.2.0'
VERSION = '1.3.0'
end
Loading