simpleloan_api 1.2.24 → 1.2.25

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/index.d.mts CHANGED
@@ -483,13 +483,31 @@ type CustomerFields = {
483
483
  akbars_own_insurance: boolean;
484
484
  akbars_any_abb_account: 'Yes' | 'No';
485
485
  akbars_add_any_abb_account: 'Yes' | 'No';
486
- akbars_applicable_tax_system: string;
487
- akbars_add_applicable_tax_system: string;
488
- akbars_kind_private_practice: string;
489
- akbars_add_kind_private_practice: string;
490
- work_address_actual: Address;
491
- add_work_address_actual: Address;
486
+ akbars_applicable_tax_system: string | null;
487
+ akbars_add_applicable_tax_system: string | null;
488
+ akbars_kind_private_practice: string | null;
489
+ akbars_add_kind_private_practice: string | null;
490
+ work_address_actual: Address | null;
491
+ add_work_address_actual: Address | null;
492
492
  akbars_online_registration: boolean;
493
+ dependents_not_children: number | null;
494
+ dependents_not_children_expenses: number | null;
495
+ other_expenses: number | null;
496
+ has_unfulfilled_court_decisions: boolean;
497
+ has_court_convictions: boolean;
498
+ is_incapacitated: boolean;
499
+ is_on_medical_register: boolean;
500
+ uses_borrowed_funds: boolean;
501
+ absolut_credit_history_consent: boolean;
502
+ absolut_current_loans: {
503
+ type: string;
504
+ issue_date: string;
505
+ amount: number;
506
+ planned_repaid: boolean;
507
+ }[] | null;
508
+ is_relative_of_public_official_person: boolean;
509
+ reason_change_name: string | null;
510
+ date_change_name: string | null;
493
511
  };
494
512
  type Customer = CustomerFields & CustomerMeta;
495
513
 
package/dist/index.d.ts CHANGED
@@ -483,13 +483,31 @@ type CustomerFields = {
483
483
  akbars_own_insurance: boolean;
484
484
  akbars_any_abb_account: 'Yes' | 'No';
485
485
  akbars_add_any_abb_account: 'Yes' | 'No';
486
- akbars_applicable_tax_system: string;
487
- akbars_add_applicable_tax_system: string;
488
- akbars_kind_private_practice: string;
489
- akbars_add_kind_private_practice: string;
490
- work_address_actual: Address;
491
- add_work_address_actual: Address;
486
+ akbars_applicable_tax_system: string | null;
487
+ akbars_add_applicable_tax_system: string | null;
488
+ akbars_kind_private_practice: string | null;
489
+ akbars_add_kind_private_practice: string | null;
490
+ work_address_actual: Address | null;
491
+ add_work_address_actual: Address | null;
492
492
  akbars_online_registration: boolean;
493
+ dependents_not_children: number | null;
494
+ dependents_not_children_expenses: number | null;
495
+ other_expenses: number | null;
496
+ has_unfulfilled_court_decisions: boolean;
497
+ has_court_convictions: boolean;
498
+ is_incapacitated: boolean;
499
+ is_on_medical_register: boolean;
500
+ uses_borrowed_funds: boolean;
501
+ absolut_credit_history_consent: boolean;
502
+ absolut_current_loans: {
503
+ type: string;
504
+ issue_date: string;
505
+ amount: number;
506
+ planned_repaid: boolean;
507
+ }[] | null;
508
+ is_relative_of_public_official_person: boolean;
509
+ reason_change_name: string | null;
510
+ date_change_name: string | null;
493
511
  };
494
512
  type Customer = CustomerFields & CustomerMeta;
495
513
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.24",
3
+ "version": "1.2.25",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",