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 cdf5a22315
refactor(core,schemas,console): optimize the sso connector endpoints naming (#5047)
* refactor(core,schemas): rename the sso-connector-factory terms to connector-provider

shouls align the terms of api. Replace the factory using provider.

* refactor(core,console): rename the sso-connector-providers response property name

 rename the sso-connector-providers response property name

* chore(core): update api doc content

update api doc content

* feat(core): declare the SAMLResponse field in ACS api body

declare the SAMLResponse field in ACS api body

* refactor(console,core): categorize standard SSO providers at client side only

categorize standard SSO providers at client side only

* fix(core): fix rebase issue

fix rebase issue

* chore(console): remove useless useMemo

remove useless useMemo

* chore(core): update the api content

update the api content
2023-12-04 15:07:33 +08:00
..
alterations feat(core,schemas): add new singleSignOnEnabled field to sie (#5003) 2023-11-30 16:34:08 +08:00
src refactor(core,schemas,console): optimize the sso connector endpoints naming (#5047) 2023-12-04 15:07:33 +08:00
tables refactor(core,schemas,console): optimize the sso connector endpoints naming (#5047) 2023-12-04 15:07:33 +08:00
.gitignore
CHANGELOG.md release: version packages (#4873) 2023-11-14 19:57:42 +08:00
generate.sh
jest.config.js
package.json fix(core): generate correct swagger components (#4884) 2023-11-16 11:19:54 +08:00
README.md
tsconfig.build.alterations.json
tsconfig.build.gen.json
tsconfig.build.json
tsconfig.json
tsconfig.test.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.