@bootpay/client-js 5.0.3-beta.1 → 5.0.3-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.
@@ -1,13 +0,0 @@
1
- import { RequestPaymentModel } from "./bootpay-interface";
2
- export interface BiometricDataModel {
3
- userToken: string;
4
- os?: string;
5
- token: string;
6
- }
7
- export interface RequestPaymentWalletModel extends RequestPaymentModel {
8
- user_token?: string;
9
- authenticate_type: string;
10
- token: string;
11
- wallet_id: string;
12
- easy_type?: string;
13
- }
@@ -1,36 +0,0 @@
1
- import { ExtraModel, RequestPaymentModel, WidgetExtraModel } from './bootpay-interface';
2
- export interface RequestBootpayWidgetModel extends Partial<RequestPaymentModel> {
3
- subscription_id?: string;
4
- use_only_oopay?: boolean;
5
- use_terms?: boolean;
6
- sandbox?: boolean;
7
- use_bootpay_inapp_sdk?: boolean;
8
- external_terms?: ExternalBootpayWidgetTermsModel[];
9
- extra?: WidgetExtraModel;
10
- }
11
- export interface ResponseBootpayWidgetTermsModel {
12
- term_id?: string;
13
- pk: string;
14
- title: string;
15
- agree?: boolean;
16
- }
17
- export interface ExternalBootpayWidgetTermsModel {
18
- pk: string;
19
- title: string;
20
- url: string;
21
- required: 'required' | 'optional';
22
- }
23
- export interface ExternalBootpaySelectModel {
24
- payment_type?: string;
25
- method_alias?: string;
26
- wallet_id?: string;
27
- }
28
- export interface PaymentParametersModel {
29
- pg?: string;
30
- method?: string;
31
- wallet_id?: string;
32
- terms?: ResponseBootpayWidgetTermsModel[];
33
- widget_key?: string;
34
- widget_sandbox?: boolean;
35
- extra?: ExtraModel;
36
- }