Skip to content

Commit

Permalink
feat(validateDatamobRequirements): remove googleAccount (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
atabel authored Jan 14, 2025
1 parent 7f57f06 commit 2104a16
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,6 @@ value where true is valid, false is not valid.
validateDatamobRequirements: ({phoneNumber: string, tokenPassword: string}) => Promise<{
requirements: {
deviceAdmin: boolean;
googleAccount: boolean;
lockPassword: boolean;
accessibilityOption: boolean;
invalidPhoneNumber: boolean;
Expand Down
2 changes: 0 additions & 2 deletions src/__tests__/datamob-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ test('validateDatamobRequirements', async () => {
payload: {
requirements: {
deviceAdmin: true,
googleAccount: true,
lockPassword: true,
accessibilityOption: true,
invalidPhoneNumber: true,
Expand All @@ -97,7 +96,6 @@ test('validateDatamobRequirements', async () => {
expect(res).toEqual({
requirements: {
deviceAdmin: true,
googleAccount: true,
lockPassword: true,
accessibilityOption: true,
invalidPhoneNumber: true,
Expand Down
1 change: 0 additions & 1 deletion src/datamob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const validateDatamobRequirements = ({
}): Promise<{
requirements: {
deviceAdmin: boolean;
googleAccount: boolean;
lockPassword: boolean;
accessibilityOption: boolean;
invalidPhoneNumber: boolean;
Expand Down
1 change: 0 additions & 1 deletion src/post-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,6 @@ export type ResponsesFromNativeApp = {
payload: {
requirements: {
deviceAdmin: boolean;
googleAccount: boolean;
lockPassword: boolean;
accessibilityOption: boolean;
invalidPhoneNumber: boolean;
Expand Down

0 comments on commit 2104a16

Please sign in to comment.