n8n-nodes-base
Version:
Base nodes of n8n
80 lines • 2.42 kB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
export type LanguageOptions = INodeProperties['options'];
export type Resource = 'attendance' | 'event' | 'person' | 'personTag' | 'petition' | 'signature' | 'tag';
export type Operation = 'create' | 'delete' | 'get' | 'getAll' | 'update' | 'add' | 'remove';
export type LanguageCodes = LanguageOptions[number]['value'];
export type AllFieldsUi = {
email_addresses: EmailAddressUi;
postal_addresses: PostalAddressesUi;
phone_numbers: PhoneNumberUi;
languages_spoken: LanguageCodes;
target: string;
location: LocationUi;
};
export type EmailAddressUi = {
email_addresses_fields: EmailAddressField;
};
export type EmailAddressField = {
primary: boolean;
address: string;
status: EmailStatus;
};
type BaseStatus = 'subscribed' | 'unsubscribed' | 'bouncing' | 'previous bounce';
type EmailStatus = BaseStatus | 'spam complaint' | 'previous spam complaint';
type PhoneNumberUi = {
phone_numbers_fields: PhoneNumberField[];
};
export type PhoneNumberField = {
primary: boolean;
number: string;
status: BaseStatus;
};
type PostalAddressesUi = {
postal_addresses_fields: PostalAddressField[];
};
type LocationUi = {
postal_addresses_fields: PostalAddressField;
};
export type PostalAddressField = {
primary: boolean;
address_lines: string;
locality: string;
region: string;
postal_code: string;
country: string;
language: LanguageCodes;
location: {
location_fields: LatitudeLongitude;
};
};
type LatitudeLongitude = {
latitude: string;
longitude: string;
};
export type FieldWithPrimaryField = EmailAddressField | PhoneNumberField | PostalAddressField;
export type LinksFieldContainer = {
_links: {
self: {
href: string;
};
};
};
export type Response = JsonObject & LinksFieldContainer;
export type PersonResponse = Response & {
identifiers: string[];
email_addresses: EmailAddressField[];
phone_numbers: PhoneNumberField[];
postal_addresses: PostalAddressField[];
languages_spoken: LanguageCodes[];
};
export type PetitionResponse = Response & {
_embedded: {
'osdi:creator': PersonResponse;
};
};
export type JsonValue = string | number | boolean | null | JsonObject | JsonValue[];
export type JsonObject = {
[key: string]: JsonValue;
};
export {};
//# sourceMappingURL=types.d.ts.map