mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
aec2cf4f5b
* feat(core): implement new interaction-session management flow implement a new interaction-session management flow for experience api use * feat(core): implement password sign-in flow implement password sign-in flow * test(core,schemas): add sign-in password tests add sign-in password tests * chore(core): update comments update comments * refactor(core): rename the password input value key rename the password input value key * refactor(core,schemas): refactor the experience API refactor the exerpience API structure * chore(test): add devFeature test add devFeature test * refactor(core): rename the path rename the path * refactor(core,schemas): refactor using the latest API design refactor using the latest API design * chore(test): replace using devFeature test statement replace using devFeature test statement * fix(core): fix lint error fix lint error * refactor(core): refactor experience API implementations refactor experience API implementations * refactor(core): replace with switch replace object map with switch * refactor: apply suggestions from code review * refactor(core): refactor the interaction class refactor the interaction class * refactor(core): update the user identification logic update the user identification logic --------- Co-authored-by: Gao Sun <gao@silverhand.io> |
||
---|---|---|
.. | ||
alterations | ||
src | ||
tables | ||
.gitignore | ||
CHANGELOG.md | ||
generate.sh | ||
package.json | ||
README.md | ||
tsconfig.build.alterations.json | ||
tsconfig.build.gen.json | ||
tsconfig.build.json | ||
tsconfig.json | ||
update-next.sh |
@logto/schemas
The central packages for all database schemas and their TypeScript definitions and utilities.
Table init
The Logto CLI will pick up all necessary SQL queries in tables/
and src/models/
and run them in the following order:
- Run
tables/_before_all.sql
- Run
tables/*.sql
with the snippet/* init_order = <number> */
in ascending order of<number>
- Run
tables/*.sql
without theinit_order
snippet in ascending order of filename (tables/
) or table name (src/models/
) - Run
tables/_after_all.sql
Additional rules for step 2 and 3:
- If no snippet
/* no_after_each */
found, runtables/_after_each.sql
after each SQL file - Exclude lifecycle scripts
tables/_[lifecycle].sql
where[lifecycle]
could be one of:after_all
after_each
before_all
In the after_each
lifecycle script, you can use ${name}
to represent the current filename (tables/
) or table name (src/models/
).
In all lifecycle scripts, you can use ${database}
to represent the current database.