Skip to content

Commit

Permalink
fix: Fix typo in identity interface (#923)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexs-mparticle authored Sep 23, 2024
1 parent fb4608c commit f1e0ec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/identity.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface IIdentityAPIRequestData {
context: string | null;
environment: Environment;
request_id: string;
reqest_timestamp_unixtime_ms: number;
request_timestamp_unixtime_ms: number;
previous_mpid: MPID | null;
known_identities: IKnownIdentities;
}
Expand Down
4 changes: 2 additions & 2 deletions test/jest/identity.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('Identity', () => {
context: 'test-context',
environment: 'development',
request_id: '123',
reqest_timestamp_unixtime_ms: Date.now(),
request_timestamp_unixtime_ms: Date.now(),
previous_mpid: null,
known_identities: {
email: '[email protected]',
Expand All @@ -143,7 +143,7 @@ describe('Identity', () => {
context: 'test-context',
environment: 'development',
request_id: '123',
reqest_timestamp_unixtime_ms: Date.now(),
request_timestamp_unixtime_ms: Date.now(),
identity_changes: [
{
identity_type: SDKIdentityTypeEnum.google,
Expand Down

0 comments on commit f1e0ec9

Please sign in to comment.