bysquare 2.4.0 → 2.5.0

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,397 +0,0 @@
1
- /**
2
- * Mapping semantic version to encoded version number, header 4-bits
3
- *
4
- * It's a bit silly to limit the version number to 4-bit, if they keep
5
- * increasing the version number, the latest possible mapped value is 16
6
- */
7
- export declare const enum Version {
8
- /**
9
- * 2013-02-22
10
- * Created this document from original by square specifications
11
- */
12
- "1.0.0" = 0,
13
- /**
14
- * 2015-06-24
15
- * Added fields for beneficiary name and address
16
- */
17
- "1.1.0" = 1
18
- }
19
- /**
20
- * Selection of one or more months on which payment occurs. This is enabled
21
- * only if periodicity is set to one of the following value: “Weekly,
22
- * Biweekly, Monthly, Bimonthly”. Otherwise it must not be specified.
23
- */
24
- export declare enum MonthClassifier {
25
- January = 1,
26
- February = 2,
27
- March = 4,
28
- April = 8,
29
- May = 16,
30
- June = 32,
31
- July = 64,
32
- August = 128,
33
- September = 256,
34
- October = 512,
35
- November = 1024,
36
- December = 2048
37
- }
38
- /**
39
- * Periodicity of the payment. All valid options are „Daily“, „Weekly“,
40
- * „Biweekly“, „Monthly“, „Bimonthly“, „Quarterly“, „Annually“,
41
- * „Semiannually“. To find out which periodicity types are supported by the
42
- * banks see the following web site: http://www.sbaonline.sk/sk/
43
- */
44
- export declare enum Periodicity {
45
- Daily = "d",
46
- Weekly = "w",
47
- Biweekly = "b",
48
- Monthly = "m",
49
- Bimonthly = "B",
50
- Quarterly = "q",
51
- Semiannually = "s",
52
- Annually = "a"
53
- }
54
- /**
55
- * This is the payment day. It‘s meaning depends on the periodicity, meaning
56
- * either day of the month (number between 1 and 31) or day of the week
57
- * (1=Monday,2=Tuesday, …, 7=Sunday).
58
- *
59
- * Max length 2
60
- */
61
- export type Day = 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;
62
- export declare enum PaymentOptions {
63
- PaymentOrder = 1,
64
- StandingOrder = 2,
65
- DirectDebit = 4
66
- }
67
- /**
68
- * In section „encoding BankAccounts“ we provide further recommendations for
69
- * encoding bank account
70
- */
71
- export type BankAccount = {
72
- /**
73
- * Max length 34
74
- */
75
- iban: string;
76
- /**
77
- * Format ISO 9362 (swift)
78
- * 8 or 11 characters long
79
- */
80
- bic?: string;
81
- };
82
- /**
83
- * If DirectDebitScheme value is 1, which is „SEPA“ than encoded direct
84
- * debit follows SEPA direct debit scheme which means that fields MandateID,
85
- * CreditorID and optional ContractID are used. If direct debit scheme is 0,
86
- * which is „OTHER“ this means no specific direct debit scheme and following
87
- * rules do apply:
88
- *
89
- * a. Creditor is identified via bank accounts
90
- *
91
- * b. Contract between debtor and creditor is identified using one of the
92
- * following two ways: 1. by two optional fields SpecificSymbol and
93
- * VariableSymbol. 2. by one optional field OriginatorsReferenceInformation.
94
- * If SpecificSymbol and VariableSymbol fields or
95
- * OriginatorsReferenceInformation field is filled in DirectDebitExt then
96
- * these fields do apply for the direct debit.
97
- */
98
- export declare enum DirectDebitScheme {
99
- Other = 0,
100
- Sepa = 1
101
- }
102
- /**
103
- * Can be „one­off“ for one time debit or „recurrent“ for repeated debit
104
- * until cancelled.
105
- *
106
- * Max length 1
107
- */
108
- export declare enum DirectDebitType {
109
- OneOff = 0,
110
- Recurrent = 1
111
- }
112
- export type Beneficiary = {
113
- /**
114
- * Belongs to the N-th payment
115
- *
116
- * Max length 70
117
- */
118
- name?: string;
119
- /**
120
- * Belongs to the N-th payment
121
- * Commonly used street and street number
122
- *
123
- * Max length 70
124
- */
125
- street?: string;
126
- /**
127
- * Belongs to the N-th payment
128
- * Commonly used for City
129
- *
130
- * Max length 70
131
- */
132
- city?: string;
133
- };
134
- export type SimplePayment = {
135
- /**
136
- * Encoded with amount payable. This field is not required and can be left
137
- * blank in cases payment amount is not known ­such as donations.
138
- *
139
- * Decimal, max length 15
140
- */
141
- amount?: number;
142
- /**
143
- * 3 letter, payment currency code according to ISO-4217
144
- */
145
- currencyCode: keyof typeof CurrencyCodeEnum;
146
- /**
147
- * Format YYYYMMDD
148
- */
149
- paymentDueDate?: string;
150
- /**
151
- * Max length 10
152
- */
153
- variableSymbol?: string;
154
- /**
155
- * Max length 4
156
- */
157
- constantSymbol?: string;
158
- /**
159
- * Max length 10
160
- */
161
- specificSymbol?: string;
162
- /**
163
- * Max length 35
164
- */
165
- originatorRefInfo?: string;
166
- /**
167
- * Optional field. In previous section we provide further recommendations
168
- * for encoding payment note.
169
- *
170
- * Max length 140
171
- */
172
- paymentNote?: string;
173
- bankAccounts: BankAccount[];
174
- beneficiary?: Beneficiary;
175
- };
176
- export type PaymentOrder = SimplePayment & {
177
- type: PaymentOptions.PaymentOrder;
178
- };
179
- export type StandingOrder = SimplePayment & {
180
- type: PaymentOptions.StandingOrder;
181
- day?: Day;
182
- month?: MonthClassifier;
183
- periodicity?: Periodicity;
184
- /**
185
- * Defines the day of the last payment of the standing order. After this
186
- * date, standing order is cancelled.
187
- *
188
- * Format YYYYMMDD
189
- */
190
- lastDate?: string;
191
- };
192
- export type DirectDebit = SimplePayment & {
193
- type: PaymentOptions.DirectDebit;
194
- directDebitScheme?: DirectDebitScheme;
195
- directDebitType?: DirectDebitType;
196
- /**
197
- * Max length 35
198
- */
199
- mandateId?: string;
200
- /**
201
- * Max length 35
202
- */
203
- creditorId?: string;
204
- /**
205
- * Max length 35
206
- */
207
- contractId?: string;
208
- /**
209
- * Optional field. As most users prefer to set up some maximum amount for
210
- * the direct debit, this can be pre­-filled for them.
211
- *
212
- * Decimal, max length 15
213
- */
214
- maxAmount?: number;
215
- /**
216
- * Defines the day after which direct debit is cancelled.
217
- *
218
- * Max length 8
219
- * Format YYYYMMDD
220
- */
221
- validTillDate?: string;
222
- };
223
- export type Payment = PaymentOrder | StandingOrder | DirectDebit;
224
- export type DataModel = {
225
- /**
226
- * Max length 10
227
- */
228
- invoiceId?: string;
229
- payments: Payment[];
230
- };
231
- /**
232
- * Currency codes based on ISO-4217
233
- */
234
- export declare enum CurrencyCodeEnum {
235
- AED = "United Arab Emirates Dirham",
236
- AFN = "Afghanistan Afghani",
237
- ALL = "Albania Lek",
238
- AMD = "Armenia Dram",
239
- ANG = "Netherlands Antilles Guilder",
240
- AOA = "Angola Kwanza",
241
- ARS = "Argentina Peso",
242
- AUD = "Australia Dollar",
243
- AWG = "Aruba Guilder",
244
- AZN = "Azerbaijan New Manat",
245
- BAM = "Bosnia and Herzegovina Convertible Marka",
246
- BBD = "Barbados Dollar",
247
- BDT = "Bangladesh Taka",
248
- BGN = "Bulgaria Lev",
249
- BHD = "Bahrain Dinar",
250
- BIF = "Burundi Franc",
251
- BMD = "Bermuda Dollar",
252
- BND = "Brunei Darussalam Dollar",
253
- BOB = "Bolivia Bol\u00EDviano",
254
- BRL = "Brazil Real",
255
- BSD = "Bahamas Dollar",
256
- BTN = "Bhutan Ngultrum",
257
- BWP = "Botswana Pula",
258
- BYR = "Belarus Ruble",
259
- BZD = "Belize Dollar",
260
- CAD = "Canada Dollar",
261
- CDF = "Congo/Kinshasa Franc",
262
- CHF = "Switzerland Franc",
263
- CLP = "Chile Peso",
264
- CNY = "China Yuan Renminbi",
265
- COP = "Colombia Peso",
266
- CRC = "Costa Rica Colon",
267
- CUC = "Cuba Convertible Peso",
268
- CUP = "Cuba Peso",
269
- CVE = "Cape Verde Escudo",
270
- CZK = "Czech Republic Koruna",
271
- DJF = "Djibouti Franc",
272
- DKK = "Denmark Krone",
273
- DOP = "Dominican Republic Peso",
274
- DZD = "Algeria Dinar",
275
- EGP = "Egypt Pound",
276
- ERN = "Eritrea Nakfa",
277
- ETB = "Ethiopia Birr",
278
- EUR = "Euro Member Countries",
279
- FJD = "Fiji Dollar",
280
- FKP = "Falkland Islands = Malvinas Pound",
281
- GBP = "United Kingdom Pound",
282
- GEL = "Georgia Lari",
283
- GGP = "Guernsey Pound",
284
- GHS = "Ghana Cedi",
285
- GIP = "Gibraltar Pound",
286
- GMD = "Gambia Dalasi",
287
- GNF = "Guinea Franc",
288
- GTQ = "Guatemala Quetzal",
289
- GYD = "Guyana Dollar",
290
- HKD = "Hong Kong Dollar",
291
- HNL = "Honduras Lempira",
292
- HRK = "Croatia Kuna",
293
- HTG = "Haiti Gourde",
294
- HUF = "Hungary Forint",
295
- IDR = "Indonesia Rupiah",
296
- ILS = "Israel Shekel",
297
- IMP = "Isle of Man Pound",
298
- INR = "India Rupee",
299
- IQD = "Iraq Dinar",
300
- IRR = "Iran Rial",
301
- ISK = "Iceland Krona",
302
- JEP = "Jersey Pound",
303
- JMD = "Jamaica Dollar",
304
- JOD = "Jordan Dinar",
305
- JPY = "Japan Yen",
306
- KES = "Kenya Shilling",
307
- KGS = "Kyrgyzstan Som",
308
- KHR = "Cambodia Riel",
309
- KMF = "Comoros Franc",
310
- KPW = "Korea = North Won",
311
- KRW = "Korea = South Won",
312
- KWD = "Kuwait Dinar",
313
- KYD = "Cayman Islands Dollar",
314
- KZT = "Kazakhstan Tenge",
315
- LAK = "Laos Kip",
316
- LBP = "Lebanon Pound",
317
- LKR = "Sri Lanka Rupee",
318
- LRD = "Liberia Dollar",
319
- LSL = "Lesotho Loti",
320
- LYD = "Libya Dinar",
321
- MAD = "Morocco Dirham",
322
- MDL = "Moldova Leu",
323
- MGA = "Madagascar Ariary",
324
- MKD = "Macedonia Denar",
325
- MMK = "Myanmar = Burma Kyat",
326
- MNT = "Mongolia Tughrik",
327
- MOP = "Macau Pataca",
328
- MRO = "Mauritania Ouguiya",
329
- MUR = "Mauritius Rupee",
330
- MVR = "Maldives = Maldive Islands Rufiyaa",
331
- MWK = "Malawi Kwacha",
332
- MXN = "Mexico Peso",
333
- MYR = "Malaysia Ringgit",
334
- MZN = "Mozambique Metical",
335
- NAD = "Namibia Dollar",
336
- NGN = "Nigeria Naira",
337
- NIO = "Nicaragua Cordoba",
338
- NOK = "Norway Krone",
339
- NPR = "Nepal Rupee",
340
- NZD = "New Zealand Dollar",
341
- OMR = "Oman Rial",
342
- PAB = "Panama Balboa",
343
- PEN = "Peru Sol",
344
- PGK = "Papua New Guinea Kina",
345
- PHP = "Philippines Peso",
346
- PKR = "Pakistan Rupee",
347
- PLN = "Poland Zloty",
348
- PYG = "Paraguay Guarani",
349
- QAR = "Qatar Riyal",
350
- RON = "Romania New Leu",
351
- RSD = "Serbia Dinar",
352
- RUB = "Russia Ruble",
353
- RWF = "Rwanda Franc",
354
- SAR = "Saudi Arabia Riyal",
355
- SBD = "Solomon Islands Dollar",
356
- SCR = "Seychelles Rupee",
357
- SDG = "Sudan Pound",
358
- SEK = "Sweden Krona",
359
- SGD = "Singapore Dollar",
360
- SHP = "Saint Helena Pound",
361
- SLL = "Sierra Leone Leone",
362
- SOS = "Somalia Shilling",
363
- SPL = "Seborga Luigino",
364
- SRD = "Suriname Dollar",
365
- STD = "S\u00E3o Tom\u00E9 and Pr\u00EDncipe Dobra",
366
- SVC = "El Salvador Colon",
367
- SYP = "Syria Pound",
368
- SZL = "Swaziland Lilangeni",
369
- THB = "Thailand Baht",
370
- TJS = "Tajikistan Somoni",
371
- TMT = "Turkmenistan Manat",
372
- TND = "Tunisia Dinar",
373
- TOP = "Tonga Pa'anga",
374
- TRY = "Turkey Lira",
375
- TTD = "Trinidad and Tobago Dollar",
376
- TVD = "Tuvalu Dollar",
377
- TWD = "Taiwan New Dollar",
378
- TZS = "Tanzania Shilling",
379
- UAH = "Ukraine Hryvnia",
380
- UGX = "Uganda Shilling",
381
- USD = "United States Dollar",
382
- UYU = "Uruguay Peso",
383
- UZS = "Uzbekistan Som",
384
- VEF = "Venezuela Bolivar",
385
- VND = "Viet Nam Dong",
386
- VUV = "Vanuatu Vatu",
387
- WST = "Samoa Tala",
388
- XAF = "Communaut\u00E9 Financi\u00E8re Africaine = BEAC CFA Franc BEAC",
389
- XCD = "East Caribbean Dollar",
390
- XDR = "International Monetary Fund = IMF Special Drawing Rights",
391
- XOF = "Communaut\u00E9 Financi\u00E8re Africaine = BCEAO Franc",
392
- XPF = "Comptoirs Fran\u00E7ais du Pacifique = CFP Franc",
393
- YER = "Yemen Rial",
394
- ZAR = "South Africa Rand",
395
- ZMW = "Zambia Kwacha",
396
- ZWD = "Zimbabwe Dollar"
397
- }
package/lib/mjs/types.js DELETED
@@ -1,243 +0,0 @@
1
- /**
2
- * Selection of one or more months on which payment occurs. This is enabled
3
- * only if periodicity is set to one of the following value: “Weekly,
4
- * Biweekly, Monthly, Bimonthly”. Otherwise it must not be specified.
5
- */
6
- export var MonthClassifier;
7
- (function (MonthClassifier) {
8
- MonthClassifier[MonthClassifier["January"] = 1] = "January";
9
- MonthClassifier[MonthClassifier["February"] = 2] = "February";
10
- MonthClassifier[MonthClassifier["March"] = 4] = "March";
11
- MonthClassifier[MonthClassifier["April"] = 8] = "April";
12
- MonthClassifier[MonthClassifier["May"] = 16] = "May";
13
- MonthClassifier[MonthClassifier["June"] = 32] = "June";
14
- MonthClassifier[MonthClassifier["July"] = 64] = "July";
15
- MonthClassifier[MonthClassifier["August"] = 128] = "August";
16
- MonthClassifier[MonthClassifier["September"] = 256] = "September";
17
- MonthClassifier[MonthClassifier["October"] = 512] = "October";
18
- MonthClassifier[MonthClassifier["November"] = 1024] = "November";
19
- MonthClassifier[MonthClassifier["December"] = 2048] = "December";
20
- })(MonthClassifier = MonthClassifier || (MonthClassifier = {}));
21
- /**
22
- * Periodicity of the payment. All valid options are „Daily“, „Weekly“,
23
- * „Biweekly“, „Monthly“, „Bimonthly“, „Quarterly“, „Annually“,
24
- * „Semiannually“. To find out which periodicity types are supported by the
25
- * banks see the following web site: http://www.sbaonline.sk/sk/
26
- */
27
- export var Periodicity;
28
- (function (Periodicity) {
29
- Periodicity["Daily"] = "d";
30
- Periodicity["Weekly"] = "w";
31
- Periodicity["Biweekly"] = "b";
32
- Periodicity["Monthly"] = "m";
33
- Periodicity["Bimonthly"] = "B";
34
- Periodicity["Quarterly"] = "q";
35
- Periodicity["Semiannually"] = "s";
36
- Periodicity["Annually"] = "a";
37
- })(Periodicity = Periodicity || (Periodicity = {}));
38
- export var PaymentOptions;
39
- (function (PaymentOptions) {
40
- PaymentOptions[PaymentOptions["PaymentOrder"] = 1] = "PaymentOrder";
41
- PaymentOptions[PaymentOptions["StandingOrder"] = 2] = "StandingOrder";
42
- PaymentOptions[PaymentOptions["DirectDebit"] = 4] = "DirectDebit";
43
- })(PaymentOptions = PaymentOptions || (PaymentOptions = {}));
44
- /**
45
- * If DirectDebitScheme value is 1, which is „SEPA“ than encoded direct
46
- * debit follows SEPA direct debit scheme which means that fields MandateID,
47
- * CreditorID and optional ContractID are used. If direct debit scheme is 0,
48
- * which is „OTHER“ this means no specific direct debit scheme and following
49
- * rules do apply:
50
- *
51
- * a. Creditor is identified via bank accounts
52
- *
53
- * b. Contract between debtor and creditor is identified using one of the
54
- * following two ways: 1. by two optional fields SpecificSymbol and
55
- * VariableSymbol. 2. by one optional field OriginatorsReferenceInformation.
56
- * If SpecificSymbol and VariableSymbol fields or
57
- * OriginatorsReferenceInformation field is filled in DirectDebitExt then
58
- * these fields do apply for the direct debit.
59
- */
60
- export var DirectDebitScheme;
61
- (function (DirectDebitScheme) {
62
- DirectDebitScheme[DirectDebitScheme["Other"] = 0] = "Other";
63
- DirectDebitScheme[DirectDebitScheme["Sepa"] = 1] = "Sepa";
64
- })(DirectDebitScheme = DirectDebitScheme || (DirectDebitScheme = {}));
65
- /**
66
- * Can be „one­off“ for one time debit or „recurrent“ for repeated debit
67
- * until cancelled.
68
- *
69
- * Max length 1
70
- */
71
- export var DirectDebitType;
72
- (function (DirectDebitType) {
73
- DirectDebitType[DirectDebitType["OneOff"] = 0] = "OneOff";
74
- DirectDebitType[DirectDebitType["Recurrent"] = 1] = "Recurrent";
75
- })(DirectDebitType = DirectDebitType || (DirectDebitType = {}));
76
- /**
77
- * Currency codes based on ISO-4217
78
- */
79
- export var CurrencyCodeEnum;
80
- (function (CurrencyCodeEnum) {
81
- CurrencyCodeEnum["AED"] = "United Arab Emirates Dirham";
82
- CurrencyCodeEnum["AFN"] = "Afghanistan Afghani";
83
- CurrencyCodeEnum["ALL"] = "Albania Lek";
84
- CurrencyCodeEnum["AMD"] = "Armenia Dram";
85
- CurrencyCodeEnum["ANG"] = "Netherlands Antilles Guilder";
86
- CurrencyCodeEnum["AOA"] = "Angola Kwanza";
87
- CurrencyCodeEnum["ARS"] = "Argentina Peso";
88
- CurrencyCodeEnum["AUD"] = "Australia Dollar";
89
- CurrencyCodeEnum["AWG"] = "Aruba Guilder";
90
- CurrencyCodeEnum["AZN"] = "Azerbaijan New Manat";
91
- CurrencyCodeEnum["BAM"] = "Bosnia and Herzegovina Convertible Marka";
92
- CurrencyCodeEnum["BBD"] = "Barbados Dollar";
93
- CurrencyCodeEnum["BDT"] = "Bangladesh Taka";
94
- CurrencyCodeEnum["BGN"] = "Bulgaria Lev";
95
- CurrencyCodeEnum["BHD"] = "Bahrain Dinar";
96
- CurrencyCodeEnum["BIF"] = "Burundi Franc";
97
- CurrencyCodeEnum["BMD"] = "Bermuda Dollar";
98
- CurrencyCodeEnum["BND"] = "Brunei Darussalam Dollar";
99
- CurrencyCodeEnum["BOB"] = "Bolivia Bol\u00EDviano";
100
- CurrencyCodeEnum["BRL"] = "Brazil Real";
101
- CurrencyCodeEnum["BSD"] = "Bahamas Dollar";
102
- CurrencyCodeEnum["BTN"] = "Bhutan Ngultrum";
103
- CurrencyCodeEnum["BWP"] = "Botswana Pula";
104
- CurrencyCodeEnum["BYR"] = "Belarus Ruble";
105
- CurrencyCodeEnum["BZD"] = "Belize Dollar";
106
- CurrencyCodeEnum["CAD"] = "Canada Dollar";
107
- CurrencyCodeEnum["CDF"] = "Congo/Kinshasa Franc";
108
- CurrencyCodeEnum["CHF"] = "Switzerland Franc";
109
- CurrencyCodeEnum["CLP"] = "Chile Peso";
110
- CurrencyCodeEnum["CNY"] = "China Yuan Renminbi";
111
- CurrencyCodeEnum["COP"] = "Colombia Peso";
112
- CurrencyCodeEnum["CRC"] = "Costa Rica Colon";
113
- CurrencyCodeEnum["CUC"] = "Cuba Convertible Peso";
114
- CurrencyCodeEnum["CUP"] = "Cuba Peso";
115
- CurrencyCodeEnum["CVE"] = "Cape Verde Escudo";
116
- CurrencyCodeEnum["CZK"] = "Czech Republic Koruna";
117
- CurrencyCodeEnum["DJF"] = "Djibouti Franc";
118
- CurrencyCodeEnum["DKK"] = "Denmark Krone";
119
- CurrencyCodeEnum["DOP"] = "Dominican Republic Peso";
120
- CurrencyCodeEnum["DZD"] = "Algeria Dinar";
121
- CurrencyCodeEnum["EGP"] = "Egypt Pound";
122
- CurrencyCodeEnum["ERN"] = "Eritrea Nakfa";
123
- CurrencyCodeEnum["ETB"] = "Ethiopia Birr";
124
- CurrencyCodeEnum["EUR"] = "Euro Member Countries";
125
- CurrencyCodeEnum["FJD"] = "Fiji Dollar";
126
- CurrencyCodeEnum["FKP"] = "Falkland Islands = Malvinas Pound";
127
- CurrencyCodeEnum["GBP"] = "United Kingdom Pound";
128
- CurrencyCodeEnum["GEL"] = "Georgia Lari";
129
- CurrencyCodeEnum["GGP"] = "Guernsey Pound";
130
- CurrencyCodeEnum["GHS"] = "Ghana Cedi";
131
- CurrencyCodeEnum["GIP"] = "Gibraltar Pound";
132
- CurrencyCodeEnum["GMD"] = "Gambia Dalasi";
133
- CurrencyCodeEnum["GNF"] = "Guinea Franc";
134
- CurrencyCodeEnum["GTQ"] = "Guatemala Quetzal";
135
- CurrencyCodeEnum["GYD"] = "Guyana Dollar";
136
- CurrencyCodeEnum["HKD"] = "Hong Kong Dollar";
137
- CurrencyCodeEnum["HNL"] = "Honduras Lempira";
138
- CurrencyCodeEnum["HRK"] = "Croatia Kuna";
139
- CurrencyCodeEnum["HTG"] = "Haiti Gourde";
140
- CurrencyCodeEnum["HUF"] = "Hungary Forint";
141
- CurrencyCodeEnum["IDR"] = "Indonesia Rupiah";
142
- CurrencyCodeEnum["ILS"] = "Israel Shekel";
143
- CurrencyCodeEnum["IMP"] = "Isle of Man Pound";
144
- CurrencyCodeEnum["INR"] = "India Rupee";
145
- CurrencyCodeEnum["IQD"] = "Iraq Dinar";
146
- CurrencyCodeEnum["IRR"] = "Iran Rial";
147
- CurrencyCodeEnum["ISK"] = "Iceland Krona";
148
- CurrencyCodeEnum["JEP"] = "Jersey Pound";
149
- CurrencyCodeEnum["JMD"] = "Jamaica Dollar";
150
- CurrencyCodeEnum["JOD"] = "Jordan Dinar";
151
- CurrencyCodeEnum["JPY"] = "Japan Yen";
152
- CurrencyCodeEnum["KES"] = "Kenya Shilling";
153
- CurrencyCodeEnum["KGS"] = "Kyrgyzstan Som";
154
- CurrencyCodeEnum["KHR"] = "Cambodia Riel";
155
- CurrencyCodeEnum["KMF"] = "Comoros Franc";
156
- CurrencyCodeEnum["KPW"] = "Korea = North Won";
157
- CurrencyCodeEnum["KRW"] = "Korea = South Won";
158
- CurrencyCodeEnum["KWD"] = "Kuwait Dinar";
159
- CurrencyCodeEnum["KYD"] = "Cayman Islands Dollar";
160
- CurrencyCodeEnum["KZT"] = "Kazakhstan Tenge";
161
- CurrencyCodeEnum["LAK"] = "Laos Kip";
162
- CurrencyCodeEnum["LBP"] = "Lebanon Pound";
163
- CurrencyCodeEnum["LKR"] = "Sri Lanka Rupee";
164
- CurrencyCodeEnum["LRD"] = "Liberia Dollar";
165
- CurrencyCodeEnum["LSL"] = "Lesotho Loti";
166
- CurrencyCodeEnum["LYD"] = "Libya Dinar";
167
- CurrencyCodeEnum["MAD"] = "Morocco Dirham";
168
- CurrencyCodeEnum["MDL"] = "Moldova Leu";
169
- CurrencyCodeEnum["MGA"] = "Madagascar Ariary";
170
- CurrencyCodeEnum["MKD"] = "Macedonia Denar";
171
- CurrencyCodeEnum["MMK"] = "Myanmar = Burma Kyat";
172
- CurrencyCodeEnum["MNT"] = "Mongolia Tughrik";
173
- CurrencyCodeEnum["MOP"] = "Macau Pataca";
174
- CurrencyCodeEnum["MRO"] = "Mauritania Ouguiya";
175
- CurrencyCodeEnum["MUR"] = "Mauritius Rupee";
176
- CurrencyCodeEnum["MVR"] = "Maldives = Maldive Islands Rufiyaa";
177
- CurrencyCodeEnum["MWK"] = "Malawi Kwacha";
178
- CurrencyCodeEnum["MXN"] = "Mexico Peso";
179
- CurrencyCodeEnum["MYR"] = "Malaysia Ringgit";
180
- CurrencyCodeEnum["MZN"] = "Mozambique Metical";
181
- CurrencyCodeEnum["NAD"] = "Namibia Dollar";
182
- CurrencyCodeEnum["NGN"] = "Nigeria Naira";
183
- CurrencyCodeEnum["NIO"] = "Nicaragua Cordoba";
184
- CurrencyCodeEnum["NOK"] = "Norway Krone";
185
- CurrencyCodeEnum["NPR"] = "Nepal Rupee";
186
- CurrencyCodeEnum["NZD"] = "New Zealand Dollar";
187
- CurrencyCodeEnum["OMR"] = "Oman Rial";
188
- CurrencyCodeEnum["PAB"] = "Panama Balboa";
189
- CurrencyCodeEnum["PEN"] = "Peru Sol";
190
- CurrencyCodeEnum["PGK"] = "Papua New Guinea Kina";
191
- CurrencyCodeEnum["PHP"] = "Philippines Peso";
192
- CurrencyCodeEnum["PKR"] = "Pakistan Rupee";
193
- CurrencyCodeEnum["PLN"] = "Poland Zloty";
194
- CurrencyCodeEnum["PYG"] = "Paraguay Guarani";
195
- CurrencyCodeEnum["QAR"] = "Qatar Riyal";
196
- CurrencyCodeEnum["RON"] = "Romania New Leu";
197
- CurrencyCodeEnum["RSD"] = "Serbia Dinar";
198
- CurrencyCodeEnum["RUB"] = "Russia Ruble";
199
- CurrencyCodeEnum["RWF"] = "Rwanda Franc";
200
- CurrencyCodeEnum["SAR"] = "Saudi Arabia Riyal";
201
- CurrencyCodeEnum["SBD"] = "Solomon Islands Dollar";
202
- CurrencyCodeEnum["SCR"] = "Seychelles Rupee";
203
- CurrencyCodeEnum["SDG"] = "Sudan Pound";
204
- CurrencyCodeEnum["SEK"] = "Sweden Krona";
205
- CurrencyCodeEnum["SGD"] = "Singapore Dollar";
206
- CurrencyCodeEnum["SHP"] = "Saint Helena Pound";
207
- CurrencyCodeEnum["SLL"] = "Sierra Leone Leone";
208
- CurrencyCodeEnum["SOS"] = "Somalia Shilling";
209
- CurrencyCodeEnum["SPL"] = "Seborga Luigino";
210
- CurrencyCodeEnum["SRD"] = "Suriname Dollar";
211
- CurrencyCodeEnum["STD"] = "S\u00E3o Tom\u00E9 and Pr\u00EDncipe Dobra";
212
- CurrencyCodeEnum["SVC"] = "El Salvador Colon";
213
- CurrencyCodeEnum["SYP"] = "Syria Pound";
214
- CurrencyCodeEnum["SZL"] = "Swaziland Lilangeni";
215
- CurrencyCodeEnum["THB"] = "Thailand Baht";
216
- CurrencyCodeEnum["TJS"] = "Tajikistan Somoni";
217
- CurrencyCodeEnum["TMT"] = "Turkmenistan Manat";
218
- CurrencyCodeEnum["TND"] = "Tunisia Dinar";
219
- CurrencyCodeEnum["TOP"] = "Tonga Pa'anga";
220
- CurrencyCodeEnum["TRY"] = "Turkey Lira";
221
- CurrencyCodeEnum["TTD"] = "Trinidad and Tobago Dollar";
222
- CurrencyCodeEnum["TVD"] = "Tuvalu Dollar";
223
- CurrencyCodeEnum["TWD"] = "Taiwan New Dollar";
224
- CurrencyCodeEnum["TZS"] = "Tanzania Shilling";
225
- CurrencyCodeEnum["UAH"] = "Ukraine Hryvnia";
226
- CurrencyCodeEnum["UGX"] = "Uganda Shilling";
227
- CurrencyCodeEnum["USD"] = "United States Dollar";
228
- CurrencyCodeEnum["UYU"] = "Uruguay Peso";
229
- CurrencyCodeEnum["UZS"] = "Uzbekistan Som";
230
- CurrencyCodeEnum["VEF"] = "Venezuela Bolivar";
231
- CurrencyCodeEnum["VND"] = "Viet Nam Dong";
232
- CurrencyCodeEnum["VUV"] = "Vanuatu Vatu";
233
- CurrencyCodeEnum["WST"] = "Samoa Tala";
234
- CurrencyCodeEnum["XAF"] = "Communaut\u00E9 Financi\u00E8re Africaine = BEAC CFA Franc BEAC";
235
- CurrencyCodeEnum["XCD"] = "East Caribbean Dollar";
236
- CurrencyCodeEnum["XDR"] = "International Monetary Fund = IMF Special Drawing Rights";
237
- CurrencyCodeEnum["XOF"] = "Communaut\u00E9 Financi\u00E8re Africaine = BCEAO Franc";
238
- CurrencyCodeEnum["XPF"] = "Comptoirs Fran\u00E7ais du Pacifique = CFP Franc";
239
- CurrencyCodeEnum["YER"] = "Yemen Rial";
240
- CurrencyCodeEnum["ZAR"] = "South Africa Rand";
241
- CurrencyCodeEnum["ZMW"] = "Zambia Kwacha";
242
- CurrencyCodeEnum["ZWD"] = "Zimbabwe Dollar";
243
- })(CurrencyCodeEnum = CurrencyCodeEnum || (CurrencyCodeEnum = {}));
File without changes
File without changes
File without changes
File without changes
File without changes