n8n-nodes-base
Version:
Base nodes of n8n
71 lines (67 loc) • 1.6 kB
text/typescript
/**
* SyncroMSP Node - Version 1
* Discriminator: resource=contact, operation=update
*/
interface Credentials {
syncroMspApi: CredentialReference;
}
/** Update customer */
export type SyncroMspV1ContactUpdateParams = {
resource: 'contact';
operation: 'update';
/**
* Contact ID
*/
contactId?: string | Expression<string> | PlaceholderValue;
/**
* Update Fields
* @default {}
*/
updateFields?: {
/** Address
* @default {}
*/
address?: {
/** Address Fields
*/
addressFields?: {
/** Line 1
*/
address?: string | Expression<string> | PlaceholderValue;
/** Line 2
*/
address2?: string | Expression<string> | PlaceholderValue;
/** City
*/
city?: string | Expression<string> | PlaceholderValue;
/** State
*/
state?: string | Expression<string> | PlaceholderValue;
/** ZIP
*/
zip?: string | Expression<string> | PlaceholderValue;
};
};
/** Customer ID
*/
customerId?: string | Expression<string> | PlaceholderValue;
/** Email
*/
email?: string | Expression<string> | PlaceholderValue;
/** Name
*/
name?: string | Expression<string> | PlaceholderValue;
/** Notes
*/
notes?: string | Expression<string> | PlaceholderValue;
/** Phone
*/
phone?: string | Expression<string> | PlaceholderValue;
};
};
export type SyncroMspV1ContactUpdateNode = {
type: 'n8n-nodes-base.syncroMsp';
version: 1;
credentials?: Credentials;
config: NodeConfig<SyncroMspV1ContactUpdateParams>;
};