@rent-scraper/api 1.0.0
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 +3 -0
- package/dist/config.d.mts +12 -0
- package/dist/config.mjs +1 -0
- package/dist/index.d.mts +774 -0
- package/dist/index.mjs +2461 -0
- package/dist/shared/api.ucFn6Zgb.mjs +1 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const getZillowCookie: () => Promise<string | null>;
|
|
2
|
+
declare const getZillowDaysListed: () => Promise<string | null>;
|
|
3
|
+
declare const getZillowOutputPath: () => Promise<string>;
|
|
4
|
+
declare const getZillowZipCodes: () => Promise<number[]>;
|
|
5
|
+
type Zpid = string;
|
|
6
|
+
|
|
7
|
+
declare const getRedfinOutputPath: () => Promise<string>;
|
|
8
|
+
declare const getRedfinZipCodes: () => Promise<number[]>;
|
|
9
|
+
declare const getRedfinDaysListed: () => Promise<string | null>;
|
|
10
|
+
|
|
11
|
+
export { getRedfinDaysListed, getRedfinOutputPath, getRedfinZipCodes, getZillowCookie, getZillowDaysListed, getZillowOutputPath, getZillowZipCodes };
|
|
12
|
+
export type { Zpid };
|
package/dist/config.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{g as getZillowCookie,b as getZillowDaysListed,c as getZillowOutputPath,a as getZillowZipCodes}from"./shared/api.ucFn6Zgb.mjs";import{getOutputPathFromConfig as t,getZipCodesFromConfig as e,getValueFromConfigFile as i}from"@rent-scraper/utils/config";const a=async()=>await t("redfin"),o=async()=>await e("redfin"),s=async()=>await i("redfin","daysListed");export{s as getRedfinDaysListed,a as getRedfinOutputPath,o as getRedfinZipCodes};
|