@tripian/core 9.1.38 → 9.1.39

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/api/API.d.ts CHANGED
@@ -237,6 +237,10 @@ declare class API {
237
237
  * Logs
238
238
  */
239
239
  log: (message: string, dataPayload?: any, type?: 'ERROR' | 'WARNING' | 'INFO') => Promise<any>;
240
+ visaIframeToken: () => Promise<{
241
+ token: string;
242
+ }>;
243
+ visaValidatorCheck: (context: string) => Promise<Model.User>;
240
244
  /**
241
245
  * COMBO
242
246
  */
@@ -121,5 +121,7 @@ interface ApiConstModel {
121
121
  BUSINESS_EXPORT: ApiConst;
122
122
  TRANSLATIONS: ApiConst;
123
123
  LOGS: ApiConst;
124
+ VISA_IFRAME_TOKEN: ApiConst;
125
+ VISA_VALIDATOR_CHECK: ApiConst;
124
126
  }
125
127
  export { ApiConst, ApiConstModel };