diff --git a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredS3/index.ts b/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredS3/index.ts index 65042a2dd8..4d23f52698 100644 --- a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredS3/index.ts +++ b/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredS3/index.ts @@ -67,7 +67,7 @@ const action: ActionDefinition = { description: `Name of the CSV file to upload for LiveRamp ingestion.`, type: 'string', required: true, - default: { '@template': '{{properties.audience_key}}_PII_{{timestamp}}.csv' } + default: { '@template': '{{properties.audience_key}}.csv' } }, enable_batching: { type: 'boolean', diff --git a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSFTP.types.ts b/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSFTP.types.ts deleted file mode 100644 index dde35bd23f..0000000000 --- a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSFTP.types.ts +++ /dev/null @@ -1,48 +0,0 @@ -// Generated file. DO NOT MODIFY IT BY HAND. - -export interface Payload { - /** - * User credentials for establishing an SFTP connection with LiveRamp. - */ - sftp_username?: string - /** - * User credentials for establishing an SFTP connection with LiveRamp. - */ - sftp_password?: string - /** - * Path within the LiveRamp SFTP server to upload the files to. This path must exist and all subfolders must be pre-created. - */ - sftp_folder_path?: string - /** - * Unique ID that identifies members of an audience. A typical audience key might be client customer IDs, email addresses, or phone numbers. - */ - audience_key: string - /** - * Additional data pertaining to the user to be written to the file. - */ - identifier_data?: { - [k: string]: unknown - } - /** - * Additional data pertaining to the user to be hashed before written to the file. Use field name **phone_number** or **email** to apply LiveRamp's specific hashing rules. - */ - unhashed_identifier_data?: { - [k: string]: unknown - } - /** - * Character used to separate tokens in the resulting file. - */ - delimiter: string - /** - * Name of the CSV file to upload for LiveRamp ingestion. - */ - filename: string - /** - * Receive events in a batch payload. This is required for LiveRamp audiences ingestion. - */ - enable_batching: boolean - /** - * Maximum number of events to include in each batch. Actual batch sizes may be lower. - */ - batch_size?: number -} diff --git a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSftp/index.ts b/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSftp/index.ts index 6c4dc9cdad..83dd6b7296 100644 --- a/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSftp/index.ts +++ b/packages/destination-actions/src/destinations/liveramp-audiences/audienceEnteredSftp/index.ts @@ -65,7 +65,7 @@ const action: ActionDefinition = { description: `Name of the CSV file to upload for LiveRamp ingestion.`, type: 'string', required: true, - default: { '@template': '{{properties.audience_key}}_PII_{{timestamp}}.csv' } + default: { '@template': '{{properties.audience_key}}_PII.csv' } }, enable_batching: { type: 'boolean',