0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas
simeng-li e7a642028d
feat(schemas): define data hook events (#5828)
* feat(schemas): define data hook events

define data hook events

* fix(schemas,core): fix the type error

fix the type error

* fix(core): fix unit test

fix unit test

* feat(test): add integration tests for DataHooks

add integration tests for DataHooks

* fix(test): fix ut of management api hook middleware
fix ut of the management api hook middleware

* refactor(test,core,schemas): refactor some DataHook definiations

refactor some DataHook definitations

* chore(test): remove upper scope describe wrap

remove upper scope describe wrap

* fix(test): fix tests

fix tests

* refactor(schemas): rename the info.update events

rename the info.update events

* refactor(schemas): rename

rename

* refactor(core,schemas): refactor DataHook code

refactor DataHook code to address some code review comments

* fix(test): fix ut

fix ut

* fix(schemas): update DataHookEventPayload type

update DataHookEventPayload type

* chore(schemas): update comments

update comments
2024-05-13 16:11:50 +08:00
..
alterations feat(schemas): add table for app org resource scope consent (#5803) 2024-04-29 10:48:02 +08:00
src feat(schemas): define data hook events (#5828) 2024-05-13 16:11:50 +08:00
tables feat(schemas): add table for app org resource scope consent (#5803) 2024-04-29 10:48:02 +08:00
.gitignore fix: alteration script in dev 2022-10-18 15:40:36 +08:00
CHANGELOG.md release: version packages (#5463) 2024-04-10 21:27:24 +08:00
generate.sh refactor(schemas): remove eslint in generate script (#2669) 2022-12-15 04:02:51 +00:00
package.json chore(deps): upgrade withtyped packages (#5829) 2024-05-07 11:08:10 +08:00
README.md refactor: use RLS 2023-02-08 18:58:45 +08:00
tsconfig.build.alterations.json fix: alteration script in dev 2022-10-18 15:40:36 +08:00
tsconfig.build.gen.json test: update to native ESM (batch 1) 2022-12-12 21:52:55 +08:00
tsconfig.build.json refactor: schema export and id generator 2022-12-20 00:02:35 +08:00
tsconfig.json refactor: update tsconfig 2023-02-17 13:41:05 +08:00
update-next.sh fix: handle versioning when no next-*.ts found (#2202) 2022-10-19 08:01:49 +00:00

@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.