Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@planet-a/affinity-node

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@planet-a/affinity-node - npm Package Compare versions

Comparing version 0.0.1-test.14 to 0.0.1-test.15

2

package.json
{
"name": "@planet-a/affinity-node",
"version": "0.0.1-test.14",
"version": "0.0.1-test.15",
"description": "API wrapper for the affinity.co API",

@@ -5,0 +5,0 @@ "keywords": [

@@ -33,4 +33,2 @@ import type { AxiosInstance } from 'axios';

primary_email: string;
/** An array of unique identifiers of organizations that the person is associated with. */
organization_ids: number[];
};

@@ -72,5 +70,7 @@ /**

export type SinglePersonResponseRaw = {
/** An array of unique identifiers of organizations that the person is associated with. */
organization_ids: number[];
list_entries: ListEntryReferenceRaw[];
} & PersonResponseRaw;
export type SinglePersonResponse = {
export type SinglePersonResponse = Replace<SinglePersonResponseRaw, {
/**

@@ -80,3 +80,3 @@ * An array of list entry resources associated with the person, only returned as part of the {@link Persons.get} a specific person endpoint.

list_entries: ListEntryReference[];
} & PersonResponse;
} & PersonResponse>;
export type GetPersonRequest = PersonReference & OpportunitiesQueryParams & InteractionDatesQueryParams & WithCurrentOrganizatonParams;

@@ -133,3 +133,3 @@ export type PersonReference = {

} & PersonReference;
export type SimplePersonResponse = Person & Pick<PersonResponse, 'organization_ids'>;
export type SimplePersonResponse = Omit<SinglePersonResponse, 'list_entries'>;
/**

@@ -136,0 +136,0 @@ * @module

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc