Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: verifyBuyer contact information #212

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions public/examples/card-payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@
const verificationDetails = {
amount: '1.00',
billingContact: {
addressLines: ['123 Main Street', 'Apartment 1'],
familyName: 'Doe',
givenName: 'John',
email: '[email protected]',
country: 'GB',
familyName: 'Doe',
email: '[email protected]',
phone: '3214563987',
region: 'LND',
addressLines: ['123 Main Street', 'Apartment 1'],
city: 'London',
state: 'LND',
countryCode: 'GB',
},
currencyCode: 'GBP',
intent: 'CHARGE',
Expand Down
10 changes: 5 additions & 5 deletions public/examples/charge-card-on-file.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@
const verificationDetails = {
amount: '1.00',
billingContact: {
addressLines: ['123 Main Street', 'Apartment 1'],
familyName: 'Doe',
givenName: 'John',
email: '[email protected]',
country: 'GB',
familyName: 'Doe',
email: '[email protected]',
phone: '3214563987',
region: 'LND',
addressLines: ['123 Main Street', 'Apartment 1'],
city: 'London',
state: 'LND',
countryCode: 'GB',
},
currencyCode: 'GBP',
intent: 'CHARGE',
Expand Down
12 changes: 6 additions & 6 deletions public/examples/google-pay.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
const verificationDetails = {
amount: '1.00',
billingContact: {
addressLines: ['123 Main Street', 'Apartment 1'],
familyName: 'Doe',
givenName: 'John',
familyName: 'Doe',
email: '[email protected]',
country: 'GB',
phone: '3214563987',
region: 'LND',
addressLines: ['123 Main Street', 'Apartment 1'],
city: 'London',
state: 'LND',
countryCode: 'GB',
},
currencyCode: 'GBP',
intent: 'CHARGE',
Expand Down Expand Up @@ -130,8 +130,8 @@

try {
const paymentRequest = payments.paymentRequest({
countryCode: 'US',
currencyCode: 'USD',
countryCode: 'GB',
currencyCode: 'GBP',
total: {
amount: '1.00',
label: 'Total',
Expand Down
10 changes: 5 additions & 5 deletions public/examples/store-card-on-file.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@
async function verifyBuyer(payments, token) {
const verificationDetails = {
billingContact: {
addressLines: ['123 Main Street', 'Apartment 1'],
familyName: 'Doe',
givenName: 'John',
email: '[email protected]',
country: 'GB',
familyName: 'Doe',
email: '[email protected]',
phone: '3214563987',
region: 'LND',
addressLines: ['123 Main Street', 'Apartment 1'],
city: 'London',
state: 'LND',
countryCode: 'GB',
},
intent: 'STORE',
};
Expand Down
Loading