@curviate/sdk 0.4.0 → 0.4.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/CHANGELOG.md +8 -0
- package/dist/index.d.ts +6 -4
- package/package.json +1 -1
- package/src/generated/types.ts +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ Versioning: semantic — minor for additive changes, patch for bug fixes; no sta
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.4.1] — 2026-06-30
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `people_search_result` item now includes `id: string` — the raw LinkedIn provider id for the person (e.g. `ACoAA…` format). This is the first property on the item type.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
10
18
|
## [0.4.0] — 2026-06-30
|
|
11
19
|
|
|
12
20
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -13206,7 +13206,7 @@ interface paths {
|
|
|
13206
13206
|
query: {
|
|
13207
13207
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13208
13208
|
account_id: string;
|
|
13209
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13209
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13210
13210
|
limit?: number;
|
|
13211
13211
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13212
13212
|
cursor?: string;
|
|
@@ -13277,6 +13277,8 @@ interface paths {
|
|
|
13277
13277
|
object: "people_search_result";
|
|
13278
13278
|
/** @description People search result items. */
|
|
13279
13279
|
items: {
|
|
13280
|
+
/** @description Raw LinkedIn provider id for this person (e.g. ACoAA…). */
|
|
13281
|
+
id: string;
|
|
13280
13282
|
/** @description LinkedIn member URN for this person (normalized to urn:li:member:N). */
|
|
13281
13283
|
linkedin_urn: string;
|
|
13282
13284
|
/** @description LinkedIn public identifier (the slug after linkedin.com/in/). */
|
|
@@ -13482,7 +13484,7 @@ interface paths {
|
|
|
13482
13484
|
query: {
|
|
13483
13485
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13484
13486
|
account_id: string;
|
|
13485
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13487
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13486
13488
|
limit?: number;
|
|
13487
13489
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13488
13490
|
cursor?: string;
|
|
@@ -13686,7 +13688,7 @@ interface paths {
|
|
|
13686
13688
|
query: {
|
|
13687
13689
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13688
13690
|
account_id: string;
|
|
13689
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13691
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13690
13692
|
limit?: number;
|
|
13691
13693
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13692
13694
|
cursor?: string;
|
|
@@ -13954,7 +13956,7 @@ interface paths {
|
|
|
13954
13956
|
query: {
|
|
13955
13957
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13956
13958
|
account_id: string;
|
|
13957
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13959
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13958
13960
|
limit?: number;
|
|
13959
13961
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13960
13962
|
cursor?: string;
|
package/package.json
CHANGED
package/src/generated/types.ts
CHANGED
|
@@ -13097,7 +13097,7 @@ export interface paths {
|
|
|
13097
13097
|
query: {
|
|
13098
13098
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13099
13099
|
account_id: string;
|
|
13100
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13100
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13101
13101
|
limit?: number;
|
|
13102
13102
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13103
13103
|
cursor?: string;
|
|
@@ -13168,6 +13168,8 @@ export interface paths {
|
|
|
13168
13168
|
object: "people_search_result";
|
|
13169
13169
|
/** @description People search result items. */
|
|
13170
13170
|
items: {
|
|
13171
|
+
/** @description Raw LinkedIn provider id for this person (e.g. ACoAA…). */
|
|
13172
|
+
id: string;
|
|
13171
13173
|
/** @description LinkedIn member URN for this person (normalized to urn:li:member:N). */
|
|
13172
13174
|
linkedin_urn: string;
|
|
13173
13175
|
/** @description LinkedIn public identifier (the slug after linkedin.com/in/). */
|
|
@@ -13373,7 +13375,7 @@ export interface paths {
|
|
|
13373
13375
|
query: {
|
|
13374
13376
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13375
13377
|
account_id: string;
|
|
13376
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13378
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13377
13379
|
limit?: number;
|
|
13378
13380
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13379
13381
|
cursor?: string;
|
|
@@ -13577,7 +13579,7 @@ export interface paths {
|
|
|
13577
13579
|
query: {
|
|
13578
13580
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13579
13581
|
account_id: string;
|
|
13580
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13582
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13581
13583
|
limit?: number;
|
|
13582
13584
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13583
13585
|
cursor?: string;
|
|
@@ -13845,7 +13847,7 @@ export interface paths {
|
|
|
13845
13847
|
query: {
|
|
13846
13848
|
/** @description The linked LinkedIn account to search on behalf of. */
|
|
13847
13849
|
account_id: string;
|
|
13848
|
-
/** @description Maximum results per page (1–50, default 10).
|
|
13850
|
+
/** @description Maximum results per page (1–50, default 10). */
|
|
13849
13851
|
limit?: number;
|
|
13850
13852
|
/** @description Opaque pagination cursor returned from a previous response. */
|
|
13851
13853
|
cursor?: string;
|