@verma-consulting/common-library 0.1.22 → 0.1.24
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/dist/index.d.mts +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +428 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +428 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2000,7 +2000,7 @@ declare const constants: {
|
|
|
2000
2000
|
GQL_FIELD_TYPE: {
|
|
2001
2001
|
LIST: string;
|
|
2002
2002
|
OBJECT: string;
|
|
2003
|
-
|
|
2003
|
+
ENUM: string;
|
|
2004
2004
|
String: string;
|
|
2005
2005
|
Float: string;
|
|
2006
2006
|
Int: string;
|
|
@@ -2035,7 +2035,17 @@ declare const constants: {
|
|
|
2035
2035
|
};
|
|
2036
2036
|
POPULAR_EMAILS: string[];
|
|
2037
2037
|
STATES: string[];
|
|
2038
|
-
COUNTRIES:
|
|
2038
|
+
COUNTRIES: ({
|
|
2039
|
+
code: string;
|
|
2040
|
+
label: string;
|
|
2041
|
+
phone: string;
|
|
2042
|
+
suggested: boolean;
|
|
2043
|
+
} | {
|
|
2044
|
+
code: string;
|
|
2045
|
+
label: string;
|
|
2046
|
+
phone: string;
|
|
2047
|
+
suggested?: undefined;
|
|
2048
|
+
})[];
|
|
2039
2049
|
CURRENCIES: {
|
|
2040
2050
|
aed: string;
|
|
2041
2051
|
afn: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2000,7 +2000,7 @@ declare const constants: {
|
|
|
2000
2000
|
GQL_FIELD_TYPE: {
|
|
2001
2001
|
LIST: string;
|
|
2002
2002
|
OBJECT: string;
|
|
2003
|
-
|
|
2003
|
+
ENUM: string;
|
|
2004
2004
|
String: string;
|
|
2005
2005
|
Float: string;
|
|
2006
2006
|
Int: string;
|
|
@@ -2035,7 +2035,17 @@ declare const constants: {
|
|
|
2035
2035
|
};
|
|
2036
2036
|
POPULAR_EMAILS: string[];
|
|
2037
2037
|
STATES: string[];
|
|
2038
|
-
COUNTRIES:
|
|
2038
|
+
COUNTRIES: ({
|
|
2039
|
+
code: string;
|
|
2040
|
+
label: string;
|
|
2041
|
+
phone: string;
|
|
2042
|
+
suggested: boolean;
|
|
2043
|
+
} | {
|
|
2044
|
+
code: string;
|
|
2045
|
+
label: string;
|
|
2046
|
+
phone: string;
|
|
2047
|
+
suggested?: undefined;
|
|
2048
|
+
})[];
|
|
2039
2049
|
CURRENCIES: {
|
|
2040
2050
|
aed: string;
|
|
2041
2051
|
afn: string;
|
package/dist/index.js
CHANGED
|
@@ -991,7 +991,7 @@ var constants = {
|
|
|
991
991
|
GQL_FIELD_TYPE: {
|
|
992
992
|
LIST: "LIST",
|
|
993
993
|
OBJECT: "OBJECT",
|
|
994
|
-
|
|
994
|
+
ENUM: "ENUM",
|
|
995
995
|
String: "String",
|
|
996
996
|
Float: "Float",
|
|
997
997
|
Int: "Int",
|
|
@@ -1096,7 +1096,430 @@ var constants = {
|
|
|
1096
1096
|
"Wisconsin",
|
|
1097
1097
|
"Wyoming"
|
|
1098
1098
|
],
|
|
1099
|
-
COUNTRIES: [
|
|
1099
|
+
COUNTRIES: [
|
|
1100
|
+
{
|
|
1101
|
+
code: "US",
|
|
1102
|
+
label: "United States Of America",
|
|
1103
|
+
phone: "1",
|
|
1104
|
+
suggested: true
|
|
1105
|
+
},
|
|
1106
|
+
{ code: "AD", label: "Andorra", phone: "376" },
|
|
1107
|
+
{
|
|
1108
|
+
code: "AE",
|
|
1109
|
+
label: "United Arab Emirates",
|
|
1110
|
+
phone: "971"
|
|
1111
|
+
},
|
|
1112
|
+
{ code: "AF", label: "Afghanistan", phone: "93" },
|
|
1113
|
+
{
|
|
1114
|
+
code: "AG",
|
|
1115
|
+
label: "Antigua and Barbuda",
|
|
1116
|
+
phone: "1-268"
|
|
1117
|
+
},
|
|
1118
|
+
{ code: "AI", label: "Anguilla", phone: "1-264" },
|
|
1119
|
+
{ code: "AL", label: "Albania", phone: "355" },
|
|
1120
|
+
{ code: "AM", label: "Armenia", phone: "374" },
|
|
1121
|
+
{ code: "AO", label: "Angola", phone: "244" },
|
|
1122
|
+
{ code: "AQ", label: "Antarctica", phone: "672" },
|
|
1123
|
+
{ code: "AR", label: "Argentina", phone: "54" },
|
|
1124
|
+
{ code: "AS", label: "American Samoa", phone: "1-684" },
|
|
1125
|
+
{ code: "AT", label: "Austria", phone: "43" },
|
|
1126
|
+
{
|
|
1127
|
+
code: "AU",
|
|
1128
|
+
label: "Australia",
|
|
1129
|
+
phone: "61",
|
|
1130
|
+
suggested: true
|
|
1131
|
+
},
|
|
1132
|
+
{ code: "AW", label: "Aruba", phone: "297" },
|
|
1133
|
+
{ code: "AX", label: "Alland Islands", phone: "358" },
|
|
1134
|
+
{ code: "AZ", label: "Azerbaijan", phone: "994" },
|
|
1135
|
+
{
|
|
1136
|
+
code: "BA",
|
|
1137
|
+
label: "Bosnia and Herzegovina",
|
|
1138
|
+
phone: "387"
|
|
1139
|
+
},
|
|
1140
|
+
{ code: "BB", label: "Barbados", phone: "1-246" },
|
|
1141
|
+
{ code: "BD", label: "Bangladesh", phone: "880" },
|
|
1142
|
+
{ code: "BE", label: "Belgium", phone: "32" },
|
|
1143
|
+
{ code: "BF", label: "Burkina Faso", phone: "226" },
|
|
1144
|
+
{ code: "BG", label: "Bulgaria", phone: "359" },
|
|
1145
|
+
{ code: "BH", label: "Bahrain", phone: "973" },
|
|
1146
|
+
{ code: "BI", label: "Burundi", phone: "257" },
|
|
1147
|
+
{ code: "BJ", label: "Benin", phone: "229" },
|
|
1148
|
+
{ code: "BL", label: "Saint Barthelemy", phone: "590" },
|
|
1149
|
+
{ code: "BM", label: "Bermuda", phone: "1-441" },
|
|
1150
|
+
{ code: "BN", label: "Brunei Darussalam", phone: "673" },
|
|
1151
|
+
{ code: "BO", label: "Bolivia", phone: "591" },
|
|
1152
|
+
{ code: "BR", label: "Brazil", phone: "55" },
|
|
1153
|
+
{ code: "BS", label: "Bahamas", phone: "1-242" },
|
|
1154
|
+
{ code: "BT", label: "Bhutan", phone: "975" },
|
|
1155
|
+
{ code: "BV", label: "Bouvet Island", phone: "47" },
|
|
1156
|
+
{ code: "BW", label: "Botswana", phone: "267" },
|
|
1157
|
+
{ code: "BY", label: "Belarus", phone: "375" },
|
|
1158
|
+
{ code: "BZ", label: "Belize", phone: "501" },
|
|
1159
|
+
{
|
|
1160
|
+
code: "CA",
|
|
1161
|
+
label: "Canada",
|
|
1162
|
+
phone: "1",
|
|
1163
|
+
suggested: true
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
code: "CC",
|
|
1167
|
+
label: "Cocos (Keeling) Islands",
|
|
1168
|
+
phone: "61"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
code: "CD",
|
|
1172
|
+
label: "Congo, Democratic Republic of the",
|
|
1173
|
+
phone: "243"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
code: "CF",
|
|
1177
|
+
label: "Central African Republic",
|
|
1178
|
+
phone: "236"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
code: "CG",
|
|
1182
|
+
label: "Congo, Republic of the",
|
|
1183
|
+
phone: "242"
|
|
1184
|
+
},
|
|
1185
|
+
{ code: "CH", label: "Switzerland", phone: "41" },
|
|
1186
|
+
{ code: "CI", label: "Cote d'Ivoire", phone: "225" },
|
|
1187
|
+
{ code: "CK", label: "Cook Islands", phone: "682" },
|
|
1188
|
+
{ code: "CL", label: "Chile", phone: "56" },
|
|
1189
|
+
{ code: "CM", label: "Cameroon", phone: "237" },
|
|
1190
|
+
{ code: "CN", label: "China", phone: "86" },
|
|
1191
|
+
{ code: "CO", label: "Colombia", phone: "57" },
|
|
1192
|
+
{ code: "CR", label: "Costa Rica", phone: "506" },
|
|
1193
|
+
{ code: "CU", label: "Cuba", phone: "53" },
|
|
1194
|
+
{ code: "CV", label: "Cape Verde", phone: "238" },
|
|
1195
|
+
{ code: "CW", label: "Curacao", phone: "599" },
|
|
1196
|
+
{ code: "CX", label: "Christmas Island", phone: "61" },
|
|
1197
|
+
{ code: "CY", label: "Cyprus", phone: "357" },
|
|
1198
|
+
{ code: "CZ", label: "Czech Republic", phone: "420" },
|
|
1199
|
+
{
|
|
1200
|
+
code: "DE",
|
|
1201
|
+
label: "Germany",
|
|
1202
|
+
phone: "49",
|
|
1203
|
+
suggested: true
|
|
1204
|
+
},
|
|
1205
|
+
{ code: "DJ", label: "Djibouti", phone: "253" },
|
|
1206
|
+
{ code: "DK", label: "Denmark", phone: "45" },
|
|
1207
|
+
{ code: "DM", label: "Dominica", phone: "1-767" },
|
|
1208
|
+
{
|
|
1209
|
+
code: "DO",
|
|
1210
|
+
label: "Dominican Republic",
|
|
1211
|
+
phone: "1-809"
|
|
1212
|
+
},
|
|
1213
|
+
{ code: "DZ", label: "Algeria", phone: "213" },
|
|
1214
|
+
{ code: "EC", label: "Ecuador", phone: "593" },
|
|
1215
|
+
{ code: "EE", label: "Estonia", phone: "372" },
|
|
1216
|
+
{ code: "EG", label: "Egypt", phone: "20" },
|
|
1217
|
+
{ code: "EH", label: "Western Sahara", phone: "212" },
|
|
1218
|
+
{ code: "ER", label: "Eritrea", phone: "291" },
|
|
1219
|
+
{ code: "ES", label: "Spain", phone: "34" },
|
|
1220
|
+
{ code: "ET", label: "Ethiopia", phone: "251" },
|
|
1221
|
+
{ code: "FI", label: "Finland", phone: "358" },
|
|
1222
|
+
{ code: "FJ", label: "Fiji", phone: "679" },
|
|
1223
|
+
{
|
|
1224
|
+
code: "FK",
|
|
1225
|
+
label: "Falkland Islands (Malvinas)",
|
|
1226
|
+
phone: "500"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
code: "FM",
|
|
1230
|
+
label: "Micronesia, Federated States of",
|
|
1231
|
+
phone: "691"
|
|
1232
|
+
},
|
|
1233
|
+
{ code: "FO", label: "Faroe Islands", phone: "298" },
|
|
1234
|
+
{
|
|
1235
|
+
code: "FR",
|
|
1236
|
+
label: "France",
|
|
1237
|
+
phone: "33",
|
|
1238
|
+
suggested: true
|
|
1239
|
+
},
|
|
1240
|
+
{ code: "GA", label: "Gabon", phone: "241" },
|
|
1241
|
+
{ code: "GB", label: "United Kingdom", phone: "44" },
|
|
1242
|
+
{ code: "GD", label: "Grenada", phone: "1-473" },
|
|
1243
|
+
{ code: "GE", label: "Georgia", phone: "995" },
|
|
1244
|
+
{ code: "GF", label: "French Guiana", phone: "594" },
|
|
1245
|
+
{ code: "GG", label: "Guernsey", phone: "44" },
|
|
1246
|
+
{ code: "GH", label: "Ghana", phone: "233" },
|
|
1247
|
+
{ code: "GI", label: "Gibraltar", phone: "350" },
|
|
1248
|
+
{ code: "GL", label: "Greenland", phone: "299" },
|
|
1249
|
+
{ code: "GM", label: "Gambia", phone: "220" },
|
|
1250
|
+
{ code: "GN", label: "Guinea", phone: "224" },
|
|
1251
|
+
{ code: "GP", label: "Guadeloupe", phone: "590" },
|
|
1252
|
+
{ code: "GQ", label: "Equatorial Guinea", phone: "240" },
|
|
1253
|
+
{ code: "GR", label: "Greece", phone: "30" },
|
|
1254
|
+
{
|
|
1255
|
+
code: "GS",
|
|
1256
|
+
label: "South Georgia and the South Sandwich Islands",
|
|
1257
|
+
phone: "500"
|
|
1258
|
+
},
|
|
1259
|
+
{ code: "GT", label: "Guatemala", phone: "502" },
|
|
1260
|
+
{ code: "GU", label: "Guam", phone: "1-671" },
|
|
1261
|
+
{ code: "GW", label: "Guinea-Bissau", phone: "245" },
|
|
1262
|
+
{ code: "GY", label: "Guyana", phone: "592" },
|
|
1263
|
+
{ code: "HK", label: "Hong Kong", phone: "852" },
|
|
1264
|
+
{
|
|
1265
|
+
code: "HM",
|
|
1266
|
+
label: "Heard Island and McDonald Islands",
|
|
1267
|
+
phone: "672"
|
|
1268
|
+
},
|
|
1269
|
+
{ code: "HN", label: "Honduras", phone: "504" },
|
|
1270
|
+
{ code: "HR", label: "Croatia", phone: "385" },
|
|
1271
|
+
{ code: "HT", label: "Haiti", phone: "509" },
|
|
1272
|
+
{ code: "HU", label: "Hungary", phone: "36" },
|
|
1273
|
+
{ code: "ID", label: "Indonesia", phone: "62" },
|
|
1274
|
+
{ code: "IE", label: "Ireland", phone: "353" },
|
|
1275
|
+
{ code: "IL", label: "Israel", phone: "972" },
|
|
1276
|
+
{ code: "IM", label: "Isle of Man", phone: "44" },
|
|
1277
|
+
{ code: "IN", label: "India", phone: "91" },
|
|
1278
|
+
{
|
|
1279
|
+
code: "IO",
|
|
1280
|
+
label: "British Indian Ocean Territory",
|
|
1281
|
+
phone: "246"
|
|
1282
|
+
},
|
|
1283
|
+
{ code: "IQ", label: "Iraq", phone: "964" },
|
|
1284
|
+
{
|
|
1285
|
+
code: "IR",
|
|
1286
|
+
label: "Iran, Islamic Republic of",
|
|
1287
|
+
phone: "98"
|
|
1288
|
+
},
|
|
1289
|
+
{ code: "IS", label: "Iceland", phone: "354" },
|
|
1290
|
+
{ code: "IT", label: "Italy", phone: "39" },
|
|
1291
|
+
{ code: "JE", label: "Jersey", phone: "44" },
|
|
1292
|
+
{ code: "JM", label: "Jamaica", phone: "1-876" },
|
|
1293
|
+
{ code: "JO", label: "Jordan", phone: "962" },
|
|
1294
|
+
{
|
|
1295
|
+
code: "JP",
|
|
1296
|
+
label: "Japan",
|
|
1297
|
+
phone: "81",
|
|
1298
|
+
suggested: true
|
|
1299
|
+
},
|
|
1300
|
+
{ code: "KE", label: "Kenya", phone: "254" },
|
|
1301
|
+
{ code: "KG", label: "Kyrgyzstan", phone: "996" },
|
|
1302
|
+
{ code: "KH", label: "Cambodia", phone: "855" },
|
|
1303
|
+
{ code: "KI", label: "Kiribati", phone: "686" },
|
|
1304
|
+
{ code: "KM", label: "Comoros", phone: "269" },
|
|
1305
|
+
{
|
|
1306
|
+
code: "KN",
|
|
1307
|
+
label: "Saint Kitts and Nevis",
|
|
1308
|
+
phone: "1-869"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
code: "KP",
|
|
1312
|
+
label: "Korea, Democratic People's Republic of",
|
|
1313
|
+
phone: "850"
|
|
1314
|
+
},
|
|
1315
|
+
{ code: "KR", label: "Korea, Republic of", phone: "82" },
|
|
1316
|
+
{ code: "KW", label: "Kuwait", phone: "965" },
|
|
1317
|
+
{ code: "KY", label: "Cayman Islands", phone: "1-345" },
|
|
1318
|
+
{ code: "KZ", label: "Kazakhstan", phone: "7" },
|
|
1319
|
+
{
|
|
1320
|
+
code: "LA",
|
|
1321
|
+
label: "Lao People's Democratic Republic",
|
|
1322
|
+
phone: "856"
|
|
1323
|
+
},
|
|
1324
|
+
{ code: "LB", label: "Lebanon", phone: "961" },
|
|
1325
|
+
{ code: "LC", label: "Saint Lucia", phone: "1-758" },
|
|
1326
|
+
{ code: "LI", label: "Liechtenstein", phone: "423" },
|
|
1327
|
+
{ code: "LK", label: "Sri Lanka", phone: "94" },
|
|
1328
|
+
{ code: "LR", label: "Liberia", phone: "231" },
|
|
1329
|
+
{ code: "LS", label: "Lesotho", phone: "266" },
|
|
1330
|
+
{ code: "LT", label: "Lithuania", phone: "370" },
|
|
1331
|
+
{ code: "LU", label: "Luxembourg", phone: "352" },
|
|
1332
|
+
{ code: "LV", label: "Latvia", phone: "371" },
|
|
1333
|
+
{ code: "LY", label: "Libya", phone: "218" },
|
|
1334
|
+
{ code: "MA", label: "Morocco", phone: "212" },
|
|
1335
|
+
{ code: "MC", label: "Monaco", phone: "377" },
|
|
1336
|
+
{
|
|
1337
|
+
code: "MD",
|
|
1338
|
+
label: "Moldova, Republic of",
|
|
1339
|
+
phone: "373"
|
|
1340
|
+
},
|
|
1341
|
+
{ code: "ME", label: "Montenegro", phone: "382" },
|
|
1342
|
+
{
|
|
1343
|
+
code: "MF",
|
|
1344
|
+
label: "Saint Martin (French part)",
|
|
1345
|
+
phone: "590"
|
|
1346
|
+
},
|
|
1347
|
+
{ code: "MG", label: "Madagascar", phone: "261" },
|
|
1348
|
+
{ code: "MH", label: "Marshall Islands", phone: "692" },
|
|
1349
|
+
{
|
|
1350
|
+
code: "MK",
|
|
1351
|
+
label: "Macedonia, the Former Yugoslav Republic of",
|
|
1352
|
+
phone: "389"
|
|
1353
|
+
},
|
|
1354
|
+
{ code: "ML", label: "Mali", phone: "223" },
|
|
1355
|
+
{ code: "MM", label: "Myanmar", phone: "95" },
|
|
1356
|
+
{ code: "MN", label: "Mongolia", phone: "976" },
|
|
1357
|
+
{ code: "MO", label: "Macao", phone: "853" },
|
|
1358
|
+
{
|
|
1359
|
+
code: "MP",
|
|
1360
|
+
label: "Northern Mariana Islands",
|
|
1361
|
+
phone: "1-670"
|
|
1362
|
+
},
|
|
1363
|
+
{ code: "MQ", label: "Martinique", phone: "596" },
|
|
1364
|
+
{ code: "MR", label: "Mauritania", phone: "222" },
|
|
1365
|
+
{ code: "MS", label: "Montserrat", phone: "1-664" },
|
|
1366
|
+
{ code: "MT", label: "Malta", phone: "356" },
|
|
1367
|
+
{ code: "MU", label: "Mauritius", phone: "230" },
|
|
1368
|
+
{ code: "MV", label: "Maldives", phone: "960" },
|
|
1369
|
+
{ code: "MW", label: "Malawi", phone: "265" },
|
|
1370
|
+
{ code: "MX", label: "Mexico", phone: "52" },
|
|
1371
|
+
{ code: "MY", label: "Malaysia", phone: "60" },
|
|
1372
|
+
{ code: "MZ", label: "Mozambique", phone: "258" },
|
|
1373
|
+
{ code: "NA", label: "Namibia", phone: "264" },
|
|
1374
|
+
{ code: "NC", label: "New Caledonia", phone: "687" },
|
|
1375
|
+
{ code: "NE", label: "Niger", phone: "227" },
|
|
1376
|
+
{ code: "NF", label: "Norfolk Island", phone: "672" },
|
|
1377
|
+
{ code: "NG", label: "Nigeria", phone: "234" },
|
|
1378
|
+
{ code: "NI", label: "Nicaragua", phone: "505" },
|
|
1379
|
+
{ code: "NL", label: "Netherlands", phone: "31" },
|
|
1380
|
+
{ code: "NO", label: "Norway", phone: "47" },
|
|
1381
|
+
{ code: "NP", label: "Nepal", phone: "977" },
|
|
1382
|
+
{ code: "NR", label: "Nauru", phone: "674" },
|
|
1383
|
+
{ code: "NU", label: "Niue", phone: "683" },
|
|
1384
|
+
{ code: "NZ", label: "New Zealand", phone: "64" },
|
|
1385
|
+
{ code: "OM", label: "Oman", phone: "968" },
|
|
1386
|
+
{ code: "PA", label: "Panama", phone: "507" },
|
|
1387
|
+
{ code: "PE", label: "Peru", phone: "51" },
|
|
1388
|
+
{ code: "PF", label: "French Polynesia", phone: "689" },
|
|
1389
|
+
{ code: "PG", label: "Papua New Guinea", phone: "675" },
|
|
1390
|
+
{ code: "PH", label: "Philippines", phone: "63" },
|
|
1391
|
+
{ code: "PK", label: "Pakistan", phone: "92" },
|
|
1392
|
+
{ code: "PL", label: "Poland", phone: "48" },
|
|
1393
|
+
{
|
|
1394
|
+
code: "PM",
|
|
1395
|
+
label: "Saint Pierre and Miquelon",
|
|
1396
|
+
phone: "508"
|
|
1397
|
+
},
|
|
1398
|
+
{ code: "PN", label: "Pitcairn", phone: "870" },
|
|
1399
|
+
{ code: "PR", label: "Puerto Rico", phone: "1" },
|
|
1400
|
+
{
|
|
1401
|
+
code: "PS",
|
|
1402
|
+
label: "Palestine, State of",
|
|
1403
|
+
phone: "970"
|
|
1404
|
+
},
|
|
1405
|
+
{ code: "PT", label: "Portugal", phone: "351" },
|
|
1406
|
+
{ code: "PW", label: "Palau", phone: "680" },
|
|
1407
|
+
{ code: "PY", label: "Paraguay", phone: "595" },
|
|
1408
|
+
{ code: "QA", label: "Qatar", phone: "974" },
|
|
1409
|
+
{ code: "RE", label: "Reunion", phone: "262" },
|
|
1410
|
+
{ code: "RO", label: "Romania", phone: "40" },
|
|
1411
|
+
{ code: "RS", label: "Serbia", phone: "381" },
|
|
1412
|
+
{ code: "RU", label: "Russian Federation", phone: "7" },
|
|
1413
|
+
{ code: "RW", label: "Rwanda", phone: "250" },
|
|
1414
|
+
{ code: "SA", label: "Saudi Arabia", phone: "966" },
|
|
1415
|
+
{ code: "SB", label: "Solomon Islands", phone: "677" },
|
|
1416
|
+
{ code: "SC", label: "Seychelles", phone: "248" },
|
|
1417
|
+
{ code: "SD", label: "Sudan", phone: "249" },
|
|
1418
|
+
{ code: "SE", label: "Sweden", phone: "46" },
|
|
1419
|
+
{ code: "SG", label: "Singapore", phone: "65" },
|
|
1420
|
+
{ code: "SH", label: "Saint Helena", phone: "290" },
|
|
1421
|
+
{ code: "SI", label: "Slovenia", phone: "386" },
|
|
1422
|
+
{
|
|
1423
|
+
code: "SJ",
|
|
1424
|
+
label: "Svalbard and Jan Mayen",
|
|
1425
|
+
phone: "47"
|
|
1426
|
+
},
|
|
1427
|
+
{ code: "SK", label: "Slovakia", phone: "421" },
|
|
1428
|
+
{ code: "SL", label: "Sierra Leone", phone: "232" },
|
|
1429
|
+
{ code: "SM", label: "San Marino", phone: "378" },
|
|
1430
|
+
{ code: "SN", label: "Senegal", phone: "221" },
|
|
1431
|
+
{ code: "SO", label: "Somalia", phone: "252" },
|
|
1432
|
+
{ code: "SR", label: "Suriname", phone: "597" },
|
|
1433
|
+
{ code: "SS", label: "South Sudan", phone: "211" },
|
|
1434
|
+
{
|
|
1435
|
+
code: "ST",
|
|
1436
|
+
label: "Sao Tome and Principe",
|
|
1437
|
+
phone: "239"
|
|
1438
|
+
},
|
|
1439
|
+
{ code: "SV", label: "El Salvador", phone: "503" },
|
|
1440
|
+
{
|
|
1441
|
+
code: "SX",
|
|
1442
|
+
label: "Sint Maarten (Dutch part)",
|
|
1443
|
+
phone: "1-721"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
code: "SY",
|
|
1447
|
+
label: "Syrian Arab Republic",
|
|
1448
|
+
phone: "963"
|
|
1449
|
+
},
|
|
1450
|
+
{ code: "SZ", label: "Swaziland", phone: "268" },
|
|
1451
|
+
{
|
|
1452
|
+
code: "TC",
|
|
1453
|
+
label: "Turks and Caicos Islands",
|
|
1454
|
+
phone: "1-649"
|
|
1455
|
+
},
|
|
1456
|
+
{ code: "TD", label: "Chad", phone: "235" },
|
|
1457
|
+
{
|
|
1458
|
+
code: "TF",
|
|
1459
|
+
label: "French Southern Territories",
|
|
1460
|
+
phone: "262"
|
|
1461
|
+
},
|
|
1462
|
+
{ code: "TG", label: "Togo", phone: "228" },
|
|
1463
|
+
{ code: "TH", label: "Thailand", phone: "66" },
|
|
1464
|
+
{ code: "TJ", label: "Tajikistan", phone: "992" },
|
|
1465
|
+
{ code: "TK", label: "Tokelau", phone: "690" },
|
|
1466
|
+
{ code: "TL", label: "Timor-Leste", phone: "670" },
|
|
1467
|
+
{ code: "TM", label: "Turkmenistan", phone: "993" },
|
|
1468
|
+
{ code: "TN", label: "Tunisia", phone: "216" },
|
|
1469
|
+
{ code: "TO", label: "Tonga", phone: "676" },
|
|
1470
|
+
{ code: "TR", label: "Turkey", phone: "90" },
|
|
1471
|
+
{
|
|
1472
|
+
code: "TT",
|
|
1473
|
+
label: "Trinidad and Tobago",
|
|
1474
|
+
phone: "1-868"
|
|
1475
|
+
},
|
|
1476
|
+
{ code: "TV", label: "Tuvalu", phone: "688" },
|
|
1477
|
+
{
|
|
1478
|
+
code: "TW",
|
|
1479
|
+
label: "Taiwan",
|
|
1480
|
+
phone: "886"
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
code: "TZ",
|
|
1484
|
+
label: "United Republic of Tanzania",
|
|
1485
|
+
phone: "255"
|
|
1486
|
+
},
|
|
1487
|
+
{ code: "UA", label: "Ukraine", phone: "380" },
|
|
1488
|
+
{ code: "UG", label: "Uganda", phone: "256" },
|
|
1489
|
+
{ code: "UY", label: "Uruguay", phone: "598" },
|
|
1490
|
+
{ code: "UZ", label: "Uzbekistan", phone: "998" },
|
|
1491
|
+
{
|
|
1492
|
+
code: "VA",
|
|
1493
|
+
label: "Holy See (Vatican City State)",
|
|
1494
|
+
phone: "379"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
code: "VC",
|
|
1498
|
+
label: "Saint Vincent and the Grenadines",
|
|
1499
|
+
phone: "1-784"
|
|
1500
|
+
},
|
|
1501
|
+
{ code: "VE", label: "Venezuela", phone: "58" },
|
|
1502
|
+
{
|
|
1503
|
+
code: "VG",
|
|
1504
|
+
label: "British Virgin Islands",
|
|
1505
|
+
phone: "1-284"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
code: "VI",
|
|
1509
|
+
label: "US Virgin Islands",
|
|
1510
|
+
phone: "1-340"
|
|
1511
|
+
},
|
|
1512
|
+
{ code: "VN", label: "Vietnam", phone: "84" },
|
|
1513
|
+
{ code: "VU", label: "Vanuatu", phone: "678" },
|
|
1514
|
+
{ code: "WF", label: "Wallis and Futuna", phone: "681" },
|
|
1515
|
+
{ code: "WS", label: "Samoa", phone: "685" },
|
|
1516
|
+
{ code: "XK", label: "Kosovo", phone: "383" },
|
|
1517
|
+
{ code: "YE", label: "Yemen", phone: "967" },
|
|
1518
|
+
{ code: "YT", label: "Mayotte", phone: "262" },
|
|
1519
|
+
{ code: "ZA", label: "South Africa", phone: "27" },
|
|
1520
|
+
{ code: "ZM", label: "Zambia", phone: "260" },
|
|
1521
|
+
{ code: "ZW", label: "Zimbabwe", phone: "263" }
|
|
1522
|
+
],
|
|
1100
1523
|
CURRENCIES: {
|
|
1101
1524
|
aed: "United Arab Emirates Dirham",
|
|
1102
1525
|
afn: "Afghan Afghani",
|
|
@@ -1266,7 +1689,7 @@ var constants = {
|
|
|
1266
1689
|
xpf: "CFP Franc",
|
|
1267
1690
|
yer: "Yemeni Rial",
|
|
1268
1691
|
zar: "South African Rand",
|
|
1269
|
-
zmk: "Zambian Kwacha
|
|
1692
|
+
zmk: "Zambian Kwacha",
|
|
1270
1693
|
zmw: "Zambian Kwacha",
|
|
1271
1694
|
zwl: "Zimbabwean Dollar"
|
|
1272
1695
|
},
|
|
@@ -1643,7 +2066,7 @@ var defaults = {
|
|
|
1643
2066
|
annualRevenue: 0,
|
|
1644
2067
|
balance: 0,
|
|
1645
2068
|
nextInvoiceSequence: 1,
|
|
1646
|
-
taxExempt: "
|
|
2069
|
+
taxExempt: "none",
|
|
1647
2070
|
website: "",
|
|
1648
2071
|
source: "Advertisement",
|
|
1649
2072
|
logoUrl: "",
|
|
@@ -1745,7 +2168,7 @@ var defaults = {
|
|
|
1745
2168
|
collectionMethod: "charge_automatically",
|
|
1746
2169
|
customerEmail: "",
|
|
1747
2170
|
customerPhone: "",
|
|
1748
|
-
customerTaxExempt: "
|
|
2171
|
+
customerTaxExempt: "none",
|
|
1749
2172
|
invoicePdf: "",
|
|
1750
2173
|
lastFinalizationError: "",
|
|
1751
2174
|
number: null,
|