Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sequelize): extend Inclusion interface with "required" property #10192

Merged

Commits on Nov 16, 2023

  1. fix(sequelize): extend Inclusion interface with "required" property

    This resolves errors such as the following when trying to use the
    new property with a repository call:
    ```ts
    Type '{ relation: string; scope: { where: { id: number; }; }; required: true; }'
    is not assignable to type 'InclusionFilter'.
      Object literal may only specify known properties, and 'required'
    does not exist in type 'Inclusion'.
    
    53           required: true
    ```
    
    Signed-off-by: KalleV <kvirtaneva@gmail.com>
    KalleV committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    3ad9545 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. refactor: extend repository methods directly

    Signed-off-by: KalleV <kvirtaneva@gmail.com>
    KalleV committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    2b675e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. chore: fix typo with extended type

    Signed-off-by: KalleV <kvirtaneva@gmail.com>
    KalleV committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    e98997d View commit details
    Browse the repository at this point in the history
  2. chore: trigger pipelines again

    Signed-off-by: KalleV <kvirtaneva@gmail.com>
    KalleV committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    781d161 View commit details
    Browse the repository at this point in the history