Ask for an alias on login when the email is not found#6935
Ask for an alias on login when the email is not found#6935gonzaloriestra wants to merge 1 commit intomainfrom
Conversation
|
/snapit |
|
🫰✨ Thanks @gonzaloriestra! Your snapshot has been published to npm. Test the snapshot by installing your package globally: npm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260304105215Caution After installing, validate the version by running |
Coverage report
Test suite run success3798 tests passing in 1449 suites. Report generated by 🧪jest coverage report action from 00f8bfe |
c5fa758 to
72659f1
Compare
072b6e7 to
c81eb49
Compare
|
/snapit |
|
🫰✨ Thanks @gonzaloriestra! Your snapshot has been published to npm. Test the snapshot by installing your package globally: npm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260305113208Caution After installing, validate the version by running |
1e7e3b8 to
00f8bfe
Compare
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/private/node/session/store.d.ts@@ -21,6 +21,13 @@ export declare function remove(): Promise<void>;
* @returns The alias for the session if it exists, otherwise undefined.
*/
export declare function getSessionAlias(userId: string): Promise<string | undefined>;
+/**
+ * Sets the alias for a given user's session and persists it.
+ *
+ * @param userId - The user ID of the session to update.
+ * @param alias - The new alias to set.
+ */
+export declare function setSessionAlias(userId: string, alias: string): Promise<void>;
/**
* Finds a session by its alias.
*
|
WHY are these changes introduced?
Fixes #0000
WHAT is this pull request doing?
How to test your changes?
Post-release steps
Measuring impact
How do we know this change was effective? Please choose one:
Checklist