UNPKG

tanzania-nida-lookup

Version:

Node.js library for retrieving user information from Tanzania's National Identification Authority (NIDA)

32 lines 980 B
tanzania-nida-lookup/ │ ├── src/ │ ├── index.ts # Main package export │ ├── nida-service.ts # Core NIDA service implementation │ └── types/ # TypeScript type definitions │ ├── user-data.ts │ └── response.ts │ ├── dist/ # Compiled JavaScript files │ ├── index.js │ ├── nida-service.js │ └── types/ │ ├── tests/ # Unit and integration tests │ ├── nida-service.test.ts │ └── integration/ │ └── api-integration.test.ts │ ├── docs/ # Documentation │ ├── README.md │ └── API.md │ ├── examples/ # Usage examples │ ├── basic-usage.ts │ └── advanced-usage.ts │ ├── package.json ├── tsconfig.json ├── .npmignore ├── LICENSE └── README.md