-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
41 lines (40 loc) · 1.59 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const config = {
"profiles": [
{
"accountInfo": {
"email": "", // Account email
"password": "", // Account password
"twoFactorSecret": "" // 2FA secret key
},
"userInfo": {
"differentBillingAsDelivery": "0", // Set to 1 if your delivery is different from your billing information, otherwise set to 0
"delivery": {
"deliveryName": "", // Delivery name
"deliveryPhone": "", // Delivery phone number
"deliveryAddress": "", // Delivery address
"deliveryCity": "", // Delivery city
"deliveryState": "", // Delivery state (example: "California")
"deliveryPostalCode": "" // Delivery postal code
},
"billing": { // Not required if "differentBillingAsDelivery" is set to 0
"billingName": "", // Billing name
"billingPhone": "", // Billing phone
"billingAddress": "", // Billing address
"billingCity": "", // Billing city
"billingState": "", // Billing state (example: "California")
"billingPostalCode": "" // Billing postal code
},
"cardInfo": {
"cardName": "", // Card name
"cardNumber": "", // Card number (example: "XXXX XXXX XXXX XXXX")
"cardCVV": "", // Card CVV
"cardExpMonth": "", // Card expiration month (example: "07")
"cardExpYear": "", // Card expirtation year (example: "25")
"cardType": "" // Card type (Amex, Discover, Mastercard, Visa)
}
}
}
],
"discordWebhook": "" // Discord webhook (optional)
};
module.exports = config;