inital commit
This commit is contained in:
368
resources/js/helper/index.js
vendored
Normal file
368
resources/js/helper/index.js
vendored
Normal file
@@ -0,0 +1,368 @@
|
||||
import Cookies from 'js-cookie'
|
||||
import state from "./state";
|
||||
|
||||
export const setCookie = (key,value) =>{
|
||||
Cookies.set(key, value);
|
||||
}
|
||||
export const getCookie = (key) =>{
|
||||
return Cookies.get(key);
|
||||
}
|
||||
export const unsetCookie = (key) =>{
|
||||
return Cookies.remove(key);
|
||||
}
|
||||
export const setLocalStorage = (key,value) =>{
|
||||
localStorage.setItem(key, value);
|
||||
}
|
||||
export const getLocalStorage = (key) =>{
|
||||
return localStorage.getItem(key);
|
||||
}
|
||||
export const unsetLocalStorage = (key) =>{
|
||||
return localStorage.removeItem(key);
|
||||
}
|
||||
|
||||
|
||||
export const getAmount = ()=> {
|
||||
return Cookies.get('amount');
|
||||
}
|
||||
|
||||
export const setAmount = (amount)=> {
|
||||
Cookies.set('amount', amount);
|
||||
}
|
||||
|
||||
export const getSecurityKey = ()=> {
|
||||
return getCookie('security_key'); //Cookies.get('security_key');
|
||||
}
|
||||
|
||||
export const setSecurityKey = (key)=> {
|
||||
setCookie('security_key',key);
|
||||
//Cookies.set('security_key', key);
|
||||
}
|
||||
|
||||
export const setPackageId = (package_id) => {
|
||||
Cookies.set('package_id', package_id);
|
||||
}
|
||||
|
||||
export const getPackageId = () => {
|
||||
//return Cookies.get('package_id');
|
||||
return 2;
|
||||
}
|
||||
|
||||
export const setStep = (step) => {
|
||||
Cookies.set('step', step);
|
||||
}
|
||||
|
||||
export const getStep = () => {
|
||||
return Cookies.get('step');
|
||||
}
|
||||
|
||||
export const setToken = (token) => {
|
||||
Cookies.set('access_token', token);
|
||||
}
|
||||
|
||||
export const unsetStep = () => {
|
||||
Cookies.remove('step');
|
||||
}
|
||||
|
||||
export const setUserId = (user_id) => {
|
||||
Cookies.set('user_id', user_id);
|
||||
}
|
||||
|
||||
export const setUserEmail = (email) => {
|
||||
Cookies.set('user_email', email);
|
||||
}
|
||||
|
||||
export const getUserId = () => {
|
||||
return Cookies.get('user_id');
|
||||
}
|
||||
|
||||
export const getUserEmail = () => {
|
||||
return Cookies.get('user_email');
|
||||
}
|
||||
|
||||
|
||||
export const setRefreshToken = (token) => {
|
||||
Cookies.set('refresh_token', token);
|
||||
}
|
||||
|
||||
export const getToken = () => {
|
||||
return Cookies.get('access_token');
|
||||
}
|
||||
|
||||
export const getRefreshToken = () => {
|
||||
return Cookies.get('refresh_token');
|
||||
}
|
||||
|
||||
export const removeToken = () => {
|
||||
Cookies.remove('access_token');
|
||||
Cookies.remove('refresh_token');
|
||||
}
|
||||
|
||||
export const isApiSuccess = (response) => {
|
||||
return response.statuscode == 100;
|
||||
}
|
||||
export const setUserFirstName = (name) => {
|
||||
Cookies.set('user_first_name', name);
|
||||
}
|
||||
export const setUserLastName = (name) => {
|
||||
Cookies.set('user_last_name', name);
|
||||
}
|
||||
export const setUserPassword = (password) => {
|
||||
Cookies.set('user_password', password);
|
||||
}
|
||||
export const setFormData = (form_data) => {
|
||||
setCookie('user_input_data',form_data)
|
||||
}
|
||||
export const getFormData = () => {
|
||||
return getCookie('user_input_data');
|
||||
}
|
||||
export const unsetFormData = () => {
|
||||
unsetCookie('user_input_data');
|
||||
}
|
||||
export const setUserQuestionAnswer = (data) => {
|
||||
setCookie('user_answer_data',data)
|
||||
}
|
||||
export const getUserQuestionAnswer = () => {
|
||||
return getCookie('user_answer_data');
|
||||
}
|
||||
export const unsetUserQuestionAnswer = () => {
|
||||
unsetCookie('user_answer_data');
|
||||
}
|
||||
|
||||
export const setCardNumber = (cardNumber) => {
|
||||
Cookies.set('card_number', cardNumber);
|
||||
}
|
||||
export const setExpiry = (expiry) => {
|
||||
Cookies.set('expiry', expiry);
|
||||
}
|
||||
export const setFullSsn = (expiry) => {
|
||||
Cookies.set('full_ssn', expiry);
|
||||
}
|
||||
export const setPhone = (phone) => {
|
||||
Cookies.set('phone',phone);
|
||||
}
|
||||
export const setZip_Code = (zip_code) => {
|
||||
Cookies.set('zip_code',zip_code);
|
||||
}
|
||||
export const setStreetNo=(data)=>{
|
||||
Cookies.set('street_no',data);
|
||||
}
|
||||
export const setStreetName=(data)=>{
|
||||
Cookies.set('street_name',data);
|
||||
}
|
||||
export const setCity=(data)=>{
|
||||
Cookies.set('city',data);
|
||||
}
|
||||
export const setState=(data)=>{
|
||||
Cookies.set('state',data);
|
||||
}
|
||||
export const setBirthDate=(data)=>{
|
||||
Cookies.set('birth_date',data);
|
||||
}
|
||||
export const setQuestionId=(data)=>{
|
||||
Cookies.set('question_id',data);
|
||||
}
|
||||
export const setAnswer=(data)=>{
|
||||
Cookies.set('answer',data);
|
||||
}
|
||||
|
||||
export const getFullSsn = () => {
|
||||
return Cookies.get('full_ssn');
|
||||
}
|
||||
export const getUserFirstName = () => {
|
||||
return Cookies.get('user_first_name');
|
||||
}
|
||||
export const getUserLastName = () => {
|
||||
return Cookies.get('user_last_name');
|
||||
}
|
||||
export const getUserPassword = () => {
|
||||
return Cookies.get('user_password');
|
||||
}
|
||||
|
||||
export const getCardNumber = () => {
|
||||
return Cookies.get('card_number');
|
||||
}
|
||||
export const getExpiry = () => {
|
||||
return Cookies.get('expiry');
|
||||
}
|
||||
export const getPhone = () => {
|
||||
return Cookies.get('phone');
|
||||
}
|
||||
export const getZip_Code = () => {
|
||||
return Cookies.get('zip_code');
|
||||
}
|
||||
|
||||
export const getStreetNo=()=>{
|
||||
Cookies.get('street_no');
|
||||
}
|
||||
export const getStreetName=()=>{
|
||||
Cookies.get('street_name');
|
||||
}
|
||||
export const getCity=()=>{
|
||||
Cookies.get('city');
|
||||
}
|
||||
export const getState=()=>{
|
||||
Cookies.get('state');
|
||||
}
|
||||
export const getBirthDate=()=>{
|
||||
Cookies.get('birth_date');
|
||||
}
|
||||
export const getQuestionId=()=>{
|
||||
Cookies.get('question_id');
|
||||
}
|
||||
export const getAnswer=()=>{
|
||||
Cookies.get('answer');
|
||||
}
|
||||
|
||||
export const setTrackingToken = (value) => {
|
||||
Cookies.set('tracking_token', value);
|
||||
}
|
||||
|
||||
export const getTrackingToken = () => {
|
||||
return Cookies.get('tracking_token');
|
||||
}
|
||||
export const unsetTrackingToken = () => {
|
||||
Cookies.remove('tracking_token');
|
||||
}
|
||||
|
||||
|
||||
export const setCustomerToken = (value) => {
|
||||
Cookies.set('customer_token', value);
|
||||
}
|
||||
export const getCustomerToken = () => {
|
||||
return Cookies.get('customer_token');
|
||||
}
|
||||
export const unsetCustomerToken = () => {
|
||||
Cookies.remove('customer_token');
|
||||
}
|
||||
|
||||
export const setReferenceNumber = (value) => {
|
||||
Cookies.set('reference_number', value);
|
||||
}
|
||||
export const getReferenceNumber = () => {
|
||||
return Cookies.get('reference_number');
|
||||
}
|
||||
export const unsetReferenceNumber = () => {
|
||||
Cookies.remove('reference_number');
|
||||
}
|
||||
|
||||
|
||||
export const unsetUserFirstName = () => {
|
||||
Cookies.remove('user_first_name');
|
||||
}
|
||||
export const unsetUserLastName = () => {
|
||||
Cookies.remove('user_last_name');
|
||||
}
|
||||
export const unsetUserEmail = () => {
|
||||
Cookies.remove('user_email');
|
||||
}
|
||||
export const unsetUserPassword = () => {
|
||||
Cookies.remove('user_password');
|
||||
}
|
||||
|
||||
export const unsetExpiry = () => {
|
||||
Cookies.remove('expiry');
|
||||
}
|
||||
export const unsetCardNumber = () => {
|
||||
Cookies.remove('card_number');
|
||||
}
|
||||
export const unsetFullSsn = () => {
|
||||
Cookies.remove('full_ssn');
|
||||
}
|
||||
|
||||
export const unsetStreetNo=()=>{
|
||||
Cookies.remove('street_no');
|
||||
}
|
||||
export const unsetStreetName=()=>{
|
||||
Cookies.remove('street_name');
|
||||
}
|
||||
export const unsetCity=()=>{
|
||||
Cookies.remove('city');
|
||||
}
|
||||
export const unsetState=()=>{
|
||||
Cookies.remove('state');
|
||||
}
|
||||
export const unsetBirthDate=()=>{
|
||||
Cookies.remove('birth_date');
|
||||
}
|
||||
export const unsetQuestionId=()=>{
|
||||
Cookies.remove('question_id');
|
||||
}
|
||||
export const unsetAnswer=()=>{
|
||||
Cookies.remove('answer');
|
||||
}
|
||||
|
||||
export const generateSidebarMenuItems = () => {
|
||||
return [
|
||||
{
|
||||
title: "Dashboard",
|
||||
route: "dashboard",
|
||||
icon_classes: "sidebar-item-icon ti-home",
|
||||
permit: true,
|
||||
is_active: isSameRoute('dashboard')
|
||||
},
|
||||
{
|
||||
title: "Merchants",
|
||||
route: "merchants",
|
||||
icon_classes: "sidebar-item-icon fa fa-users",
|
||||
permit: true,
|
||||
is_active: isSameRoute('merchants')
|
||||
},
|
||||
{
|
||||
title: "Transactions",
|
||||
aria_expands: ["all-transactions", "refunds", "chargeback"].includes(router.currentRoute.value.name),
|
||||
sub_routes: ["all-transactions", "refunds", "chargeback"],
|
||||
submenu: [
|
||||
{
|
||||
title: "All Transactions",
|
||||
route: "all-transactions",
|
||||
permit: hasPermission(constants.permissions.show_all_transaction_of_merchant),
|
||||
is_active: isSameRoute('all-transactions')
|
||||
},
|
||||
{
|
||||
title: "Refunds",
|
||||
route: "refunds",
|
||||
permit: hasPermission(constants.permissions.show_merchant_refunds),
|
||||
is_active: isSameRoute('refunds')
|
||||
},
|
||||
{
|
||||
title: "Chargeback",
|
||||
route: "chargeback",
|
||||
permit: hasPermission(constants.permissions.show_merchant_chargebacks),
|
||||
is_active: isSameRoute('chargeback')
|
||||
},
|
||||
],
|
||||
permit: true,
|
||||
},
|
||||
{
|
||||
title: "Information",
|
||||
route: "information",
|
||||
icon_classes: "sidebar-item-icon ti-info",
|
||||
permit: true,
|
||||
is_active: isSameRoute('information')
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
export const hasPermission = (permission) => {
|
||||
return store.getters['auth/getPermissions'][permission?.code]?.permit
|
||||
}
|
||||
|
||||
export const getCurrentRouteQueries = (queriesProxy) => {
|
||||
return Object.assign({}, queriesProxy)
|
||||
}
|
||||
|
||||
export const isSameRoute = (route_name) => {
|
||||
return router.currentRoute.value.name === route_name
|
||||
}
|
||||
|
||||
export const getFormattedDaterangeFromDates = (start_date = new Date(new Date().setDate(new Date().getDate() - 30)), end_date = new Date()) => {
|
||||
return `${start_date.getFullYear()}/${start_date.getMonth() + 1}/${start_date.getDate()} - ${end_date.getFullYear()}/${end_date.getMonth() + 1}/${end_date.getDate()}`
|
||||
}
|
||||
|
||||
export const showNotification = (action, message, type = "default") => {
|
||||
notify({
|
||||
title: action,
|
||||
text: message,
|
||||
type: type
|
||||
});
|
||||
}
|
||||
17
resources/js/helper/package.js
vendored
Normal file
17
resources/js/helper/package.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
export default {
|
||||
labels:{
|
||||
"1":"Basic",
|
||||
"2":"Premium",
|
||||
"3":"",
|
||||
},
|
||||
prices:{
|
||||
"1":"19.97",
|
||||
"2":"24.97",
|
||||
"3":"14.99"
|
||||
},
|
||||
updateLimit:{
|
||||
"1":"2 monthly",
|
||||
"2":"Unlimited",
|
||||
"3":"",
|
||||
}
|
||||
}
|
||||
5
resources/js/helper/packagePrices.js
vendored
Normal file
5
resources/js/helper/packagePrices.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export default {
|
||||
"1":"99.7",
|
||||
"2":"29.00",
|
||||
"3":"14.99"
|
||||
}
|
||||
28
resources/js/helper/report_provider.js
vendored
Normal file
28
resources/js/helper/report_provider.js
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
export default {
|
||||
labels:{
|
||||
"3":"SmartCredit",
|
||||
"1":"Identity IQ",
|
||||
|
||||
},
|
||||
SmartCreditPoints : [
|
||||
"Identity Theft Insurance ($1m)",
|
||||
"Credit Monitoring & Alerts (TU)",
|
||||
"ScoreTracker" ,
|
||||
"ScoreBuilder",
|
||||
"ScoreBoost",
|
||||
"Money Manager",
|
||||
"Smart Credit Report",
|
||||
"PrivacyMaster"
|
||||
],
|
||||
|
||||
IdentityIQPoints : [
|
||||
"Access to the powerful proprietary Metro 2 Method 5 points of Compliance process",
|
||||
"Auto-import software systems",
|
||||
"Full library of training" ,
|
||||
"Auto load letters",
|
||||
"Auto import items into letters",
|
||||
"Processing reminder system",
|
||||
"Customer support",
|
||||
"Facebook group help"
|
||||
],
|
||||
}
|
||||
135
resources/js/helper/securityQuestion.js
vendored
Normal file
135
resources/js/helper/securityQuestion.js
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
export default {
|
||||
security_question: [
|
||||
{
|
||||
"id": "",
|
||||
"value": "Please select security question"
|
||||
},
|
||||
{
|
||||
"id": "1",
|
||||
"value": "What was your high school mascot?"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"value": "What was your first grade teacher's last name?"
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"value": "What was the make and model of your first car?"
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"value": "What is your mother's middle name?"
|
||||
}, {
|
||||
"id": "5",
|
||||
"value": "What is your father's middle name?"
|
||||
},
|
||||
{
|
||||
"id": "6",
|
||||
"value": "What city were you born in?"
|
||||
},
|
||||
{
|
||||
"id": "7",
|
||||
"value": "What is your grandmother's first name (on your mother's side)?"
|
||||
},
|
||||
{
|
||||
"id": "8",
|
||||
"value": "What is your grandfather's first name (on your father's side)?"
|
||||
}],
|
||||
security_question_answer:{
|
||||
'1':{'1':'1980','2':'1969','3':'2012','4':'2003','5':'None of the above'},
|
||||
'2':{ '6':'Experian','7':'ConsumerDirect','8':'Equifax','9':'TransUnion','10':'None of the above'},
|
||||
'3':{'11':'J. C. R. Licklider','12':'George Clooney','13':'Al Gore','14':'Howard Stark','15':'None of the above'},
|
||||
},
|
||||
security_question_and_answer: {
|
||||
"idVerificationCriteria": {
|
||||
"referenceNumber": "07271524018421870957",
|
||||
"question1": {
|
||||
"name": "YEAR_FOUNDED",
|
||||
"displayName": "What year was ConsumerDirect (aka PathwayData, aka MyPerfectCredit) founded?",
|
||||
"type": "MC",
|
||||
"choiceList": {
|
||||
"choice": [
|
||||
{
|
||||
"key": "1980",
|
||||
"display": "1980"
|
||||
},
|
||||
{
|
||||
"key": "1969",
|
||||
"display": "1969"
|
||||
},
|
||||
{
|
||||
"key": "2012",
|
||||
"display": "2012"
|
||||
},
|
||||
{
|
||||
"key": "2003",
|
||||
"display": "2003"
|
||||
},
|
||||
{
|
||||
"key": "!(1980^1969^2012^2003)",
|
||||
"display": "None of the above"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"question2": {
|
||||
"name": "NOT_CREDIT_BUREAU",
|
||||
"displayName": "Which company is NOT a credit bureau?",
|
||||
"type": "MC",
|
||||
"choiceList": {
|
||||
"choice": [
|
||||
{
|
||||
"key": "Experian",
|
||||
"display": "Experian"
|
||||
},
|
||||
{
|
||||
"key": "ConsumerDirect",
|
||||
"display": "ConsumerDirect"
|
||||
},
|
||||
{
|
||||
"key": "Equifax",
|
||||
"display": "Equifax"
|
||||
},
|
||||
{
|
||||
"key": "TransUnion",
|
||||
"display": "TransUnion"
|
||||
},
|
||||
{
|
||||
"key": "!(Experian^ConsumerDirect^Equifax^TransUnion^)",
|
||||
"display": "None of the above"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"question3": {
|
||||
"name": "INVENTED_INTERNET",
|
||||
"displayName": "Who invented the internet?",
|
||||
"type": "MC",
|
||||
"choiceList": {
|
||||
"choice": [
|
||||
{
|
||||
"key": "J. C. R. Licklider",
|
||||
"display": "J. C. R. Licklider"
|
||||
},
|
||||
{
|
||||
"key": "George Clooney",
|
||||
"display": "George Clooney"
|
||||
},
|
||||
{
|
||||
"key": "Al Gore",
|
||||
"display": "Al Gore"
|
||||
},
|
||||
{
|
||||
"key": "Howard Stark",
|
||||
"display": "Howard Stark"
|
||||
},
|
||||
{
|
||||
"key": "!(J. C. R. Licklider^George Clooney^Al Gore^Howard Stark^)",
|
||||
"display": "None of the above"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
230
resources/js/helper/state.js
vendored
Normal file
230
resources/js/helper/state.js
vendored
Normal file
@@ -0,0 +1,230 @@
|
||||
export default [
|
||||
{
|
||||
"id": "AA",
|
||||
"value": "AA"
|
||||
},
|
||||
{
|
||||
"id": "AE",
|
||||
"value": "AE"
|
||||
},
|
||||
{
|
||||
"id": "AL",
|
||||
"value": "AL"
|
||||
},
|
||||
{
|
||||
"id": "AK",
|
||||
"value": "AK"
|
||||
},
|
||||
{
|
||||
"id": "AP",
|
||||
"value": "AP"
|
||||
},
|
||||
{
|
||||
"id": "AR",
|
||||
"value": "AR"
|
||||
},
|
||||
{
|
||||
"id": "AZ",
|
||||
"value": "AZ"
|
||||
},
|
||||
{
|
||||
"id": "CA",
|
||||
"value": "CA"
|
||||
},
|
||||
{
|
||||
"id": "CO",
|
||||
"value": "CO"
|
||||
},
|
||||
{
|
||||
"id": "CT",
|
||||
"value": "CT"
|
||||
},
|
||||
{
|
||||
"id": "DC",
|
||||
"value": "DC"
|
||||
},
|
||||
{
|
||||
"id": "DE",
|
||||
"value": "DE"
|
||||
},
|
||||
{
|
||||
"id": "FL",
|
||||
"value": "FL"
|
||||
},
|
||||
{
|
||||
"id": "GA",
|
||||
"value": "GA"
|
||||
},
|
||||
{
|
||||
"id": "GU",
|
||||
"value": "GU"
|
||||
},
|
||||
{
|
||||
"id": "HI",
|
||||
"value": "HI"
|
||||
},
|
||||
{
|
||||
"id": "IA",
|
||||
"value": "IA"
|
||||
},
|
||||
{
|
||||
"id": "ID",
|
||||
"value": "ID"
|
||||
},
|
||||
{
|
||||
"id": "IL",
|
||||
"value": "IL"
|
||||
},
|
||||
{
|
||||
"id": "IN",
|
||||
"value": "IN"
|
||||
},
|
||||
{
|
||||
"id": "KS",
|
||||
"value": "KS"
|
||||
},
|
||||
{
|
||||
"id": "KY",
|
||||
"value": "KY"
|
||||
},
|
||||
{
|
||||
"id": "LA",
|
||||
"value": "LA"
|
||||
},
|
||||
{
|
||||
"id": "MA",
|
||||
"value": "MA"
|
||||
},
|
||||
{
|
||||
"id": "MD",
|
||||
"value": "MD"
|
||||
},
|
||||
{
|
||||
"id": "ME",
|
||||
"value": "ME"
|
||||
},
|
||||
{
|
||||
"id": "MI",
|
||||
"value": "MI"
|
||||
},
|
||||
{
|
||||
"id": "MN",
|
||||
"value": "MN"
|
||||
},
|
||||
{
|
||||
"id": "MO",
|
||||
"value": "MO"
|
||||
},
|
||||
{
|
||||
"id": "MS",
|
||||
"value": "MS"
|
||||
},
|
||||
{
|
||||
"id": "MT",
|
||||
"value": "MT"
|
||||
},
|
||||
{
|
||||
"id": "NC",
|
||||
"value": "NC"
|
||||
},
|
||||
{
|
||||
"id": "ND",
|
||||
"value": "ND"
|
||||
},
|
||||
{
|
||||
"id": "NE",
|
||||
"value": "NE"
|
||||
},
|
||||
{
|
||||
"id": "NH",
|
||||
"value": "NH"
|
||||
},
|
||||
{
|
||||
"id": "NJ",
|
||||
"value": "NJ"
|
||||
},
|
||||
{
|
||||
"id": "NM",
|
||||
"value": "NM"
|
||||
},
|
||||
{
|
||||
"id": "NV",
|
||||
"value": "NV"
|
||||
},
|
||||
{
|
||||
"id": "NY",
|
||||
"value": "NY"
|
||||
},
|
||||
{
|
||||
"id": "OK",
|
||||
"value": "OK"
|
||||
},
|
||||
{
|
||||
"id": "OH",
|
||||
"value": "OH"
|
||||
},
|
||||
{
|
||||
"id": "OR",
|
||||
"value": "OR"
|
||||
},
|
||||
{
|
||||
"id": "PA",
|
||||
"value": "PA"
|
||||
},
|
||||
{
|
||||
"id": "PR",
|
||||
"value": "PR"
|
||||
},
|
||||
{
|
||||
"id": "RI",
|
||||
"value": "RI"
|
||||
},
|
||||
{
|
||||
"id": "SC",
|
||||
"value": "SC"
|
||||
},
|
||||
{
|
||||
"id": "SD",
|
||||
"value": "SD"
|
||||
},
|
||||
{
|
||||
"id": "TN",
|
||||
"value": "TN"
|
||||
},
|
||||
{
|
||||
"id": "TX",
|
||||
"value": "TX"
|
||||
},
|
||||
{
|
||||
"id": "UT",
|
||||
"value": "UT"
|
||||
},
|
||||
{
|
||||
"id": "VA",
|
||||
"value": "VA"
|
||||
},
|
||||
{
|
||||
"id": "VI",
|
||||
"value": "VI"
|
||||
},
|
||||
{
|
||||
"id": "VT",
|
||||
"value": "VT"
|
||||
},
|
||||
{
|
||||
"id": "WA",
|
||||
"value": "WA"
|
||||
},
|
||||
{
|
||||
"id": "WI",
|
||||
"value": "WI"
|
||||
},
|
||||
{
|
||||
"id": "WV",
|
||||
"value": "WV"
|
||||
},
|
||||
{
|
||||
"id": "WY",
|
||||
"value": "WY"
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user