Skip to content

Commit ea28f32

Browse files
feat: update import path for snakeToCamel utility and define Int32 type in NativeA0Auth0
1 parent f74fef1 commit ea28f32

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/core/models/Auth0User.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { jwtDecode } from 'jwt-decode';
22
import type { User } from '../../types';
3-
import { snakeToCamel } from '../utils';
3+
import { snakeToCamel } from '../utils/conversion';
44

55
/**
66
* A Set containing all OIDC protocol claims that are part of a standard ID token

src/specs/NativeA0Auth0.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { TurboModuleRegistry, type TurboModule } from 'react-native';
2-
import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes';
32
import type { ApiCredentials, Credentials } from '../types';
3+
4+
type Int32 = number;
45
export interface Spec extends TurboModule {
56
/**
67
* Get the bundle identifier

0 commit comments

Comments
 (0)