gotrip-fx-transaction-form 1.0.14 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -17,6 +17,7 @@ export declare const ApiUrls: {
17
17
  getByBankTransactionId: (transactionId: string) => string;
18
18
  guestCreateEducationTransaction: string;
19
19
  updateGroupTransactionStatus: string;
20
+ checkInfoSuccess: string;
20
21
  };
21
22
  currency: {
22
23
  list: string;
@@ -16,6 +16,7 @@ export declare const useTransactionList: ({ defaultLimit, defaultFilter }: Props
16
16
  sendBankTransaction: (transaction: ITransaction) => Promise<void>;
17
17
  checkTicketStatus: (transaction: ITransaction) => Promise<void>;
18
18
  updateGroupTransactionStatus: (groupPublicId: string, transactions: ITransaction[]) => Promise<boolean>;
19
+ checkInfoSuccess: (transaction: ITransaction) => Promise<void>;
19
20
  setPage: import('react').Dispatch<import('react').SetStateAction<number>>;
20
21
  setLimit: (limit: number) => void;
21
22
  setFilter: import('react').Dispatch<import('react').SetStateAction<GetTransactionListReqDto>>;
@@ -1,5 +1,6 @@
1
1
  export declare enum TransactionStatus {
2
2
  CREATED = "created",
3
+ PENDING_ADMIN_CHECK_INFO = "pending_admin_check_info",
3
4
  PENDING_APPROVAL = "pending_approval",
4
5
  BANK_APPROVED = "bank_approved",
5
6
  BANK_REJECTED = "bank_rejected",
@@ -0,0 +1,2 @@
1
+ export declare const setAuthCookies: (token: string, user: any, rememberMe: boolean) => void;
2
+ export declare const removeAuthCookies: () => void;