@i.un/libs 0.0.59 → 0.0.61
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/linkedin/api.d.ts +2 -2
- package/package.json +1 -1
package/dist/linkedin/api.d.ts
CHANGED
|
@@ -2024,7 +2024,7 @@ declare const linkedinProfileExample: {
|
|
|
2024
2024
|
*/
|
|
2025
2025
|
export declare function getLinkedinProfile(publicId: string, { csrfToken, cookies, }: {
|
|
2026
2026
|
csrfToken: string;
|
|
2027
|
-
cookies
|
|
2027
|
+
cookies?: Record<string, string> | string;
|
|
2028
2028
|
}): Promise<(typeof linkedinProfileExample)["elements"][0] | null>;
|
|
2029
2029
|
declare const linkedinCompanyExample: {
|
|
2030
2030
|
elements: {
|
|
@@ -2438,6 +2438,6 @@ export declare function getLinkedinCompany(params: {
|
|
|
2438
2438
|
urn: string;
|
|
2439
2439
|
}, { csrfToken, cookies, }: {
|
|
2440
2440
|
csrfToken: string;
|
|
2441
|
-
cookies
|
|
2441
|
+
cookies?: Record<string, string> | string;
|
|
2442
2442
|
}): Promise<(typeof linkedinCompanyExample)["elements"][0] | null>;
|
|
2443
2443
|
export {};
|