lombongo-api-client 0.0.149 → 0.0.150

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/types.d.ts +9 -5
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -175,17 +175,21 @@ declare class Money {
175
175
  }
176
176
 
177
177
  type PepCategory = "self" | "family";
178
- type OnboardingQuestionsResponse = {
179
- occupations: {
178
+ type IncomeRangesByCurrency = {
179
+ currency_id: number;
180
+ currency_code: string;
181
+ ranges: {
180
182
  id: number;
181
183
  label: string;
184
+ value: number;
182
185
  }[];
183
- income_ranges: {
186
+ };
187
+ type OnboardingQuestionsResponse = {
188
+ occupations: {
184
189
  id: number;
185
190
  label: string;
186
- value: number;
187
191
  }[];
188
- income_currency_id: number;
192
+ income_ranges_by_currency: IncomeRangesByCurrency[];
189
193
  pep_categories: {
190
194
  value: PepCategory;
191
195
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lombongo-api-client",
3
- "version": "0.0.149",
3
+ "version": "0.0.150",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/esm/base.js",