0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/schemas
simeng-li 2c8343a757
feat(schemas): add idp-initiated SSO client side callback url columns (#6675)
* feat(core): consume IdP initiated session on SSO verification flow

Auto consume the IdP initiated SAML SSO session on the SSO sign-in verification flow

* test(core): add unit test cases

add unit test cases

* feat(schemas): add client idp-initiated auth callback url column

add client idp-initiated auth callback url column

* fix(test): fix ut

fix ut
2024-10-16 16:58:20 +08:00
..
alterations feat(schemas): add idp-initiated SSO client side callback url columns (#6675) 2024-10-16 16:58:20 +08:00
src feat(core,schemas): init auth flow for IdP initiated SAML SSO (#6668) 2024-10-14 15:39:05 +08:00
tables feat(schemas): add idp-initiated SSO client side callback url columns (#6675) 2024-10-16 16:58:20 +08:00
.gitignore
CHANGELOG.md release: version packages (#6424) 2024-09-13 18:06:50 +08:00
generate.sh
package.json release: version packages (#6424) 2024-09-13 18:06:50 +08:00
README.md
tsconfig.build.alterations.json refactor(core): use tsup for building 2024-07-28 11:34:43 +08:00
tsconfig.build.gen.json refactor(core): use tsup for building 2024-07-28 11:34:43 +08:00
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:

  1. Run tables/_before_all.sql
  2. Run tables/*.sql with the snippet /* init_order = <number> */ in ascending order of <number>
  3. Run tables/*.sql without the init_order snippet in ascending order of filename (tables/) or table name (src/models/)
  4. Run tables/_after_all.sql

Additional rules for step 2 and 3:

  • If no snippet /* no_after_each */ found, run tables/_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.