Skip to content

Commit

Permalink
update descriptions and remove identity (#2179)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcgilbert authored Jul 16, 2024
1 parent 042ea5d commit 4fa1e5a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 27 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const action: ActionDefinition<Settings, Payload> = {
},
phone_number: {
label: 'Phone Number',
description: `The contact's phone number.`,
description: `The contact's phone number. Note: This is different from the Phone Number ID field, but the same value can be stored in both fields.`,
type: 'string',
allowNull: true,
default: {
Expand All @@ -146,8 +146,8 @@ const action: ActionDefinition<Settings, Payload> = {
}
},
line: {
label: 'LINE ID',
description: `The contact's LINE ID.`,
label: 'Line',
description: `The contact's landline.`,
type: 'string',
allowNull: true,
default: {
Expand All @@ -159,8 +159,8 @@ const action: ActionDefinition<Settings, Payload> = {
}
},
facebook: {
label: 'Facebook ID',
description: `The contact's Facebook ID.`,
label: 'Facebook',
description: `The contact's Facebook identifier.`,
type: 'string',
allowNull: true,
default: {
Expand All @@ -184,19 +184,6 @@ const action: ActionDefinition<Settings, Payload> = {
}
}
},
identity: {
label: 'Identity',
description: `The contact's identity.`,
type: 'string',
allowNull: true,
default: {
'@if': {
exists: { '@path': '$.traits.identity' },
then: { '@path': '$.traits.identity' },
else: { '@path': '$.properties.identity' }
}
}
},
primary_email: {
label: 'Email Address',
description: `The contact's email address.`,
Expand All @@ -213,7 +200,7 @@ const action: ActionDefinition<Settings, Payload> = {
},
phone_number_id: {
label: 'Phone Number ID',
description: `The contact's Phone Number ID. This must be a valid phone number.`,
description: `Primary Phone Number used to identify a Contact. This must be a valid phone number.`,
type: 'string',
allowNull: true,
required: false,
Expand Down

0 comments on commit 4fa1e5a

Please sign in to comment.