@opexa/portal-sdk 0.0.20 → 0.0.22

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.
Files changed (38) hide show
  1. package/README.md +19 -17
  2. package/dist/index.js +466 -469
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +902 -868
  5. package/dist/index.mjs.map +1 -1
  6. package/dist/sdk/sdk.d.ts +8 -23
  7. package/dist/sdk/session-manager.d.ts +8 -3
  8. package/dist/sdk/types.d.ts +141 -98
  9. package/dist/services/account.service.d.ts +1 -4
  10. package/dist/services/auth.service.d.ts +2 -4
  11. package/dist/services/file.service.d.ts +1 -1
  12. package/dist/services/game.service.d.ts +11 -6
  13. package/dist/services/index.d.ts +0 -16
  14. package/dist/services/portal.service.d.ts +1 -1
  15. package/dist/services/queries.d.ts +54 -0
  16. package/dist/services/report.service.d.ts +1 -6
  17. package/dist/services/types.d.ts +780 -8
  18. package/dist/services/utils.d.ts +2 -9
  19. package/dist/services/wallet.service.d.ts +17 -10
  20. package/dist/utils/clamp.d.ts +1 -0
  21. package/dist/utils/graphql-client.d.ts +8 -1
  22. package/dist/utils/pollable.d.ts +28 -0
  23. package/package.json +4 -1
  24. package/dist/services/announcement.d.ts +0 -29
  25. package/dist/services/bet-record.d.ts +0 -65
  26. package/dist/services/bonus.d.ts +0 -45
  27. package/dist/services/cashback.d.ts +0 -20
  28. package/dist/services/deposit.d.ts +0 -90
  29. package/dist/services/file.d.ts +0 -49
  30. package/dist/services/game.d.ts +0 -98
  31. package/dist/services/member.d.ts +0 -202
  32. package/dist/services/platform.d.ts +0 -38
  33. package/dist/services/points.d.ts +0 -24
  34. package/dist/services/promo.d.ts +0 -33
  35. package/dist/services/session.d.ts +0 -80
  36. package/dist/services/transaction.d.ts +0 -25
  37. package/dist/services/wallet.d.ts +0 -14
  38. package/dist/services/withdrawal.d.ts +0 -114
@@ -1,202 +0,0 @@
1
- import { File } from './file';
2
- import { SecretQuestion } from './session';
3
- import { DateString, Decimal } from './types';
4
-
5
- export interface Member {
6
- dateTimeLastActive?: DateString | null;
7
- }
8
- export interface MemberQuery {
9
- member: Member;
10
- }
11
- export declare const MEMBER_QUERY: string;
12
- export type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED';
13
- export type MemberAccountVerificationStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED';
14
- export type MemberVerificationStatus = 'PENDING' | 'APPROVED' | 'REJECTED' | 'VERIFIED' | 'UNVERIFIED';
15
- export interface MemberAccount {
16
- id: string;
17
- name: string;
18
- status: MemberAccountStatus;
19
- realName?: string | null;
20
- nickName?: string | null;
21
- birthDay?: DateString | null;
22
- validId?: string | null;
23
- emailAddress?: string | null;
24
- mobileNumber?: string | null;
25
- verified: boolean;
26
- verificationStatus: MemberAccountVerificationStatus;
27
- mobileNumberVerified?: boolean | null;
28
- mobileNumberVerificationRequired?: boolean | null;
29
- transactionPassword: boolean;
30
- secretAnswerSubmitted?: boolean | null;
31
- dateTimeCreated: DateString;
32
- dateTimeLastUpdated: DateString;
33
- }
34
- export interface MemberAccountQuery {
35
- memberAccount: MemberAccount;
36
- }
37
- /**
38
- * _aka_ `Query.self`
39
- */
40
- export declare const MEMBER_ACCOUNT_QUERY: string;
41
- export interface MemberVerification {
42
- id: string;
43
- status: MemberVerificationStatus;
44
- address: string;
45
- sourceOfIncome: string;
46
- natureOfWork: string;
47
- nationality: string;
48
- placeOfBirth: string;
49
- idFrontImage: File;
50
- selfieImage: File;
51
- }
52
- export interface MemberVerificationQuery {
53
- memberAccount: {
54
- verification?: MemberVerification | null;
55
- };
56
- }
57
- export declare const MEMBER_VERIFICATION_QUERY: string;
58
- export type RegisterMemberAccountError = 'AccountNameNotAvailableError' | 'InvalidPlatformError' | 'InvalidReCAPTCHAResponseError' | 'InvalidSMSVerificationCodeError' | 'MinimumAgeRequirementError' | 'MobileNumberNotAvailableError';
59
- export interface RegisterMemberAccountMutation {
60
- registerMemberAccount?: null | {
61
- __typename: RegisterMemberAccountError;
62
- };
63
- }
64
- export interface RegisterMemberAccountMutationVariables {
65
- input: {
66
- id: string;
67
- name: string;
68
- password: string;
69
- mobileNumber: string;
70
- birthDay: string;
71
- domain?: string;
72
- btag?: string;
73
- };
74
- verificationCode?: string;
75
- reCAPTCHAResponse?: string;
76
- }
77
- export declare const REGISTER_MEMBER_ACCOUNT_MUTATION: string;
78
- export type UpdateMemberAccountError = 'AccountNameNotAvailableError' | 'EmailAddressNotAvailableError' | 'InvalidTransactionPasswordError' | 'MobileNumberNotAvailableError' | 'NickNameNotAvailableError' | 'RealNameAlreadySetError' | 'ValidIdAlreadySetError';
79
- export interface UpdateMemberAccountMutation {
80
- updateMemberAccount?: null | {
81
- __typename: UpdateMemberAccountError;
82
- };
83
- }
84
- export interface UpdateMemberAccountMutationVariables {
85
- input: {
86
- id: string;
87
- data: {
88
- name?: string;
89
- password?: string;
90
- emailAddress?: string;
91
- mobileNumber?: string;
92
- realName?: string;
93
- nickName?: string;
94
- transactionPassword?: string;
95
- validId?: string;
96
- mobileNumberVerificationRequired?: boolean;
97
- secretQuestion?: SecretQuestion;
98
- secretAnswer?: string;
99
- };
100
- };
101
- }
102
- export declare const UPDATE_MEMBER_ACCOUNT_MUTATION: string;
103
- export type ResetPasswordError = 'AccountNotFoundError' | 'InvalidVerificationCodeError';
104
- export interface ResetPasswordMutation {
105
- resetPassword?: null | {
106
- __typename: ResetPasswordError;
107
- };
108
- }
109
- export interface ResetPasswordMutationVariables {
110
- input: {
111
- mobileNumber: string;
112
- newPassword: string;
113
- };
114
- verificationCode: string;
115
- }
116
- export declare const RESET_PASSWORD_MUTATION: string;
117
- export interface DeleteMemberAccountMutation {
118
- deleteMemberAccount: boolean;
119
- }
120
- export interface DeleteMemberAccountMutationVariables {
121
- input: {
122
- id: string;
123
- };
124
- }
125
- export declare const DELETE_MEMBER_ACCOUNT_MUTATION: string;
126
- export type SendVerificationCodeError = 'InvalidPlatformError' | 'NotReadyToSendVerficationCodeError';
127
- export interface SendVerificationCodeMutation {
128
- sendVerificationCode?: null | {
129
- __typename: SendVerificationCodeError;
130
- };
131
- }
132
- export interface SendVerificationCodeMutationVariables {
133
- input: {
134
- channel: 'SMS' | 'EMAIL';
135
- recipient: string;
136
- };
137
- }
138
- export declare const SEND_VERIFICATION_CODE_MUTATION: string;
139
- export type VerifyMobileNumberError = 'InvalidSMSVerificationCodeError' | 'MobileNumberAlreadyVerifiedError';
140
- export interface VerifyMobileNumberMutation {
141
- verifyMobileNumber?: null | {
142
- __typename: VerifyMobileNumberError;
143
- };
144
- }
145
- export interface VerifyMobileNumberMutationVariables {
146
- input: {
147
- verificationCode: string;
148
- };
149
- }
150
- export declare const VERIFY_MOBILE_NUMBER_MUTATION: string;
151
- export type CreateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyExistsError';
152
- export interface CreateMemberVerificationMutation {
153
- createMemberVerification?: null | {
154
- __typename: CreateMemberVerificationError;
155
- };
156
- }
157
- export interface CreateMemberVerificationMutationVariables {
158
- input: {
159
- id: string;
160
- idFrontImage: string;
161
- selfieImage: string;
162
- address: string;
163
- sourceOfIncome: string;
164
- natureOfWork: string;
165
- nationality: string;
166
- placeOfBirth: string;
167
- };
168
- }
169
- export declare const CREATE_MEMBER_VERIFICATION_MUTATION: string;
170
- export type UpdateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyApprovedError' | 'MemberVerificationDoesNotExistError';
171
- export interface UpdateMemberVerificationMutation {
172
- updateMemberVerification?: null | {
173
- __typename: UpdateMemberVerificationError;
174
- };
175
- }
176
- export interface UpdateMemberVerificationMutationVariables {
177
- input: {
178
- id: string;
179
- data: {
180
- idFrontImage?: string;
181
- selfieImage?: string;
182
- address?: string;
183
- sourceOfIncome?: string;
184
- natureOfWork?: string;
185
- nationality?: string;
186
- placeOfBirth?: string;
187
- };
188
- };
189
- }
190
- export declare const UPDATE_MEMBER_VERIFICATION_MUTATION: string;
191
- export interface ProfileCompletion {
192
- completionPercentage: Decimal;
193
- personalInformation: boolean;
194
- accountVerification: boolean;
195
- mobileNumberVerification: boolean;
196
- transactionPassword: boolean;
197
- accountPassword: boolean;
198
- }
199
- export interface ProfileCompletionQuery {
200
- profileCompletion: ProfileCompletion;
201
- }
202
- export declare const PROFILE_COMPLETION_QUERY: string;
@@ -1,38 +0,0 @@
1
- import { Decimal } from './types';
2
-
3
- export interface DepositGatewaySettings {
4
- minimumAmount: string;
5
- maximumAmount: string;
6
- webEnabled: boolean;
7
- mobileWebEnabled: boolean;
8
- androidEnabled: boolean;
9
- iosEnabled: boolean;
10
- }
11
- export interface WithdrawalGatewaySettings {
12
- minimumAmount: Decimal;
13
- maximumAmount: Decimal;
14
- fixedFee?: Decimal | null;
15
- percentageFee?: Decimal | null;
16
- webEnabled: boolean;
17
- mobileWebEnabled: boolean;
18
- androidEnabled: boolean;
19
- iosEnabled: boolean;
20
- }
21
- export interface PointsClubSettings {
22
- multiplier: Decimal;
23
- }
24
- export interface Platform {
25
- restrictWithdrawalsToVerifiedMembers: boolean;
26
- minimumFirstDepositAmount: Decimal;
27
- bankDepositGatewaySettings?: DepositGatewaySettings | null;
28
- gcashDepositGatewaySettings?: DepositGatewaySettings | null;
29
- mayaDepositGatewaySettings?: DepositGatewaySettings | null;
30
- mayaAppDepositGatewaySettings?: DepositGatewaySettings | null;
31
- bankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
32
- gcashWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
33
- mayaWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
34
- mayaAppWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
35
- pointsClubSettings?: PointsClubSettings | null;
36
- }
37
- export type PlatformQuery = Platform;
38
- export declare const PLATFORM_QUERY: string;
@@ -1,24 +0,0 @@
1
- import { DateString, Decimal } from './types';
2
-
3
- export interface PointsWallet {
4
- id: string;
5
- points: Decimal;
6
- account: string;
7
- dateTimeCreated: DateString;
8
- }
9
- export declare const POINTS_WALLET_QUERY: string;
10
- export interface PointsWalletQuery {
11
- pointsWallet?: PointsWallet | null;
12
- }
13
- export declare const POINTS_TO_CASH_CONVERSION_MUTATION: string;
14
- export interface PointsToCashConversionMutationVariables {
15
- input: {
16
- amount: Decimal;
17
- };
18
- }
19
- export type PointsToCashConversionError = 'InsufficientPointsError';
20
- export interface PointsToCashConversionMutation {
21
- pointsToCashConversion?: null | {
22
- __typename: PointsToCashConversionError;
23
- };
24
- }
@@ -1,33 +0,0 @@
1
- import { File__Ready } from './file';
2
- import { DateString, EnumFilterField, Html } from './types';
3
-
4
- export type PromoType = 'DEPOSIT';
5
- export type PromoStatus = 'ACTIVE' | 'INACTIVE' | 'DISABLED';
6
- export interface Promo {
7
- id: string;
8
- type: PromoType;
9
- name: string;
10
- banner: File__Ready;
11
- status: PromoStatus;
12
- description: Html;
13
- minimumBonusAmount?: string | null;
14
- maximumBonusAmount?: string | null;
15
- activationStartDateTime: DateString;
16
- activationEndDateTime: DateString;
17
- dateTimeCreated: DateString;
18
- dateTimeLastUpdated: DateString;
19
- }
20
- export interface PromosQuery {
21
- promos: Promo[];
22
- }
23
- export declare const PROMO_FRAGMENT: string;
24
- export declare const PROMOS_QUERY: string;
25
- export interface AvailablePromosQuery {
26
- availablePromos: Promo[];
27
- }
28
- export interface AvailablePromosQueryVariables {
29
- filter?: {
30
- type?: EnumFilterField<PromoType>;
31
- };
32
- }
33
- export declare const AVAILABLE_PROMOS_QUERY: string;
@@ -1,80 +0,0 @@
1
- import { DateString } from './types';
2
-
3
- export interface Session {
4
- id: string;
5
- dateTimeCreated: DateString;
6
- }
7
- export interface CreateSessionInput__NameAndPassword {
8
- type: 'NAME_AND_PASSWORD';
9
- name: string;
10
- password: string;
11
- }
12
- export interface CreateSessionInput__MobileNumber {
13
- type: 'MOBILE_NUMBER';
14
- mobileNumber: string;
15
- verificationCode: string;
16
- }
17
- export interface CreateSessionInput__Maya {
18
- type: 'MAYA';
19
- sessionId: string;
20
- }
21
- export type CreateSessionInput = CreateSessionInput__NameAndPassword | CreateSessionInput__MobileNumber | CreateSessionInput__Maya;
22
- export type SecretQuestion = 'FIRST_PET' | 'FIRST_CAR' | 'FIRST_SCHOOL' | 'FAVORITE_BOOK' | 'FAVORITE_TEACHER' | 'BEST_CHILDHOOD_FRIEND' | 'BIRTH_PLACE' | 'MOTHERS_MAIDEN_NAME' | 'PARENTS_MET_CITY' | 'FAVORITE_MOVIE';
23
- export interface Authenticator__SecurityQuestion {
24
- type: 'SECURITY_QUESTION';
25
- token: string;
26
- secretQuestion: SecretQuestion;
27
- }
28
- export type Authenticator = Authenticator__SecurityQuestion;
29
- export type CreateSessionMutation__NameAndPassword = {
30
- session: Session;
31
- accessToken?: never;
32
- refreshToken?: never;
33
- authenticator: Authenticator;
34
- } | {
35
- session: Session;
36
- accessToken: string;
37
- refreshToken: string;
38
- authenticator?: never;
39
- };
40
- export interface CreateSessionMutation__MobileNumber {
41
- session: Session;
42
- accessToken: string;
43
- refreshToken: string;
44
- }
45
- export interface CreateSessionMutation__Maya {
46
- session: Session;
47
- accessToken: string;
48
- refreshToken: string;
49
- }
50
- export type CreateSessionMutation = CreateSessionMutation__NameAndPassword | CreateSessionMutation__MobileNumber | CreateSessionMutation__Maya;
51
- export type CreateSessionError = 'AccountNotFound' | 'AccountBlacklisted';
52
- export type RefreshSessionError = 'InvalidToken' | 'AccountBlacklisted' | 'SessionExpired';
53
- export interface RefreshSessionMutation {
54
- accessToken: string;
55
- refreshToken: string;
56
- }
57
- export interface AuthenticateInput__SecurityQuestion {
58
- type: 'SECURITY_QUESTION';
59
- token: string;
60
- secretAnswer: string;
61
- }
62
- export type AuthenticateInput = AuthenticateInput__SecurityQuestion;
63
- export type AuthenticateError = 'InvalidTokenOrSecretAnswer';
64
- export interface AuthenticateMutation {
65
- session: Session;
66
- accessToken: string;
67
- refreshToken: string;
68
- }
69
- export interface MayaSession {
70
- id: string;
71
- member?: string;
72
- dateTimeCreated: DateString;
73
- }
74
- export interface MayaSessionQuery {
75
- mayaSession?: MayaSession | null;
76
- }
77
- export interface MayaSessionQueryVariables {
78
- id: string;
79
- }
80
- export declare const MAYA_SESSION_QUERY: string;
@@ -1,25 +0,0 @@
1
- import { DateFilterField, DateString, Decimal, EnumFilterField, PaginatedQuery, StringFilterField } from './types';
2
-
3
- export type TransactionRecordType = 'DEPOSIT' | 'PAYOUT' | 'WITHDRAWAL_REFUND' | 'TRANSFER_IN' | 'WITHDRAWAL' | 'BET' | 'TRANSFER_OUT' | 'ROLLBACK' | 'BET_REFUND' | 'PAYOUT_REFUND' | 'CASHBACK_BONUS' | 'BONUS' | 'RESERVE' | 'REJECT_WITHDRAWAL' | 'MANUAL_DEPOSIT' | 'GCASH_DEPOSIT' | 'MANUAL_WITHDRAWAL' | 'BANK_WITHDRAWAL' | 'GCASH_WITHDRAWAL' | 'COMMIT_RESERVE' | 'ROLLBACK_PAYOUT' | 'ROLLBACK_RESERVE';
4
- export interface TransactionRecord {
5
- id: string;
6
- type: TransactionRecordType;
7
- amount: Decimal;
8
- content?: string | null;
9
- currentBalance: Decimal;
10
- referenceNumber: string;
11
- dateTimeCreated: DateString;
12
- }
13
- export interface TransactionRecordsQuery {
14
- member: PaginatedQuery<'transactionRecords', TransactionRecord>;
15
- }
16
- export interface TransactionRecordsQueryVariables {
17
- first?: number;
18
- after?: string;
19
- filter?: {
20
- referenceNumber?: StringFilterField;
21
- type?: EnumFilterField<TransactionRecordType>;
22
- dateTimeCreated?: DateFilterField;
23
- };
24
- }
25
- export declare const TRANSACTION_RECORDS_QUERY: string;
@@ -1,14 +0,0 @@
1
- import { DateString, Decimal } from './types';
2
-
3
- export type Currency = 'PHP' | 'USD';
4
- export interface Wallet {
5
- id: string;
6
- balance: Decimal;
7
- currency: Currency;
8
- dateTimeCreated: DateString;
9
- dateTimeLastUpdated: DateString;
10
- }
11
- export interface WalletQuery {
12
- wallet?: Wallet | null;
13
- }
14
- export declare const WALLET_QUERY: string;
@@ -1,114 +0,0 @@
1
- import { DateFilterField, DateString, Decimal, EnumFilterField, PaginatedQuery, StringFilterField } from './types';
2
-
3
- export type Bank = 'AUBKPHMM' | 'MBTCPHMM' | 'BNORPHMM' | 'MKRUPHM1';
4
- export type WithdrawalRecordStatus = 'PENDING' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'CONFIRMED' | 'CANCELLED';
5
- export type WithdrawalRecordType = 'MANUAL' | 'BANK' | 'GCASH' | 'MAYA_APP';
6
- interface Common {
7
- id: string;
8
- fee: Decimal;
9
- amount: Decimal;
10
- netAmount: Decimal;
11
- status: WithdrawalRecordStatus;
12
- reference?: string | null;
13
- withdrawalNumber: string;
14
- dateTimeConfirmed?: DateString | null;
15
- dateTimeCreated: DateString;
16
- dateTimeLastUpdated: DateString;
17
- }
18
- export interface ManualWithdrawalRecord extends Common {
19
- type: 'MANUAL';
20
- bank?: never;
21
- recipientMobileNumber?: never;
22
- }
23
- export interface BankWithdrawalRecord extends Common {
24
- type: 'BANK';
25
- bank: Bank;
26
- recipientMobileNumber?: never;
27
- }
28
- export interface GCashWithdrawalRecord extends Common {
29
- type: 'GCASH';
30
- bank?: never;
31
- recipientMobileNumber: string;
32
- }
33
- export interface MayaAppWithdrawalRecord extends Common {
34
- type: 'MAYA_APP';
35
- bank?: never;
36
- recipientMobileNumber?: never;
37
- }
38
- export type WithdrawalRecord = ManualWithdrawalRecord | BankWithdrawalRecord | GCashWithdrawalRecord | MayaAppWithdrawalRecord;
39
- export interface WithdrawalRecordsQuery {
40
- member: PaginatedQuery<'withdrawalRecords', WithdrawalRecord>;
41
- }
42
- export interface WithdrawalRecordsQueryVariables {
43
- first?: number;
44
- after?: string;
45
- filter?: {
46
- withdrawalNumber?: StringFilterField;
47
- type?: EnumFilterField<WithdrawalRecordType>;
48
- reference?: StringFilterField;
49
- status?: EnumFilterField<WithdrawalRecordStatus>;
50
- dateTimeCreated?: DateFilterField;
51
- dateTimeLastUpdated?: DateFilterField;
52
- };
53
- }
54
- export declare const WITHDRAWAL_RECORDS_QUERY: string;
55
- export type CreateWithdrawalError = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError';
56
- export interface CreateGCashWithdrawalMutation {
57
- createGCashWithdrawal?: null | {
58
- __typename: CreateWithdrawalError;
59
- };
60
- }
61
- export interface CreateGCashWithdrawalMutationVariables {
62
- input: {
63
- id: string;
64
- amount: Decimal;
65
- transactionPassword: string;
66
- recipientMobileNumber: string;
67
- };
68
- }
69
- export declare const CREATE_GCASH_WITHDRAWAL_MUTATION: string;
70
- export interface CreateMayaWithdrawalMutation {
71
- createMayaWithdrawal?: null | {
72
- __typename: CreateWithdrawalError;
73
- };
74
- }
75
- export interface CreateMayaWithdrawalMutationVariables {
76
- input: {
77
- id: string;
78
- amount: Decimal;
79
- transactionPassword: string;
80
- recipientMobileNumber: string;
81
- };
82
- }
83
- export declare const CREATE_MAYA_WITHDRAWAL_MUTATION: string;
84
- export interface CreateMayaAppWithdrawalMutation {
85
- createMayaAppWithdrawal?: null | {
86
- __typename: CreateWithdrawalError;
87
- };
88
- }
89
- export interface CreateMayaAppWithdrawalMutationVariables {
90
- input: {
91
- id: string;
92
- amount: Decimal;
93
- transactionPassword: string;
94
- };
95
- }
96
- export declare const CREATE_MAYA_APP_WITHDRAWAL_MUTATION: string;
97
- export interface CreateBankWithdrawalMutation {
98
- createBankWithdrawal?: null | {
99
- __typename: CreateWithdrawalError;
100
- };
101
- }
102
- export interface CreateBankWithdrawalMutationVariables {
103
- input: {
104
- id: string;
105
- amount: Decimal;
106
- transactionPassword: string;
107
- };
108
- }
109
- export declare const CREATE_BANK_WITHDRAWAL_MUTATION: string;
110
- export interface RemainingDailyWithdrawalsCountQuery {
111
- remainingDailyWithdrawalsCount: number;
112
- }
113
- export declare const REMAINING_DAILY_WITHDRAWALS_COUNT_QUERY: string;
114
- export {};