Skip to content

Commit

Permalink
Fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Rochet2 authored Sep 24, 2023
1 parent 0eaa2ed commit 0a686f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sscce-sequelize-6.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export async function run() {

const offset = 0;
const limit = 10;
const result = await Foo.FindAll({
const result = await Foo.findAll({
logging: console.log,
benchmark: true,
distinct: true,

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MariaDB 10.3 (node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MySQL 5.7 (node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MariaDB 10.3 (node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2019 (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MySQL 5.7 (node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (native) (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2017 (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2017 (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2019 (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MariaDB 10.3 (node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (native) (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MySQL 5.7 (node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2017 (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / MSSQL 2019 (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (native) (sequelize 6 & 7, node 10)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (native) (sequelize 6 & 7, node 14)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 10 (native) (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.

Check failure on line 89 in src/sscce-sequelize-6.ts

View workflow job for this annotation

GitHub Actions / Postgres 9.5 (native) (sequelize 6 & 7, node 16)

Argument of type '{ logging: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; benchmark: true; distinct: boolean; limit: number; offset: number; include: { model: typeof Bar; required: true; where: { ...; }; }; }' is not assignable to parameter of type 'FindOptions<any>'.
Expand Down

0 comments on commit 0a686f5

Please sign in to comment.