Skip to content

Commit

Permalink
add pdl_id to enrichment (#53)
Browse files Browse the repository at this point in the history
* add pdl_id to enrichment

* update packages

* update packages
  • Loading branch information
vvillait88 authored May 1, 2023
1 parent b8c322d commit 5c49d76
Show file tree
Hide file tree
Showing 4 changed files with 1,573 additions and 1,744 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peopledatalabs",
"version": "5.0.3",
"version": "5.0.4",
"description": "JavaScript client with TypeScript support for the People Data Labs API",
"type": "module",
"main": "dist/index.cjs",
Expand All @@ -16,7 +16,7 @@
"dev": "microbundle watch -p 6008",
"test": "yarn run build && yarn run mocha",
"mocha": "mocha --recursive 'tests/**/*.js'",
"pub": "yarn run build && yarn publish",
"pub": "yarn run build && yarn publish --provenanc --access public",
"lint": "eslint --fix"
},
"repository": {
Expand All @@ -43,8 +43,8 @@
},
"homepage": "https://docs.peopledatalabs.com/docs/javascript-sdk",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
Expand All @@ -63,7 +63,7 @@
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.6",
"axios": "^1.4.0",
"copy-anything": "^3.0.3"
}
}
1 change: 1 addition & 0 deletions src/types/enrichment-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export type PersonEnrichmentParams = EnrichmentAdditionalParams & Partial<{
lid: number,
birth_date: Array<string> | string;
data_include: string;
pdl_id: string;
}>;

export interface PersonEnrichmentResponse extends BaseResponse {
Expand Down
Loading

0 comments on commit 5c49d76

Please sign in to comment.