gotrip-fx-transaction-form 1.0.12 → 1.0.14

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.12",
3
+ "version": "1.0.14",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -2,6 +2,7 @@ import { ChangeEvent } from 'react';
2
2
  import * as yup from 'yup';
3
3
  declare const groupOfBookerSchema: yup.ObjectSchema<{
4
4
  bookers: {
5
+ uuid?: string | undefined;
5
6
  status: string;
6
7
  phone: string;
7
8
  lastName: string;
@@ -19,6 +20,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
19
20
  onSelectFile: (event: ChangeEvent<HTMLInputElement>) => Promise<void>;
20
21
  register: import('react-hook-form').UseFormRegister<{
21
22
  bookers?: {
23
+ uuid?: string | undefined;
22
24
  status: string;
23
25
  phone: string;
24
26
  lastName: string;
@@ -29,6 +31,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
29
31
  }>;
30
32
  handleSubmit: import('react-hook-form').UseFormHandleSubmit<{
31
33
  bookers?: {
34
+ uuid?: string | undefined;
32
35
  status: string;
33
36
  phone: string;
34
37
  lastName: string;
@@ -39,6 +42,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
39
42
  }, undefined>;
40
43
  errors: import('react-hook-form').FieldErrors<{
41
44
  bookers?: {
45
+ uuid?: string | undefined;
42
46
  status: string;
43
47
  phone: string;
44
48
  lastName: string;
@@ -49,6 +53,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
49
53
  }>;
50
54
  getValues: import('react-hook-form').UseFormGetValues<{
51
55
  bookers?: {
56
+ uuid?: string | undefined;
52
57
  status: string;
53
58
  phone: string;
54
59
  lastName: string;
@@ -59,6 +64,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
59
64
  }>;
60
65
  setValue: import('react-hook-form').UseFormSetValue<{
61
66
  bookers?: {
67
+ uuid?: string | undefined;
62
68
  status: string;
63
69
  phone: string;
64
70
  lastName: string;
@@ -69,6 +75,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
69
75
  }>;
70
76
  watch: import('react-hook-form').UseFormWatch<{
71
77
  bookers?: {
78
+ uuid?: string | undefined;
72
79
  status: string;
73
80
  phone: string;
74
81
  lastName: string;
@@ -79,6 +86,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
79
86
  }>;
80
87
  trigger: import('react-hook-form').UseFormTrigger<{
81
88
  bookers?: {
89
+ uuid?: string | undefined;
82
90
  status: string;
83
91
  phone: string;
84
92
  lastName: string;
@@ -89,6 +97,7 @@ export declare const useImportBookers: (onFinish: () => void) => {
89
97
  }>;
90
98
  reset: import('react-hook-form').UseFormReset<{
91
99
  bookers?: {
100
+ uuid?: string | undefined;
92
101
  status: string;
93
102
  phone: string;
94
103
  lastName: string;
@@ -9,6 +9,7 @@ export type LoginRespDto = {
9
9
  role: EUserRole;
10
10
  refCode: string;
11
11
  bank?: IBank;
12
+ isAgency?: boolean;
12
13
  };
13
14
  };
14
15
  export type ITicket = {