@apifreaks/openapi-specs 0.3.0 → 0.3.1
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/README.md +6 -7
- package/dist/index.cjs +2542 -2411
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2542 -2411
- package/dist/specs/email-validation/bulk-email-validation.yaml +59 -12
- package/dist/specs/email-validation/email-checker.yaml +52 -10
- package/package.json +1 -1
- package/specs/email-validation/bulk-email-validation.json +90 -13
- package/specs/email-validation/email-checker.json +67 -11
- /package/dist/specs/{general → billing}/usage-credits.yaml +0 -0
- /package/dist/specs/{geodb → geography}/administrative-units-details.yaml +0 -0
- /package/dist/specs/{geodb → geography}/administrative-units-levels.yaml +0 -0
- /package/dist/specs/{geodb → geography}/administrative-units.yaml +0 -0
- /package/dist/specs/{geodb → geography}/cities.yaml +0 -0
- /package/dist/specs/{geodb → geography}/countries-details.yaml +0 -0
- /package/dist/specs/{geodb → geography}/countries.yaml +0 -0
- /package/dist/specs/{geodb → geography}/flags-supported.yaml +0 -0
- /package/dist/specs/{geodb → geography}/flags.yaml +0 -0
- /package/dist/specs/{geodb → geography}/regions.yaml +0 -0
- /package/dist/specs/{geodb → geography}/subregions.yaml +0 -0
- /package/dist/specs/{other → weather}/astronomy-data.yaml +0 -0
- /package/specs/{general → billing}/usage-credits.json +0 -0
- /package/specs/{geodb → geography}/administrative-units-details.json +0 -0
- /package/specs/{geodb → geography}/administrative-units-levels.json +0 -0
- /package/specs/{geodb → geography}/administrative-units.json +0 -0
- /package/specs/{geodb → geography}/cities.json +0 -0
- /package/specs/{geodb → geography}/countries-details.json +0 -0
- /package/specs/{geodb → geography}/countries.json +0 -0
- /package/specs/{geodb → geography}/flags-supported.json +0 -0
- /package/specs/{geodb → geography}/flags.json +0 -0
- /package/specs/{geodb → geography}/regions.json +0 -0
- /package/specs/{geodb → geography}/subregions.json +0 -0
- /package/specs/{other → weather}/astronomy-data.json +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -139,17 +139,16 @@ type SpecSlugValue = (typeof SpecSlug)[keyof typeof SpecSlug];
|
|
|
139
139
|
* Enumerated spec categories, same rename-safety guarantee as SpecSlug.
|
|
140
140
|
*/
|
|
141
141
|
declare const SpecCategory: {
|
|
142
|
+
readonly BILLING: "billing";
|
|
142
143
|
readonly COMMODITY: "commodity";
|
|
143
144
|
readonly CURRENCY: "currency";
|
|
144
145
|
readonly DNS: "dns";
|
|
145
146
|
readonly DOMAIN: "domain";
|
|
146
147
|
readonly EMAIL_VALIDATION: "email-validation";
|
|
147
148
|
readonly FINANCIAL: "financial";
|
|
148
|
-
readonly GENERAL: "general";
|
|
149
149
|
readonly GEOCODING: "geocoding";
|
|
150
|
-
readonly
|
|
150
|
+
readonly GEOGRAPHY: "geography";
|
|
151
151
|
readonly IP_INTELLIGENCE: "ip-intelligence";
|
|
152
|
-
readonly OTHER: "other";
|
|
153
152
|
readonly PDF: "pdf";
|
|
154
153
|
readonly PHONE_VALIDATION: "phone-validation";
|
|
155
154
|
readonly SCRAPER: "scraper";
|
package/dist/index.d.ts
CHANGED
|
@@ -139,17 +139,16 @@ type SpecSlugValue = (typeof SpecSlug)[keyof typeof SpecSlug];
|
|
|
139
139
|
* Enumerated spec categories, same rename-safety guarantee as SpecSlug.
|
|
140
140
|
*/
|
|
141
141
|
declare const SpecCategory: {
|
|
142
|
+
readonly BILLING: "billing";
|
|
142
143
|
readonly COMMODITY: "commodity";
|
|
143
144
|
readonly CURRENCY: "currency";
|
|
144
145
|
readonly DNS: "dns";
|
|
145
146
|
readonly DOMAIN: "domain";
|
|
146
147
|
readonly EMAIL_VALIDATION: "email-validation";
|
|
147
148
|
readonly FINANCIAL: "financial";
|
|
148
|
-
readonly GENERAL: "general";
|
|
149
149
|
readonly GEOCODING: "geocoding";
|
|
150
|
-
readonly
|
|
150
|
+
readonly GEOGRAPHY: "geography";
|
|
151
151
|
readonly IP_INTELLIGENCE: "ip-intelligence";
|
|
152
|
-
readonly OTHER: "other";
|
|
153
152
|
readonly PDF: "pdf";
|
|
154
153
|
readonly PHONE_VALIDATION: "phone-validation";
|
|
155
154
|
readonly SCRAPER: "scraper";
|