@fiado/type-kit 1.3.7 → 1.3.9
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/bin/account/dtos/CreateBankAccountOutput.d.ts +5 -0
- package/bin/account/dtos/CreateBankAccountOutput.js +6 -0
- package/bin/account/dtos/CreateBankAccountUserOutput.d.ts +8 -0
- package/bin/account/dtos/CreateBankAccountUserOutput.js +6 -0
- package/bin/creditContract/dto/CreditContractCreateRequest.d.ts +15 -0
- package/bin/creditContract/dto/CreditContractCreateRequest.js +72 -0
- package/bin/index.d.ts +1 -0
- package/bin/index.js +2 -1
- package/bin/stpAccount/dtos/CreateAccountWebhookDetail.d.ts +6 -0
- package/bin/stpAccount/dtos/CreateAccountWebhookDetail.js +2 -0
- package/bin/stpAccount/index.d.ts +1 -0
- package/bin/stpAccount/index.js +17 -0
- package/bin/stpSpei/enums/ActividadesProductivasEnum.d.ts +48 -0
- package/bin/stpSpei/enums/ActividadesProductivasEnum.js +52 -0
- package/bin/stpSpei/enums/EntidadesFederativasEnum.d.ts +34 -0
- package/bin/stpSpei/enums/EntidadesFederativasEnum.js +38 -0
- package/bin/stpSpei/enums/PaisesEnum.d.ts +276 -0
- package/bin/stpSpei/enums/PaisesEnum.js +280 -0
- package/bin/stpSpei/index.d.ts +3 -0
- package/bin/stpSpei/index.js +3 -0
- package/bin/transaction/TransactionCreateRequest.d.ts +2 -0
- package/bin/transaction/TransactionCreateRequest.js +6 -0
- package/bin/transaction/TransactionCreateResponse.d.ts +2 -0
- package/bin/transaction/TransactionCreateResponse.js +6 -0
- package/bin/transaction/dtos/TransactionCreateRequest.d.ts +2 -0
- package/bin/transaction/dtos/TransactionSourceEnum.d.ts +5 -0
- package/bin/transaction/dtos/TransactionSourceEnum.js +9 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/stpAccount/dtos/CreateAccountWebhookDetail.ts +6 -0
- package/src/stpAccount/index.ts +1 -0
- package/src/stpSpei/enums/ActividadesProductivasEnum.ts +48 -0
- package/src/stpSpei/enums/EntidadesFederativasEnum.ts +34 -0
- package/src/stpSpei/enums/PaisesEnum.ts +276 -0
- package/src/stpSpei/index.ts +4 -1
- package/src/transaction/dtos/TransactionCreateRequest.ts +3 -0
- package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.d.ts +0 -3
- package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.js +0 -22
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.d.ts +0 -5
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.js +0 -6
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.d.ts +0 -7
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.js +0 -6
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CountryId } from "../../country";
|
|
2
|
+
import { InstrumentEnum } from "../enums/InstrumentEnum";
|
|
3
|
+
export default class CreditContractCreateRequest {
|
|
4
|
+
directoryUserId: string;
|
|
5
|
+
relatedTransaction: string;
|
|
6
|
+
peopleId: string;
|
|
7
|
+
currencyId: CountryId;
|
|
8
|
+
creditNotional: number;
|
|
9
|
+
creditFee: number;
|
|
10
|
+
creditTax: number;
|
|
11
|
+
creditTotal: number;
|
|
12
|
+
instrument: InstrumentEnum;
|
|
13
|
+
amountBlocked: number;
|
|
14
|
+
relatedPocketId: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
const class_validator_1 = require("class-validator");
|
|
13
|
+
const country_1 = require("../../country");
|
|
14
|
+
const InstrumentEnum_1 = require("../enums/InstrumentEnum");
|
|
15
|
+
class CreditContractCreateRequest {
|
|
16
|
+
}
|
|
17
|
+
exports.default = CreditContractCreateRequest;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], CreditContractCreateRequest.prototype, "directoryUserId", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], CreditContractCreateRequest.prototype, "relatedTransaction", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsString)(),
|
|
30
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreditContractCreateRequest.prototype, "peopleId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsEnum)(country_1.CountryId),
|
|
35
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], CreditContractCreateRequest.prototype, "currencyId", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsNumber)(),
|
|
40
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
42
|
+
], CreditContractCreateRequest.prototype, "creditNotional", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, class_validator_1.IsNumber)(),
|
|
45
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
46
|
+
__metadata("design:type", Number)
|
|
47
|
+
], CreditContractCreateRequest.prototype, "creditFee", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_validator_1.IsNumber)(),
|
|
50
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
51
|
+
__metadata("design:type", Number)
|
|
52
|
+
], CreditContractCreateRequest.prototype, "creditTax", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_validator_1.IsNumber)(),
|
|
55
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
56
|
+
__metadata("design:type", Number)
|
|
57
|
+
], CreditContractCreateRequest.prototype, "creditTotal", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.IsEnum)(InstrumentEnum_1.InstrumentEnum),
|
|
60
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
61
|
+
__metadata("design:type", String)
|
|
62
|
+
], CreditContractCreateRequest.prototype, "instrument", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, class_validator_1.IsNumber)(),
|
|
65
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
66
|
+
__metadata("design:type", Number)
|
|
67
|
+
], CreditContractCreateRequest.prototype, "amountBlocked", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, class_validator_1.IsString)(),
|
|
70
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], CreditContractCreateRequest.prototype, "relatedPocketId", void 0);
|
package/bin/index.d.ts
CHANGED
package/bin/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
|
|
26
|
+
exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
|
|
27
27
|
exports.Account = __importStar(require("./account"));
|
|
28
28
|
exports.Activity = __importStar(require("./activity"));
|
|
29
29
|
exports.Beneficiary = __importStar(require("./beneficiary"));
|
|
@@ -56,3 +56,4 @@ exports.Stp = __importStar(require("./stpSpei"));
|
|
|
56
56
|
exports.BBVARst = __importStar(require("./bbvaRst"));
|
|
57
57
|
exports.FraudPreventionEngine = __importStar(require("./fraudPreventionEngine"));
|
|
58
58
|
exports.RiskProfile = __importStar(require("./riskProfile"));
|
|
59
|
+
exports.STPAccount = __importStar(require("./stpAccount"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dtos/CreateAccountWebhookDetail';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dtos/CreateAccountWebhookDetail"), exports);
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export declare enum ActividadesProductivasEnum {
|
|
2
|
+
SERVICIOS_PASARELA_DE_PAGOS = "28",
|
|
3
|
+
SERVICIOS_TURISTICOS = "29",
|
|
4
|
+
FINTECH_CROWDFOUNDING = "30",
|
|
5
|
+
FINTECH_WALLET = "31",
|
|
6
|
+
FINTECH_MONEDAS_VIRTUALES = "32",
|
|
7
|
+
SERVICIOS_OUTSOURCING = "33",
|
|
8
|
+
MANUFACTURA = "34",
|
|
9
|
+
SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_REGULADAS = "35",
|
|
10
|
+
SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_NO_REGULADAS = "36",
|
|
11
|
+
INSTITUCIONES_FINANCIERAS_DEL_EXTRANJERO = "37",
|
|
12
|
+
SERVICIOS_DE_INSTITUCIONES_DE_CREDITO_ORGANIZACIONES_AUXILIARES_E_INSTITUCIONES_DE_SEGUROS_Y_FIANZAS = "38",
|
|
13
|
+
SERVICIOS_RELACIONADOS_CON_INMUEBLES = "39",
|
|
14
|
+
SERVICIOS_PROFESIONALES_Y_TECNICOS = "40",
|
|
15
|
+
SERVICIOS_DE_BUFETES_JURIDICOS = "41",
|
|
16
|
+
SERVICIOS_DE_ANALISIS_DE_SISTEMAS_Y_PROCESAMIENTO_ELECTRONICO_DE_DATOS = "42",
|
|
17
|
+
SERVICIOS_DE_AGENCIAS_DE_COLOCACION_Y_SELECCION_DE_PERSONAL = "43",
|
|
18
|
+
SERVICIOS_MEDICO_GENERAL_Y_ESPECIALIZADO_EN_CONSULTORIOS = "44",
|
|
19
|
+
ESTABLECIMIENTOS_PRIVADOS_DE_INSTRUCCION_EDUCACION_CULTURA_E_INVESTIGACION = "45",
|
|
20
|
+
SOCIEDADES_DE_AHORRO_Y_CREDITO_POPULAR = "47",
|
|
21
|
+
SOCIEDADES_DE_INVERSION = "48",
|
|
22
|
+
COMPRAVENTA_DE_GAS_PARA_USO_DOMESTICO_O_COMERCIAL = "49",
|
|
23
|
+
CONTRATACION_DE_OBRAS_COMPLETAS_DE_CONSTRUCCION = "50",
|
|
24
|
+
SERVICIOS_DE_ENSENANZA_PRE_PRIMARIA_Y_PRIMARIA = "51",
|
|
25
|
+
SERVICIOS_DE_ENSENANZA_SECUNDARIA = "52",
|
|
26
|
+
SERVICIOS_DE_ENSENANZA_COMERCIAL_Y_DE_IDIOMA = "53",
|
|
27
|
+
CASAS_DE_BOLSA_NACIONALES = "54",
|
|
28
|
+
ADMINISTRACION_DE_INMUEBLES = "55",
|
|
29
|
+
COMPANIAS_DE_SEGUROS_NACIONALES = "56",
|
|
30
|
+
CASA_DE_CAMBIO = "57",
|
|
31
|
+
CONSTRUCCION_DE_INMUEBLES = "58",
|
|
32
|
+
COMPRAVENTA_DE_ARTICULOS_DE_PLATA = "59",
|
|
33
|
+
COMPRAVENTA_DE_OTRAS_JOYAS = "60",
|
|
34
|
+
COMPRAVENTA_DE_RELOJES = "61",
|
|
35
|
+
SERVICIOS_DE_BLINDAJE = "62",
|
|
36
|
+
COMPRAVENTA_DE_AUTOMOVILES_Y_CAMIONES_NUEVOS = "63",
|
|
37
|
+
COMPRAVENTA_DE_CASAS_Y_OTROS_INMUEBLES = "64",
|
|
38
|
+
TARJETA_DE_CREDITO = "65",
|
|
39
|
+
CENTROS_CAMBIARIOS = "66",
|
|
40
|
+
AGENCIA_ADUANAL = "67",
|
|
41
|
+
MONTEPIO_O_CASAS_DE_EMPENO = "68",
|
|
42
|
+
FACTORING = "69",
|
|
43
|
+
ADMINISTRADORAS_DE_TARJETA_DE_CREDITO = "70",
|
|
44
|
+
NOTARIAS_PUBLICAS = "71",
|
|
45
|
+
EMPRESAS_TRANSPORTADORAS_DE_VALORES = "72",
|
|
46
|
+
JUEGOS_DE_FERIA_Y_APUESTAS = "73",
|
|
47
|
+
TRANSMISORES_DE_DINERO_O_DISPERSORES = "74"
|
|
48
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ActividadesProductivasEnum = void 0;
|
|
4
|
+
var ActividadesProductivasEnum;
|
|
5
|
+
(function (ActividadesProductivasEnum) {
|
|
6
|
+
ActividadesProductivasEnum["SERVICIOS_PASARELA_DE_PAGOS"] = "28";
|
|
7
|
+
ActividadesProductivasEnum["SERVICIOS_TURISTICOS"] = "29";
|
|
8
|
+
ActividadesProductivasEnum["FINTECH_CROWDFOUNDING"] = "30";
|
|
9
|
+
ActividadesProductivasEnum["FINTECH_WALLET"] = "31";
|
|
10
|
+
ActividadesProductivasEnum["FINTECH_MONEDAS_VIRTUALES"] = "32";
|
|
11
|
+
ActividadesProductivasEnum["SERVICIOS_OUTSOURCING"] = "33";
|
|
12
|
+
ActividadesProductivasEnum["MANUFACTURA"] = "34";
|
|
13
|
+
ActividadesProductivasEnum["SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_REGULADAS"] = "35";
|
|
14
|
+
ActividadesProductivasEnum["SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_NO_REGULADAS"] = "36";
|
|
15
|
+
ActividadesProductivasEnum["INSTITUCIONES_FINANCIERAS_DEL_EXTRANJERO"] = "37";
|
|
16
|
+
ActividadesProductivasEnum["SERVICIOS_DE_INSTITUCIONES_DE_CREDITO_ORGANIZACIONES_AUXILIARES_E_INSTITUCIONES_DE_SEGUROS_Y_FIANZAS"] = "38";
|
|
17
|
+
ActividadesProductivasEnum["SERVICIOS_RELACIONADOS_CON_INMUEBLES"] = "39";
|
|
18
|
+
ActividadesProductivasEnum["SERVICIOS_PROFESIONALES_Y_TECNICOS"] = "40";
|
|
19
|
+
ActividadesProductivasEnum["SERVICIOS_DE_BUFETES_JURIDICOS"] = "41";
|
|
20
|
+
ActividadesProductivasEnum["SERVICIOS_DE_ANALISIS_DE_SISTEMAS_Y_PROCESAMIENTO_ELECTRONICO_DE_DATOS"] = "42";
|
|
21
|
+
ActividadesProductivasEnum["SERVICIOS_DE_AGENCIAS_DE_COLOCACION_Y_SELECCION_DE_PERSONAL"] = "43";
|
|
22
|
+
ActividadesProductivasEnum["SERVICIOS_MEDICO_GENERAL_Y_ESPECIALIZADO_EN_CONSULTORIOS"] = "44";
|
|
23
|
+
ActividadesProductivasEnum["ESTABLECIMIENTOS_PRIVADOS_DE_INSTRUCCION_EDUCACION_CULTURA_E_INVESTIGACION"] = "45";
|
|
24
|
+
ActividadesProductivasEnum["SOCIEDADES_DE_AHORRO_Y_CREDITO_POPULAR"] = "47";
|
|
25
|
+
ActividadesProductivasEnum["SOCIEDADES_DE_INVERSION"] = "48";
|
|
26
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_GAS_PARA_USO_DOMESTICO_O_COMERCIAL"] = "49";
|
|
27
|
+
ActividadesProductivasEnum["CONTRATACION_DE_OBRAS_COMPLETAS_DE_CONSTRUCCION"] = "50";
|
|
28
|
+
ActividadesProductivasEnum["SERVICIOS_DE_ENSENANZA_PRE_PRIMARIA_Y_PRIMARIA"] = "51";
|
|
29
|
+
ActividadesProductivasEnum["SERVICIOS_DE_ENSENANZA_SECUNDARIA"] = "52";
|
|
30
|
+
ActividadesProductivasEnum["SERVICIOS_DE_ENSENANZA_COMERCIAL_Y_DE_IDIOMA"] = "53";
|
|
31
|
+
ActividadesProductivasEnum["CASAS_DE_BOLSA_NACIONALES"] = "54";
|
|
32
|
+
ActividadesProductivasEnum["ADMINISTRACION_DE_INMUEBLES"] = "55";
|
|
33
|
+
ActividadesProductivasEnum["COMPANIAS_DE_SEGUROS_NACIONALES"] = "56";
|
|
34
|
+
ActividadesProductivasEnum["CASA_DE_CAMBIO"] = "57";
|
|
35
|
+
ActividadesProductivasEnum["CONSTRUCCION_DE_INMUEBLES"] = "58";
|
|
36
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_ARTICULOS_DE_PLATA"] = "59";
|
|
37
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_OTRAS_JOYAS"] = "60";
|
|
38
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_RELOJES"] = "61";
|
|
39
|
+
ActividadesProductivasEnum["SERVICIOS_DE_BLINDAJE"] = "62";
|
|
40
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_AUTOMOVILES_Y_CAMIONES_NUEVOS"] = "63";
|
|
41
|
+
ActividadesProductivasEnum["COMPRAVENTA_DE_CASAS_Y_OTROS_INMUEBLES"] = "64";
|
|
42
|
+
ActividadesProductivasEnum["TARJETA_DE_CREDITO"] = "65";
|
|
43
|
+
ActividadesProductivasEnum["CENTROS_CAMBIARIOS"] = "66";
|
|
44
|
+
ActividadesProductivasEnum["AGENCIA_ADUANAL"] = "67";
|
|
45
|
+
ActividadesProductivasEnum["MONTEPIO_O_CASAS_DE_EMPENO"] = "68";
|
|
46
|
+
ActividadesProductivasEnum["FACTORING"] = "69";
|
|
47
|
+
ActividadesProductivasEnum["ADMINISTRADORAS_DE_TARJETA_DE_CREDITO"] = "70";
|
|
48
|
+
ActividadesProductivasEnum["NOTARIAS_PUBLICAS"] = "71";
|
|
49
|
+
ActividadesProductivasEnum["EMPRESAS_TRANSPORTADORAS_DE_VALORES"] = "72";
|
|
50
|
+
ActividadesProductivasEnum["JUEGOS_DE_FERIA_Y_APUESTAS"] = "73";
|
|
51
|
+
ActividadesProductivasEnum["TRANSMISORES_DE_DINERO_O_DISPERSORES"] = "74";
|
|
52
|
+
})(ActividadesProductivasEnum || (exports.ActividadesProductivasEnum = ActividadesProductivasEnum = {}));
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare enum EntidadesFederativasEnum {
|
|
2
|
+
AGUASCALIENTES = "1",
|
|
3
|
+
BAJA_CALIFORNIA = "2",
|
|
4
|
+
BAJA_CALIFORNIA_SUR = "3",
|
|
5
|
+
CAMPECHE = "4",
|
|
6
|
+
CHIAPAS = "5",
|
|
7
|
+
CHIHUAHUA = "6",
|
|
8
|
+
COAHUILA = "7",
|
|
9
|
+
COLIMA = "8",
|
|
10
|
+
CIUDAD_DE_MEXICO = "9",
|
|
11
|
+
DURANGO = "10",
|
|
12
|
+
ESTADO_DE_MEXICO = "11",
|
|
13
|
+
GUANAJUATO = "12",
|
|
14
|
+
GUERRERO = "13",
|
|
15
|
+
HIDALGO = "14",
|
|
16
|
+
JALISCO = "15",
|
|
17
|
+
MICHOACAN = "16",
|
|
18
|
+
MORELOS = "17",
|
|
19
|
+
NAYARIT = "18",
|
|
20
|
+
NUEVO_LEON = "19",
|
|
21
|
+
OAXACA = "20",
|
|
22
|
+
PUEBLA = "21",
|
|
23
|
+
QUERETARO = "22",
|
|
24
|
+
QUINTANA_ROO = "23",
|
|
25
|
+
SAN_LUIS_POTOSI = "24",
|
|
26
|
+
SINALOA = "25",
|
|
27
|
+
SONORA = "26",
|
|
28
|
+
TABASCO = "27",
|
|
29
|
+
TAMAULIPAS = "28",
|
|
30
|
+
TLAXCALA = "29",
|
|
31
|
+
VERACRUZ = "30",
|
|
32
|
+
YUCATAN = "31",
|
|
33
|
+
ZACATECAS = "32"
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EntidadesFederativasEnum = void 0;
|
|
4
|
+
var EntidadesFederativasEnum;
|
|
5
|
+
(function (EntidadesFederativasEnum) {
|
|
6
|
+
EntidadesFederativasEnum["AGUASCALIENTES"] = "1";
|
|
7
|
+
EntidadesFederativasEnum["BAJA_CALIFORNIA"] = "2";
|
|
8
|
+
EntidadesFederativasEnum["BAJA_CALIFORNIA_SUR"] = "3";
|
|
9
|
+
EntidadesFederativasEnum["CAMPECHE"] = "4";
|
|
10
|
+
EntidadesFederativasEnum["CHIAPAS"] = "5";
|
|
11
|
+
EntidadesFederativasEnum["CHIHUAHUA"] = "6";
|
|
12
|
+
EntidadesFederativasEnum["COAHUILA"] = "7";
|
|
13
|
+
EntidadesFederativasEnum["COLIMA"] = "8";
|
|
14
|
+
EntidadesFederativasEnum["CIUDAD_DE_MEXICO"] = "9";
|
|
15
|
+
EntidadesFederativasEnum["DURANGO"] = "10";
|
|
16
|
+
EntidadesFederativasEnum["ESTADO_DE_MEXICO"] = "11";
|
|
17
|
+
EntidadesFederativasEnum["GUANAJUATO"] = "12";
|
|
18
|
+
EntidadesFederativasEnum["GUERRERO"] = "13";
|
|
19
|
+
EntidadesFederativasEnum["HIDALGO"] = "14";
|
|
20
|
+
EntidadesFederativasEnum["JALISCO"] = "15";
|
|
21
|
+
EntidadesFederativasEnum["MICHOACAN"] = "16";
|
|
22
|
+
EntidadesFederativasEnum["MORELOS"] = "17";
|
|
23
|
+
EntidadesFederativasEnum["NAYARIT"] = "18";
|
|
24
|
+
EntidadesFederativasEnum["NUEVO_LEON"] = "19";
|
|
25
|
+
EntidadesFederativasEnum["OAXACA"] = "20";
|
|
26
|
+
EntidadesFederativasEnum["PUEBLA"] = "21";
|
|
27
|
+
EntidadesFederativasEnum["QUERETARO"] = "22";
|
|
28
|
+
EntidadesFederativasEnum["QUINTANA_ROO"] = "23";
|
|
29
|
+
EntidadesFederativasEnum["SAN_LUIS_POTOSI"] = "24";
|
|
30
|
+
EntidadesFederativasEnum["SINALOA"] = "25";
|
|
31
|
+
EntidadesFederativasEnum["SONORA"] = "26";
|
|
32
|
+
EntidadesFederativasEnum["TABASCO"] = "27";
|
|
33
|
+
EntidadesFederativasEnum["TAMAULIPAS"] = "28";
|
|
34
|
+
EntidadesFederativasEnum["TLAXCALA"] = "29";
|
|
35
|
+
EntidadesFederativasEnum["VERACRUZ"] = "30";
|
|
36
|
+
EntidadesFederativasEnum["YUCATAN"] = "31";
|
|
37
|
+
EntidadesFederativasEnum["ZACATECAS"] = "32";
|
|
38
|
+
})(EntidadesFederativasEnum || (exports.EntidadesFederativasEnum = EntidadesFederativasEnum = {}));
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
export declare enum PaisesEnum {
|
|
2
|
+
SE_DESCONOCE = "0",
|
|
3
|
+
REPUBLICA_ISLAMICA_DE_AFGANISTAN = "1",
|
|
4
|
+
REPUBLICA_DE_ALBANIA = "2",
|
|
5
|
+
REPUBLICA_FEDERAL_DE_ALEMANIA = "3",
|
|
6
|
+
ALTO_VOLTA = "4",
|
|
7
|
+
PRINCIPADO_DE_ANDORRA = "5",
|
|
8
|
+
REPUBLICA_DE_ANGOLA = "6",
|
|
9
|
+
ANGUILA = "7",
|
|
10
|
+
ANTIGUA_Y_BARBUDA = "8",
|
|
11
|
+
ANTILLAS_NEERLANDESAS = "9",
|
|
12
|
+
REINO_DE_ARABIA_SAUDITA = "10",
|
|
13
|
+
ARGENTINA = "11",
|
|
14
|
+
REPUBLICA_DEMOCRATICA_POPULAR_DE_ARGELIA = "12",
|
|
15
|
+
REPUBLICA_ARGENTINA = "13",
|
|
16
|
+
REPUBLICA_DE_ARMENIA = "14",
|
|
17
|
+
ARUBA = "15",
|
|
18
|
+
ISLAS_DE_ASCENCION = "16",
|
|
19
|
+
COMMONWEALTH_DE_AUSTRALIA = "17",
|
|
20
|
+
REPUBLICA_DE_AUSTRIA = "18",
|
|
21
|
+
REPUBLICA_DE_AZERBAIYAN = "19",
|
|
22
|
+
COMMONWEALTH_DE_LAS_BAHAMAS = "20",
|
|
23
|
+
REINO_DE_BAHREIN = "21",
|
|
24
|
+
REPUBLICA_POPULAR_DE_BANGLADESH = "22",
|
|
25
|
+
BARBADOS = "23",
|
|
26
|
+
REPUBLICA_DE_BELARUS = "24",
|
|
27
|
+
REINO_DE_BELGICA = "25",
|
|
28
|
+
BELICE = "26",
|
|
29
|
+
BERMUDAS = "27",
|
|
30
|
+
BIRMANIA = "28",
|
|
31
|
+
REPUBLICA_DE_BOLIVIA = "29",
|
|
32
|
+
BOSNIA_HERZEGOVINA = "30",
|
|
33
|
+
REPUBLICA_DE_BOTSWANA = "31",
|
|
34
|
+
REPUBLICA_FEDERAL_DE_BRASIL = "32",
|
|
35
|
+
BRUNEI_MALASIA = "33",
|
|
36
|
+
REPUBLICA_DE_BULGARIA = "34",
|
|
37
|
+
REPUBLICA_DE_BURUNDI = "35",
|
|
38
|
+
REINO_DE_BUTAN = "36",
|
|
39
|
+
REPUBLICA_DE_CAMERUN = "37",
|
|
40
|
+
CAMPIONE_D_ITALIA = "38",
|
|
41
|
+
DOMINIO_DE_CANADA = "39",
|
|
42
|
+
REPUBLICA_DE_COLOMBIA = "40",
|
|
43
|
+
CHILE = "41",
|
|
44
|
+
REPUBLICA_POPULAR_DEMOCRATICA_DE_COREA = "42",
|
|
45
|
+
REPUBLICA_DE_COREA = "43",
|
|
46
|
+
REPUBLICA_DE_COSTA_DE_MARFIL = "44",
|
|
47
|
+
REPUBLICA_DE_COSTA_RICA = "45",
|
|
48
|
+
REPUBLICA_DE_CROACIA = "46",
|
|
49
|
+
REPUBLICA_DE_CUBA = "47",
|
|
50
|
+
CROACIA = "48",
|
|
51
|
+
REPUBLICA_DE_CHAD = "49",
|
|
52
|
+
CURAZAO = "50",
|
|
53
|
+
REPUBLICA_DE_CHILE = "51",
|
|
54
|
+
REPUBLICA_POPULAR_CHINA = "52",
|
|
55
|
+
DAHOMEY_HOY_BENIN_RP = "53",
|
|
56
|
+
REINO_DE_DINAMARCA = "54",
|
|
57
|
+
COMMONWEALTH_DE_DOMINICA = "55",
|
|
58
|
+
REPUBLICA_DEL_ECUADOR = "56",
|
|
59
|
+
REPUBLICA_ARABE_DE_EGIPTO = "57",
|
|
60
|
+
REPUBLICA_DE_EL_SALVADOR = "58",
|
|
61
|
+
EMIRATOS_ARABES_UNIDOS = "59",
|
|
62
|
+
REINO_DE_ESPANA = "60",
|
|
63
|
+
ESTADO_DE_KUWAIT = "61",
|
|
64
|
+
ESTADO_DE_QATAR = "62",
|
|
65
|
+
ESTADOS_UNIDOS_DE_NORTEAMERICA = "63",
|
|
66
|
+
REPUBLICA_DE_ESTONIA = "64",
|
|
67
|
+
REPUBLICA_DEMOCRATICA_FEDERAL_DE_ETIOPIA = "65",
|
|
68
|
+
REPUBLICA_DE_LAS_FILIPINAS = "66",
|
|
69
|
+
REPUBLICA_DE_FINLANDIA = "67",
|
|
70
|
+
REPUBLICA_DE_FRANCIA = "68",
|
|
71
|
+
REPUBLICA_DE_GABON = "69",
|
|
72
|
+
REPUBLICA_DE_LA_GAMBIA = "70",
|
|
73
|
+
GAMBIA = "71",
|
|
74
|
+
REPUBLICA_DE_GHANA = "72",
|
|
75
|
+
NO_APLICA = "73",
|
|
76
|
+
GEORGIA = "74",
|
|
77
|
+
GHANA = "75",
|
|
78
|
+
GIBRALTAR = "76",
|
|
79
|
+
GRANADA = "77",
|
|
80
|
+
GRECIA = "78",
|
|
81
|
+
GROENLANDIA = "79",
|
|
82
|
+
GUADALUPE = "80",
|
|
83
|
+
GUAM = "81",
|
|
84
|
+
GUINEA_BISSAU = "82",
|
|
85
|
+
GUAYANA_FRANCESA = "83",
|
|
86
|
+
GUYANA_HOLANDESA = "84",
|
|
87
|
+
GUYANA_INGLESA = "85",
|
|
88
|
+
REPUBLICA_DE_HAITI = "86",
|
|
89
|
+
HOLANDA = "87",
|
|
90
|
+
REPUBLICA_DE_HONDURAS = "88",
|
|
91
|
+
HONDURAS = "89",
|
|
92
|
+
HONG_KONG = "90",
|
|
93
|
+
REPUBLICA_DE_INDIA = "91",
|
|
94
|
+
REPUBLICA_DE_INDONESIA = "92",
|
|
95
|
+
INDONESIA = "93",
|
|
96
|
+
REPUBLICA_DE_IRAK = "94",
|
|
97
|
+
REPUBLICA_ISLAMICA_DE_IRAN = "95",
|
|
98
|
+
REPUBLICA_DE_IRLANDA = "96",
|
|
99
|
+
IRLANDA = "97",
|
|
100
|
+
ISLA_DE_NORFOLK = "98",
|
|
101
|
+
ISLA_DE_PASCUA = "99",
|
|
102
|
+
ISLA_DE_SAN_PEDRO_Y_MIQUELIN = "100",
|
|
103
|
+
ISLA_DE_MAN = "101",
|
|
104
|
+
ISLA_QUESHM = "102",
|
|
105
|
+
ISLANDIA = "103",
|
|
106
|
+
ISLAS_AZORES = "104",
|
|
107
|
+
ISLAS_CANARIAS = "105",
|
|
108
|
+
ISLAS_COOK = "106",
|
|
109
|
+
ISLAS_DE_COCOS_O_KELLING = "107",
|
|
110
|
+
GUERNESEY = "108",
|
|
111
|
+
ISLAS_MALVINAS = "109",
|
|
112
|
+
REPUBLICA_DE_LAS_ISLAS_MARSHALL = "110",
|
|
113
|
+
ISLAS_PACIFICO = "111",
|
|
114
|
+
ISLAS_SALOMON = "112",
|
|
115
|
+
ISLAS_TURCAS_Y_CAICOS = "113",
|
|
116
|
+
ISLAS_VIRGENES_BRITANICAS = "114",
|
|
117
|
+
ISLAS_VIRGENES_DE_ESTADOS_UNIDOS_DE_AMERICA = "115",
|
|
118
|
+
ESTADO_DE_ISRAEL = "116",
|
|
119
|
+
REPUBLICA_DE_ITALIA = "117",
|
|
120
|
+
JAMAICA = "118",
|
|
121
|
+
JAPON = "119",
|
|
122
|
+
REINO_HASHEMITA_DE_JORDANIA = "120",
|
|
123
|
+
REPUBLICA_DE_KAZAJSTAN = "121",
|
|
124
|
+
REPUBLICA_DE_KENYA = "122",
|
|
125
|
+
REPUBLICA_DE_KIRGUISTAN = "123",
|
|
126
|
+
REPUBLICA_DE_KIRIBATI = "124",
|
|
127
|
+
LESOTHO = "125",
|
|
128
|
+
LABUAN = "126",
|
|
129
|
+
REPUBLICA_DEMOCRATICA_POPULAR_DE_LAOS = "127",
|
|
130
|
+
LATVIA = "128",
|
|
131
|
+
REINO_DE_LESOTHO = "129",
|
|
132
|
+
REPUBLICA_DEL_LIBANO = "130",
|
|
133
|
+
REPUBLICA_DE_LIBERIA = "131",
|
|
134
|
+
JAMAHIRIYA_ARABE_LIBIA_POPULAR_SOCIALISTA = "132",
|
|
135
|
+
PRINCIPADO_DE_LIECHENSTEIN = "133",
|
|
136
|
+
REPUBLICA_DE_LITUANIA = "134",
|
|
137
|
+
GRAN_DUCADO_DE_LUXEMBURGO = "135",
|
|
138
|
+
REGION_ESPECIAL_ADMINISTRATIVA_DE_MACAO_DE_LA_REPUBLICA_POPULAR_CHINA = "136",
|
|
139
|
+
ANTIGUA_REPUBLICA_YUGOSLAVA_DE_MACEDONIA = "137",
|
|
140
|
+
REPUBLICA_DE_MADAGASCAR = "138",
|
|
141
|
+
MADEIRA = "139",
|
|
142
|
+
MALASIA = "140",
|
|
143
|
+
REPUBLICA_DE_MALAWI = "141",
|
|
144
|
+
REPUBLICA_DE_MALI = "142",
|
|
145
|
+
REPUBLICA_DE_MALTA = "143",
|
|
146
|
+
REINO_DE_MARRUECOS = "144",
|
|
147
|
+
REPUBLICA_DE_MAURICIO = "145",
|
|
148
|
+
REPUBLICA_ISLAMICA_DE_MAURITANIA = "146",
|
|
149
|
+
MOLDURA = "147",
|
|
150
|
+
PRINCIPADO_DE_MONACO = "148",
|
|
151
|
+
MONACO = "149",
|
|
152
|
+
MONTSERRAT = "150",
|
|
153
|
+
REPUBLICA_DE_MOZAMBIQUE = "151",
|
|
154
|
+
REPUBLICA_DE_NAMIBIA = "152",
|
|
155
|
+
REPUBLICA_DE_NAURU = "153",
|
|
156
|
+
ESTADO_DE_NEPAL = "154",
|
|
157
|
+
NEVIS = "155",
|
|
158
|
+
REPUBLICA_DE_NICARAGUA = "156",
|
|
159
|
+
REPUBLICA_DEL_NIGER = "157",
|
|
160
|
+
REPUBLICA_FEDERAL_DE_NIGERIA = "158",
|
|
161
|
+
NIGER = "159",
|
|
162
|
+
NO_CLASIFICADO = "160",
|
|
163
|
+
REINO_DE_NORUEGA = "161",
|
|
164
|
+
NORUEGA = "162",
|
|
165
|
+
SULTANATO_DE_OMAN = "163",
|
|
166
|
+
REPUBLICA_DE_PALAOS = "164",
|
|
167
|
+
REPUBLICA_PANAMA = "165",
|
|
168
|
+
REPUBLICA_ISLAMICA_DE_PAQUISTAN = "166",
|
|
169
|
+
REPUBLICA_DE_PARAGUAY = "167",
|
|
170
|
+
REPUBLICA_DEL_PERU = "168",
|
|
171
|
+
ISLAS_PITCAIRN = "169",
|
|
172
|
+
POLINESIA_FRANCESA = "170",
|
|
173
|
+
REPUBLICA_DE_POLONIA = "171",
|
|
174
|
+
REPUBLICA_DE_PORTUGAL = "172",
|
|
175
|
+
ESTADO_LIBRE_ASOCIADO_DE_PUERTO_RICO = "173",
|
|
176
|
+
REINO_DE_SWAZILANDIA = "174",
|
|
177
|
+
REINO_DE_TONGA = "175",
|
|
178
|
+
REPUBLICA_CENTRO_AFRICANA = "176",
|
|
179
|
+
REPUBLICA_DE_CABO_VERDE = "177",
|
|
180
|
+
REPUBLICA_DE_CHIPRE = "178",
|
|
181
|
+
REPUBLICA_DE_DJIBOUTI = "179",
|
|
182
|
+
REPUBLICA_DE_COREA_DEL_SUR = "180",
|
|
183
|
+
REPUBLICA_DE_LAS_MALDIVAS = "181",
|
|
184
|
+
REPUBLICA_DE_SEYCHELLES = "182",
|
|
185
|
+
REPUBLICA_DE_TUNEZ = "183",
|
|
186
|
+
REPUBLICA_DE_VANUATU = "184",
|
|
187
|
+
REPUBLICA_DEL_YEMEN = "185",
|
|
188
|
+
REPUBLICA_DOMINICANA = "186",
|
|
189
|
+
MEXICO = "187",
|
|
190
|
+
REPUBLICA_ORIENTAL_DE_URUGUAY = "188",
|
|
191
|
+
RODESIA = "189",
|
|
192
|
+
REPUBLICA_DE_RUANDA = "190",
|
|
193
|
+
RUMANIA = "191",
|
|
194
|
+
FEDERACION_RUSA = "192",
|
|
195
|
+
SAHARA_DEL_OESTE = "193",
|
|
196
|
+
SAMOA_AMERICANA = "194",
|
|
197
|
+
SAN_CRISTOBAL_Y_NEVIS = "195",
|
|
198
|
+
SAN_KITTS = "196",
|
|
199
|
+
SAN_VICENTE_Y_LAS_GRANADINAS = "197",
|
|
200
|
+
SAN_VICENTE_Y_GRANADI = "198",
|
|
201
|
+
REPUBLICA_DE_SENEGAL = "199",
|
|
202
|
+
SERENISIMA_REPUBLICA_DE_SAN_MARINO = "200",
|
|
203
|
+
REPUBLICA_DE_SIERRA_LEONA = "201",
|
|
204
|
+
REPUBLICA_ARABE_SIRIA = "202",
|
|
205
|
+
SLOVAKIA = "203",
|
|
206
|
+
SLOVENIA = "204",
|
|
207
|
+
SINGAPUR = "205",
|
|
208
|
+
REPUBLICA_DEMOCRATICA_SOCIALISTA_DE_SRI_LANKA = "206",
|
|
209
|
+
REPUBLICA_DE_SUDAFRICA = "207",
|
|
210
|
+
REPUBLICA_DEL_SUDAN = "208",
|
|
211
|
+
REINO_DE_SUECIA = "209",
|
|
212
|
+
CONFEDERACION_HELVETICA = "210",
|
|
213
|
+
REPUBLICA_DE_SURINAM = "211",
|
|
214
|
+
REINO_DE_TAILANDIA = "212",
|
|
215
|
+
REPUBLICA_DE_CHINA_TAIWAN = "213",
|
|
216
|
+
REPUBLICA_UNIDA_DE_TANZANIA = "214",
|
|
217
|
+
REPUBLICA_DE_TAJIKISTAN = "215",
|
|
218
|
+
REPUBLICA_DE_TOGO = "216",
|
|
219
|
+
TAILANDIA = "217",
|
|
220
|
+
TRIESTE = "218",
|
|
221
|
+
REPUBLICA_DE_TRINIDAD_Y_TOBAGO = "219",
|
|
222
|
+
TRISTAN_DE_CUNHA = "220",
|
|
223
|
+
TERRITORIOS_EXT_AUSTRALIA = "221",
|
|
224
|
+
TIMOR_LESTE = "222",
|
|
225
|
+
REPUBLICA_DE_TURQUIA = "223",
|
|
226
|
+
TUVALU = "224",
|
|
227
|
+
TONGA = "225",
|
|
228
|
+
TRINIDAD_Y_TOBAGO = "226",
|
|
229
|
+
REPUBLICA_DE_UZBEKISTAN = "227",
|
|
230
|
+
REPUBLICA_BOLIVARIANA_DE_VENEZUELA = "228",
|
|
231
|
+
REPUBLICA_SOCIALISTA_DE_VIETNAM = "229",
|
|
232
|
+
TURQUIA = "230",
|
|
233
|
+
REPUBLICA_DE_ZAIRE = "231",
|
|
234
|
+
REPUBLICA_DE_ZAMBIA = "232",
|
|
235
|
+
UGANDA = "233",
|
|
236
|
+
UNION_DE_MYANMAR = "234",
|
|
237
|
+
SAN_CRISTOBAL_Y_NIEVES = "235",
|
|
238
|
+
REPUBLICA_DE_SINGAPURE = "236",
|
|
239
|
+
SAMOA = "237",
|
|
240
|
+
BURKINA_FASO = "238",
|
|
241
|
+
TERRITORIOS_PALESTINOS = "239",
|
|
242
|
+
ISLA_DE_CHRISTMAS = "240",
|
|
243
|
+
COMORAS = "241",
|
|
244
|
+
ERITREA = "242",
|
|
245
|
+
ISLAS_FAROE = "243",
|
|
246
|
+
FIYI = "244",
|
|
247
|
+
MARTINICA = "245",
|
|
248
|
+
MICRONESIA = "246",
|
|
249
|
+
MOLDOVA = "247",
|
|
250
|
+
MONTENEGRO = "248",
|
|
251
|
+
NUEVA_CALEDONIA = "249",
|
|
252
|
+
PALESTINA = "250",
|
|
253
|
+
PAPUA_NUEVA_GUINEA = "251",
|
|
254
|
+
SUAZILANDIA = "252",
|
|
255
|
+
SANTO_TOME_Y_PRINCIPE = "253",
|
|
256
|
+
SERBIA = "254",
|
|
257
|
+
ZIMBABUE = "255",
|
|
258
|
+
ANTARTIDA = "256",
|
|
259
|
+
ISLAS_OLAND = "257",
|
|
260
|
+
ISLA_BOUVET = "258",
|
|
261
|
+
REPUBLICA_DEMOCRATICA_DEL_CONGO = "259",
|
|
262
|
+
CLIPPERTON = "260",
|
|
263
|
+
GEORGIA_DEL_SUR_E_ISLAS_SANDWICH_DEL_SUR = "262",
|
|
264
|
+
ISLAS_HEARD_Y_MCDONALD = "263",
|
|
265
|
+
TERRITORIO_BRITANICO_DEL_OCEANO_INDICO = "264",
|
|
266
|
+
JERSEY = "265",
|
|
267
|
+
LETONIA = "266",
|
|
268
|
+
ISLAS_MARIANAS_DEL_NORTE = "267",
|
|
269
|
+
PAISES_BAJOS = "269",
|
|
270
|
+
REUNION = "270",
|
|
271
|
+
TERRITORIOS_AUSTRALES_FRANCESES = "271",
|
|
272
|
+
ISLAS_MENORES_ALEJADAS_DE_LOS_ESTADOS_UNIDOS = "272",
|
|
273
|
+
SANTA_SEDE_ESTADO_DE_LA_CIUDAD_DEL_VATICANO = "273",
|
|
274
|
+
WALLIS_Y_FUTUNA = "274",
|
|
275
|
+
MAYOTTE = "275"
|
|
276
|
+
}
|