@apiverve/ifsclookup 1.1.10 → 1.1.12

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/index.d.ts +19 -1
  3. package/package.json +4 -3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 APIVerve, and Evlar LLC
3
+ Copyright (c) 2025 APIVerve, and EvlarSoft LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/index.d.ts CHANGED
@@ -7,10 +7,28 @@ declare module '@apiverve/ifsclookup' {
7
7
  export interface ifsclookupResponse {
8
8
  status: string;
9
9
  error: string | null;
10
- data: any;
10
+ data: IFSCLookupData;
11
11
  code?: number;
12
12
  }
13
13
 
14
+
15
+ interface IFSCLookupData {
16
+ bank: string;
17
+ ifsc: string;
18
+ branch: string;
19
+ address: string;
20
+ contact: string;
21
+ city: string;
22
+ district: string;
23
+ state: string;
24
+ imps: boolean;
25
+ rtgs: boolean;
26
+ neft: boolean;
27
+ upi: boolean;
28
+ micr: string;
29
+ swift: string;
30
+ }
31
+
14
32
  export default class ifsclookupWrapper {
15
33
  constructor(options: ifsclookupOptions);
16
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apiverve/ifsclookup",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "description": "IFSC Lookup is a simple tool for getting information on IFSC codes. It returns information on various IFSC codes.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -10,7 +10,8 @@
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git+https://github.com/apiverve/ifsclookup-API.git"
13
+ "url": "git+https://github.com/apiverve/ifsclookup-api.git",
14
+ "directory": "npm"
14
15
  },
15
16
  "keywords": [
16
17
  "ifsc lookup", "ifsc lookup api", "ifsc lookup tool", "ifsc lookup software", "ifsc lookup service"
@@ -18,7 +19,7 @@
18
19
  "author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
19
20
  "license": "MIT",
20
21
  "bugs": {
21
- "url": "https://github.com/apiverve/ifsclookup-API/issues"
22
+ "url": "https://github.com/apiverve/ifsclookup-api/issues"
22
23
  },
23
24
  "homepage": "https://apiverve.com/marketplace/ifsclookup?utm_source=npm",
24
25
  "devDependencies": {