Skip to content

Commit bd74a93

Browse files
[Livelike] - field visibilty fix (#3125)
* [Livelike] - field visibilty fix * turning on batching by default * yarn types
1 parent a50e31f commit bd74a93

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

packages/destination-actions/src/destinations/livelike-cloud/syncToUserGroup/generated-types.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/destination-actions/src/destinations/livelike-cloud/syncToUserGroup/index.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const action: ActionDefinition<Settings, Payload> = {
4444
label: 'Additional user traits',
4545
description: 'Used for trait values to send to Livelike.',
4646
type: 'object',
47-
unsafe_hidden: true,
4847
defaultObjectUI: 'keyvalue:only',
4948
additionalProperties: true,
5049
properties: {
@@ -80,6 +79,7 @@ const action: ActionDefinition<Settings, Payload> = {
8079
label: 'Traits or Properties hidden',
8180
description: 'Hidden field used to figure out if user is added or removed from an Engage Audience',
8281
type: 'object',
82+
unsafe_hidden: true,
8383
default: {
8484
'@if': {
8585
exists: { '@path': '$.traits' },
@@ -96,6 +96,12 @@ const action: ActionDefinition<Settings, Payload> = {
9696
'@path': '$.userId'
9797
}
9898
},
99+
enable_batching: {
100+
label: 'Enable Batching',
101+
type: 'boolean',
102+
description: 'Enable batching for this action. If enabled, the action will process records in batches.',
103+
default: true
104+
},
99105
batch_size: {
100106
label: 'Batch Size',
101107
type: 'number',

0 commit comments

Comments
 (0)