@yuno-payments/dashboard-api-mfe 0.36.60-RC.1 → 0.36.60-RC.2

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.
@@ -327,23 +327,24 @@ export declare namespace SmartRouting {
327
327
  available: boolean;
328
328
  }
329
329
  export interface NetworkTokensOnboardingData {
330
- company_name: string;
331
- client: string;
330
+ name: string;
331
+ legal_name: string;
332
332
  website: string;
333
- required_provider: string;
334
- company_legal_name: string;
335
- company_registered_state: string;
336
- company_registered_zip_code: string;
337
- company_registered_address: string;
338
- company_registered_country: string;
339
- company_registered_phone: string;
340
- primary_contact_first_name: string;
341
- primary_contact_last_name: string;
342
- business_identification_type: string;
343
- business_identification_number: string;
333
+ identification_type: string;
334
+ identification_number: string;
335
+ address_line_1: string;
336
+ address_line_2: string;
337
+ city: string;
338
+ state: string;
339
+ country: string;
340
+ zip_code: string;
341
+ phone: string;
342
+ contact_first_name: string;
343
+ contact_last_name: string;
344
+ contact_email: string;
344
345
  }
345
346
  export interface NetworkTokensOnboardingPayload extends NetworkTokensOnboardingData {
346
- accounts: string[];
347
+ account_codes: string[];
347
348
  }
348
349
  export interface NetworkTokensOnboardingGetResponse extends NetworkTokensOnboardingData {
349
350
  id?: string;