@getanyapi/sdk 0.33.0 → 0.34.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/dist/index.cjs +13 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7273,6 +7273,19 @@ var YoutubeNamespace = class {
|
|
|
7273
7273
|
options
|
|
7274
7274
|
);
|
|
7275
7275
|
}
|
|
7276
|
+
/**
|
|
7277
|
+
* YouTube Channel Contact Email
|
|
7278
|
+
*
|
|
7279
|
+
* Reveal the business inquiry email a YouTube creator publishes behind the channel's View email address button. YouTube gates that address behind a signed-in Google session and a CAPTCHA, so it is absent from the channel page a logged-out scraper reads.
|
|
7280
|
+
*
|
|
7281
|
+
* Price: $0.0718 per request plus $0 per result (maximum $0.0718).
|
|
7282
|
+
*
|
|
7283
|
+
* @example
|
|
7284
|
+
* const res = await client.youtube.channelContact({ handle: "@mkbhd" });
|
|
7285
|
+
*/
|
|
7286
|
+
channelContact(input, options) {
|
|
7287
|
+
return this._core.run("youtube.channel_contact", input, options);
|
|
7288
|
+
}
|
|
7276
7289
|
/**
|
|
7277
7290
|
* YouTube Channel Live Streams
|
|
7278
7291
|
*
|