@getanyapi/sdk 0.21.1 → 0.22.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.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -13583,6 +13583,15 @@ interface LinkedinSearchPostsFullPost {
|
|
|
13583
13583
|
* Format: uri.
|
|
13584
13584
|
*/
|
|
13585
13585
|
profileUrl?: string;
|
|
13586
|
+
/**
|
|
13587
|
+
* LinkedIn public identifier (vanity slug) for the author, for example "williamhgates". Stable across lanes, unlike the raw id.
|
|
13588
|
+
*/
|
|
13589
|
+
publicIdentifier?: string;
|
|
13590
|
+
/**
|
|
13591
|
+
* Kind of LinkedIn entity that authored the post, derived from the author URL.
|
|
13592
|
+
* One of: person, company, showcase.
|
|
13593
|
+
*/
|
|
13594
|
+
type?: "person" | "company" | "showcase";
|
|
13586
13595
|
};
|
|
13587
13596
|
/**
|
|
13588
13597
|
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
|
package/dist/index.d.ts
CHANGED
|
@@ -13583,6 +13583,15 @@ interface LinkedinSearchPostsFullPost {
|
|
|
13583
13583
|
* Format: uri.
|
|
13584
13584
|
*/
|
|
13585
13585
|
profileUrl?: string;
|
|
13586
|
+
/**
|
|
13587
|
+
* LinkedIn public identifier (vanity slug) for the author, for example "williamhgates". Stable across lanes, unlike the raw id.
|
|
13588
|
+
*/
|
|
13589
|
+
publicIdentifier?: string;
|
|
13590
|
+
/**
|
|
13591
|
+
* Kind of LinkedIn entity that authored the post, derived from the author URL.
|
|
13592
|
+
* One of: person, company, showcase.
|
|
13593
|
+
*/
|
|
13594
|
+
type?: "person" | "company" | "showcase";
|
|
13586
13595
|
};
|
|
13587
13596
|
/**
|
|
13588
13597
|
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
|