Skip to content

Commit

Permalink
Revert "update personalize type to accomodate string"
Browse files Browse the repository at this point in the history
This reverts commit 9326beb.
  • Loading branch information
ashika112 committed Aug 9, 2022
1 parent 9326beb commit 4e0e22b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion packages/analytics/src/Providers/AWSKinesisProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export class AWSKinesisProvider implements AnalyticsProvider {
* @param {Object} params - the params of an event
*/
public async record(params): Promise<boolean> {
debugger;
const credentials = await this._getCredentials();
if (!credentials) return Promise.resolve(false);

Expand Down
5 changes: 0 additions & 5 deletions packages/analytics/src/types/Providers/AWSKinesisProvider.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface PersonalizeAnalyticsEvent {
eventType?: string;
eventType?: 'Identify' | 'MediaAutoTrack';
userId?: string;
properties?: {
[key: string]: string;
Expand Down

0 comments on commit 4e0e22b

Please sign in to comment.