@gem-sdk/adapter-common 1.11.1 → 1.14.0-dev.284
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,8 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Address = {
|
|
2
2
|
id: string;
|
|
3
3
|
mask: string;
|
|
4
|
-
}
|
|
5
|
-
export
|
|
4
|
+
};
|
|
5
|
+
export type AddressFields = {
|
|
6
6
|
type: string;
|
|
7
7
|
firstName: string;
|
|
8
8
|
lastName: string;
|
|
@@ -12,7 +12,7 @@ export interface AddressFields {
|
|
|
12
12
|
zipCode: string;
|
|
13
13
|
city: string;
|
|
14
14
|
country: string;
|
|
15
|
-
}
|
|
15
|
+
};
|
|
16
16
|
export type CustomerAddressTypes = {
|
|
17
17
|
address?: Address;
|
|
18
18
|
fields: AddressFields;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Card = {
|
|
2
2
|
id: string;
|
|
3
3
|
mask: string;
|
|
4
4
|
provider: string;
|
|
5
|
-
}
|
|
6
|
-
export
|
|
5
|
+
};
|
|
6
|
+
export type CardFields = {
|
|
7
7
|
cardHolder: string;
|
|
8
8
|
cardNumber: string;
|
|
9
9
|
cardExpireDate: string;
|
|
@@ -15,7 +15,7 @@ export interface CardFields {
|
|
|
15
15
|
zipCode: string;
|
|
16
16
|
city: string;
|
|
17
17
|
country: string;
|
|
18
|
-
}
|
|
18
|
+
};
|
|
19
19
|
export type CustomerCardTypes = {
|
|
20
20
|
card?: Card;
|
|
21
21
|
fields: CardFields;
|