Skip to content

Commit

Permalink
STRATCONN-2967 - Hide internal mappings for LiveRamp (#1554)
Browse files Browse the repository at this point in the history
* hide internal mappings for LiveRamp

* fix description
  • Loading branch information
rhall-twilio authored Sep 6, 2023
1 parent 5c35ba1 commit 5b34d42
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 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 @@ -31,7 +31,8 @@ const action: ActionDefinition<Settings, Payload> = {
},
audience_key: {
label: 'Audience Key',
description: 'Identifies the user within the entered audience.',
description:
'Unique ID that identifies members of an audience. A typical audience key might be client customer IDs, email addresses, or phone numbers.',
type: 'string',
required: true,
default: { '@path': '$.userId' }
Expand Down Expand Up @@ -68,13 +69,15 @@ const action: ActionDefinition<Settings, Payload> = {
type: 'boolean',
label: 'Batch data',
description: 'Receive events in a batch payload. This is required for LiveRamp audiences ingestion.',
unsafe_hidden: true,
required: true,
default: true
},
batch_size: {
label: 'Batch Size',
description: 'Maximum number of events to include in each batch. Actual batch sizes may be lower.',
type: 'number',
unsafe_hidden: true,
required: false,
default: 170000
}
Expand Down

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 @@ -29,7 +29,8 @@ const action: ActionDefinition<Settings, Payload> = {
},
audience_key: {
label: 'Audience Key',
description: 'Identifies the user within the entered audience.',
description:
'Unique ID that identifies members of an audience. A typical audience key might be client customer IDs, email addresses, or phone numbers.',
type: 'string',
required: true,
default: { '@path': '$.userId' }
Expand Down Expand Up @@ -67,13 +68,15 @@ const action: ActionDefinition<Settings, Payload> = {
label: 'Batch data',
description: 'Receive events in a batch payload. This is required for LiveRamp audiences ingestion.',
required: true,
unsafe_hidden: true,
default: true
},
batch_size: {
label: 'Batch Size',
description: 'Maximum number of events to include in each batch. Actual batch sizes may be lower.',
type: 'number',
required: false,
unsafe_hidden: true,
default: 100000
}
},
Expand Down

0 comments on commit 5b34d42

Please sign in to comment.