@nicefer/types 1.0.99 → 1.0.100

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/countries.js CHANGED
@@ -182,7 +182,8 @@ exports.Regions = {
182
182
  { id: "SA", name: "Santa Ana" },
183
183
  { id: "SO", name: "Sonsonate" },
184
184
  { id: "US", name: "Usulutan" }
185
- ]
185
+ ],
186
+ CN: []
186
187
  };
187
188
  function getRegionsByCountryId(id) {
188
189
  return exports.Regions[id];
@@ -17,9 +17,7 @@ export interface Region {
17
17
  }
18
18
  export declare const Countries: Country[];
19
19
  export declare const Regions: {
20
- HN: Region[];
21
- US: Region[];
22
- SV: Region[];
20
+ [countryId in Country['id']]: Region[];
23
21
  };
24
22
  export declare function getRegionsByCountryId(id: 'HN' | 'US' | 'SV'): Region[] | any[];
25
23
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nicefer/types",
3
- "version": "1.0.99",
3
+ "version": "1.0.100",
4
4
  "description": "Tipos compartidos para Nicefer",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",