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
2
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.8 to 0.0.1-test.9

2

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

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

@@ -37,3 +37,3 @@ import type { AxiosInstance } from 'axios';

export type ValueRaw = DropdownValue | RankedDropdownValue | NumberValue | PersonValue | OrganizationValue | LocationValue | DateTime | TextValue;
export type Value = Omit<ValueRaw, DateTime> | Date;
export type Value = Exclude<ValueRaw, DateTime> | Date;
export interface FieldValueRawValues extends Record<keyof FieldValueType, ValueRaw> {

@@ -124,3 +124,3 @@ [FieldValueType.RANKED_DROPDOWN]: RankedDropdownValue;

export type FieldValueResponseRaw = FieldValueRaw[];
export type FieldValue = Omit<FieldValueRaw, 'value' | 'updated_at' | 'created_at'> & {
export type FieldValue = Omit<FieldValueRaw, 'value' | 'updated_at' | 'created_at' | 'value_type'> & {
updated_at: Date | null;

@@ -133,3 +133,7 @@ created_at: Date;

entity_id: number;
value: Value;
/**
* The value of the field value.
* In case of a {@link FieldValueType.DROPDOWN} or {@link FieldValueType.RANKED_DROPDOWN} field, this should be the text of the value.
*/
value: Exclude<Value, DropdownValue | RankedDropdownValue>;
list_entry_id?: number;

@@ -136,0 +140,0 @@ };

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