| /expo/packages/@expo/cli/src/api/user/ |
| H A D | actions.ts | 20 username?: string; 28 const hasCredentials = options.username && options.password; 46 let username = options.username; variable 52 !options.username && { 69 username ??= resolved.username; 73 assert(username && password); 77 username, 84 username,
|
| H A D | user.ts | 30 return user.username; 32 return user.username; 47 username: getActorDisplayName(user), 57 username: string; 74 username: userData.username, 88 username: userData.username, 106 }): Promise<{ id: string; username: string }> { 131 username: data.meUserActor.username,
|
| H A D | otp.ts | 52 username: string, 106 username, 131 username: string, 162 otp = await promptForBackupOTPAsync(username, password, secondFactorDevices); 170 username,
|
| /expo/home/screens/DeleteAccountScreen/ |
| H A D | utils.ts | 24 owner?: { username: string } | null; 26 user?: { username: string } | null; 33 username: string, 38 (member) => member?.user?.username === username && member?.permissions?.includes(permission)
|
| H A D | UserPermissionData.fragment.graphql | 8 username
|
| H A D | DeleteAccountPermissionsQuery.query.graphql | 14 username
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/webview/ |
| H A D | RNCBasicAuthCredential.java | 4 String username; field in RNCBasicAuthCredential 7 RNCBasicAuthCredential(String username, String password) { in RNCBasicAuthCredential() argument 8 this.username = username; in RNCBasicAuthCredential()
|
| /expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/webview/ |
| H A D | RNCBasicAuthCredential.java | 4 String username; field in RNCBasicAuthCredential 7 RNCBasicAuthCredential(String username, String password) { in RNCBasicAuthCredential() argument 8 this.username = username; in RNCBasicAuthCredential()
|
| /expo/packages/@expo/config/src/ |
| H A D | getAccountUsername.ts | 16 const username = constant 18 if (username) { 19 return username; 22 return getUserState().read().auth?.username || ANONYMOUS_USERNAME;
|
| /expo/packages/@expo/cli/src/api/user/__tests__/ |
| H A D | actions-test.ts | 32 .mockImplementationOnce(async () => ({ username: 'hello', password: 'world' })) 78 await showLoginPromptAsync({ username: 'hello', password: 'world' }); 83 username: 'USERNAME', 87 await showLoginPromptAsync({ username: 'hello', password: 'world', sso: false }); 94 .mockImplementationOnce(async () => ({ username: 'USERNAME', password: 'PASSWORD' })) 99 await showLoginPromptAsync({ username: 'hello', password: 'world' }); 106 await showLoginPromptAsync({ username: 'hello', password: 'world', sso: true });
|
| H A D | user-test.ts | 32 Promise.resolve({ data: { meUserActor: { id: 'USER_ID', username: 'USERNAME' } } }), 39 currentUserAsync: async () => ({ __typename: 'User', username: 'USERNAME', id: 'USER_ID' }), 50 username: 'username', 58 username: 'username', 104 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 122 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 162 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 171 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 188 expect(getActorDisplayName(userStub)).toBe(userStub.username); 192 expect(getActorDisplayName(userStub)).toBe(ssoUserStub.username);
|
| /expo/packages/@expo/config/build/ |
| H A D | getAccountUsername.js | 26 …const username = manifest.owner || process.env.EXPO_CLI_USERNAME || process.env.EAS_BUILD_USERNAME; 27 if (username) { 28 return username; 31 …ll || _getUserState$read$au === void 0 ? void 0 : _getUserState$read$au.username) || ANONYMOUS_USE…
|
| H A D | getAccountUsername.js.map | 1 …username","owner","process","env","EXPO_CLI_USERNAME","EAS_BUILD_USERNAME","getUserState","read","…
|
| H A D | getUserState.d.ts | 16 username?: string;
|
| /expo/tools/src/ |
| H A D | EASUpdate.ts | 10 username: string; 30 const username = options.userpass?.username || process.env.EXPO_CI_ACCOUNT_USERNAME; constant 33 if (username && password) { 35 await ExpoCLI.runExpoCliAsync('login', ['-u', username, '-p', password]);
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | getOrPromptApplicationId.ts | 110 const username = await getUsernameAsync(exp); constant 111 const possibleId = `com.${username}.${exp.slug}`; 112 if (username && validateBundleId(possibleId)) { 126 const username = await getUsernameAsync(exp); constant 128 const possibleId = `com.${username}.${exp.slug}`.split('-').join(''); 129 if (username && validatePackage(possibleId)) {
|
| /expo/packages/@expo/cli/src/prebuild/ |
| H A D | resolveTemplate.ts | 21 username: string; 60 const [, username, name, t, _branch, ...file] = url.pathname.split('/'); constant 71 return { username, name, branch: info['default_branch'], filePath }; 79 if (username && name && branch && t === 'tree') { 80 return { username, name, branch, filePath }; 85 function hasRepo({ username, name, branch, filePath }: RepoInfo) { 94 { username, name, branch, filePath }: RepoInfo
|
| /expo/packages/expo-dev-launcher/bundle/screens/__tests__/ |
| H A D | UserProfileScreen.test.tsx | 25 username: 'username1', 33 username: 'username2', 42 username: 'fakeUsername', 68 expect(() => getByText(fakeAccounts[0].ownerUserActor!.username)).toThrow(); 77 await waitFor(() => getByText(fakeAccounts[0].ownerUserActor!.username)); 94 expect(() => getByText(fakeAccounts[0].ownerUserActor!.username)).toThrow(); 103 await waitFor(() => getByText(fakeAccounts[0].ownerUserActor!.username)); 125 expect(() => getByText(account.ownerUserActor!.username)).toThrow(); 132 await waitFor(() => getByText(fakeAccounts[0].ownerUserActor!.username)); 135 getByText(account.ownerUserActor!.username); [all …]
|
| /expo/home/graphql/fragments/ |
| H A D | CurrentUserActorData.fragment.graphql | 4 username 13 username
|
| H A D | CommonAppData.fragment.graphql | 7 username
|
| /expo/packages/expo-dev-launcher/bundle/functions/ |
| H A D | getUserProfileAsync.ts | 8 username: string; 18 username: string;
|
| /expo/packages/expo-router/src/__tests__/ |
| H A D | getServerManifest.test.node.ts | 142 username: 'evanbacon', 147 username: 'user name', 162 username: 'evanbacon', 167 username: 'user name',
|
| /expo/home/screens/HomeScreen/DevelopmentServerListItem/ |
| H A D | index.tsx | 32 username?: string; 35 username: string; 43 username, 87 subtitle={username ?? subtitle}
|
| /expo/packages/expo-dev-launcher/android/ |
| H A D | README.md | 9 ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle 10 sdk.dir=/Users/{username}/Library/Android/sdk
|
| /expo/packages/create-expo/src/ |
| H A D | sessionStorage.ts | 16 username: string;
|