2019-12-17 12:33:28 -08:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const userOperations: INodeProperties[] = [
|
2019-12-17 12:33:28 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2019-12-17 12:33:28 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Add Tags',
|
|
|
|
value: 'addTags',
|
|
|
|
description: 'Adds a tag to a users profile',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Alias',
|
|
|
|
value: 'alias',
|
2020-07-24 03:56:41 -07:00
|
|
|
description: 'Change a users identifier',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Create/Update',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create or update a user profile',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Delete a user',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Re-Subscribe',
|
|
|
|
value: 'resubscribe',
|
|
|
|
description: 'Resubscribe a user',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Remove Tags',
|
|
|
|
value: 'removeTags',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Removes a tag from a users profile',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
2022-06-03 10:23:49 -07:00
|
|
|
{
|
|
|
|
name: 'Unsubscribe',
|
|
|
|
value: 'unsubscribe',
|
|
|
|
description: 'Unsubscribe a user',
|
|
|
|
},
|
2019-12-17 12:33:28 -08:00
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2019-12-17 12:33:28 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const userFields: INodeProperties[] = [
|
2019-12-17 12:33:28 -08:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the customer',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'JSON Parameters',
|
|
|
|
name: 'jsonParameters',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2019-12-17 12:33:28 -08:00
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The table to create the row in',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Data',
|
|
|
|
name: 'dataAttributesUi',
|
|
|
|
placeholder: 'Add Data',
|
2022-06-03 10:23:49 -07:00
|
|
|
description: 'Key value pairs that represent the custom user properties you want to update',
|
2019-12-17 12:33:28 -08:00
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
jsonParameters: [
|
2019-12-19 20:33:37 -08:00
|
|
|
false,
|
2019-12-17 12:33:28 -08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'dataAttributesValues',
|
|
|
|
displayName: 'Data',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Key',
|
|
|
|
name: 'key',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the property to set',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Value of the property to set',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Data',
|
|
|
|
name: 'dataAttributesJson',
|
|
|
|
type: 'json',
|
|
|
|
default: '',
|
|
|
|
typeOptions: {
|
|
|
|
alwaysOpenEditWindow: true,
|
|
|
|
},
|
2022-06-03 10:23:49 -07:00
|
|
|
description: 'Key value pairs that represent the custom user properties you want to update',
|
2019-12-17 12:33:28 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
jsonParameters: [
|
|
|
|
true,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:alias */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'alias',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The old unique identifier of the user',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'New ID',
|
|
|
|
name: 'newId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'alias',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The new unique identifier of the user',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:unsubscribe */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'unsubscribe',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the user',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:resubscribe */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'resubscribe',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the user',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:delete */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'delete',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the user',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:addTags */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addTags',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the user',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Tags',
|
|
|
|
name: 'tags',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addTags',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
2019-12-19 20:33:37 -08:00
|
|
|
description: 'Tags to add separated by ","',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* user:removeTags */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'removeTags',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The unique identifier of the user',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Tags',
|
|
|
|
name: 'tags',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'user',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'removeTags',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
|
|
|
},
|
2019-12-19 20:33:37 -08:00
|
|
|
description: 'Tags to remove separated by ","',
|
2019-12-17 12:33:28 -08:00
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|