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.
- package/dist/types.d.ts +9 -5
- 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
|
|
179
|
-
|
|
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
|
-
|
|
186
|
+
};
|
|
187
|
+
type OnboardingQuestionsResponse = {
|
|
188
|
+
occupations: {
|
|
184
189
|
id: number;
|
|
185
190
|
label: string;
|
|
186
|
-
value: number;
|
|
187
191
|
}[];
|
|
188
|
-
|
|
192
|
+
income_ranges_by_currency: IncomeRangesByCurrency[];
|
|
189
193
|
pep_categories: {
|
|
190
194
|
value: PepCategory;
|
|
191
195
|
label: string;
|