diff --git a/404.html b/404.html index 59196e3f..30b8c408 100644 --- a/404.html +++ b/404.html @@ -14,7 +14,7 @@
Skip to content

404

PAGE NOT FOUND

But if you don't change your direction, and if you keep looking, you may end up where you are heading.
- + \ No newline at end of file diff --git a/guide/cli.html b/guide/cli.html index b9419a5b..1a22c32a 100644 --- a/guide/cli.html +++ b/guide/cli.html @@ -29,7 +29,7 @@ "seed": "ts-node ./node_modules/typeorm-extension/dist/cli/index.js seed" ... }

Hint

Read the Seeding Configuration section to find out how to specify the path, for the seeder- & factory-location.

Options

OptionCommandsDefaultDeprecatedDescription
--root or -rdb:create, db:drop & seedprocess.cwd()noPath to the data-source / config file.
--dataSource or -ddb:create, db:drop & seeddata-sourcenoName of the data-source file.
--synchronize or -sdb:create & db:dropyesnoSynchronize the database schema after database creation. Options: yes or no.
--initialDatabasedb:createundefinednoSpecify the initial database to connect to. This option is only relevant for the postgres driver, which must always to connect to a database. If no database is provided, the database name will be equal to the connection user name.
--seedseedundefinednoSpecify a specific seed class to run.
--connection or -cdb:create, db:drop & seeddefaultyesName of the connection. Required if there are multiple connections.
--config or -fdb:create, db:drop & seedormconfig.jsyesName to the config file.
- + \ No newline at end of file diff --git a/guide/database-api-reference.html b/guide/database-api-reference.html index 3a60d60d..628d7998 100644 --- a/guide/database-api-reference.html +++ b/guide/database-api-reference.html @@ -199,7 +199,7 @@ */ ifExist?: boolean };

References

- + \ No newline at end of file diff --git a/guide/database.html b/guide/database.html index 282fa61c..01b2ff67 100644 --- a/guide/database.html +++ b/guide/database.html @@ -173,7 +173,7 @@ // Drop the database without specifying it manually await dropDatabase(); })();

To get a better overview and understanding of the dropDatabase function go to the functions section and read more about it.

- + \ No newline at end of file diff --git a/guide/datasource-api-reference.html b/guide/datasource-api-reference.html index 0a0ceea2..5d740911 100644 --- a/guide/datasource-api-reference.html +++ b/guide/datasource-api-reference.html @@ -283,7 +283,7 @@ */ preserveFilePaths?: boolean }; - + \ No newline at end of file diff --git a/guide/index.html b/guide/index.html index 7da6752d..bdd62f9b 100644 --- a/guide/index.html +++ b/guide/index.html @@ -17,7 +17,7 @@
Skip to content

What is it?

This is a library to:

  • create, drop & seed the (default-) database 🔥
  • manage one or many data-source instances 👻
  • parse & apply query parameters (extended JSON:API specification & fully typed) to:
    • filter (related) resources according to one or more criteria,
    • reduce (related) resource fields,
    • include related resources,
    • sort resources according to one or more criteria,
    • limit the number of resources returned in a response by page limit & offset

Important NOTE

The guide is under construction ☂ at the moment. So please stay patient or contribute to it, till it covers all parts ⭐.

Limitations

At the moment, only the following typeorm drivers are supported to create or drop a database:

  • CockroachDB
  • MSSQL
  • MySQL
  • Oracle
  • Postgres
  • SQLite
- + \ No newline at end of file diff --git a/guide/installation.html b/guide/installation.html index 14b254b5..416ee2cf 100644 --- a/guide/installation.html +++ b/guide/installation.html @@ -17,7 +17,7 @@
Skip to content

Installation

Add the package as a dependency to the project.

sh
npm install typeorm-extension --save
npm install typeorm-extension --save
- + \ No newline at end of file diff --git a/guide/instances.html b/guide/instances.html index db664303..c400539b 100644 --- a/guide/instances.html +++ b/guide/instances.html @@ -49,7 +49,7 @@ const instance : DataSource = await useDataSource('second'); })();

Reference(s):

- + \ No newline at end of file diff --git a/guide/migration-guide-v3.html b/guide/migration-guide-v3.html index 939215af..329c5e53 100644 --- a/guide/migration-guide-v3.html +++ b/guide/migration-guide-v3.html @@ -25,7 +25,7 @@ // ESM ts-node-esm ./node-modules/typeorm-extension/bin/cli.mjs

General

  1. The seeding command seed has been renamed to seed:run.
  2. The seeding option --seed has been renamed to --name.
  3. The seeding option --root now corresponds to the root directory of the project.
  4. The --dataSource option now can contain the relative path and the name to the data-source.

DataSource

  1. Drop support for ormconfig. The DataSource finder will no longer look for this kind of configuration.
- + \ No newline at end of file diff --git a/guide/query-api-reference.html b/guide/query-api-reference.html index 471f75eb..150274cc 100644 --- a/guide/query-api-reference.html +++ b/guide/query-api-reference.html @@ -197,7 +197,7 @@ import { SortParseOutput } from 'rapiq'; export type QuerySortApplyOutput = SortParseOutput; - + \ No newline at end of file diff --git a/guide/query.html b/guide/query.html index 4ace7059..c64583bc 100644 --- a/guide/query.html +++ b/guide/query.html @@ -409,7 +409,7 @@ }); app.listen(80); - + \ No newline at end of file diff --git a/guide/seeding-api-reference.html b/guide/seeding-api-reference.html index 47507aef..d7a4747e 100644 --- a/guide/seeding-api-reference.html +++ b/guide/seeding-api-reference.html @@ -187,7 +187,7 @@ factories?: SeederFactoryConfig[] | string[], factoriesLoad?: boolean }; - + \ No newline at end of file diff --git a/guide/seeding.html b/guide/seeding.html index f2e780bb..0cf3d250 100644 --- a/guide/seeding.html +++ b/guide/seeding.html @@ -261,7 +261,7 @@ await runSeeders(dataSource); })(); - + \ No newline at end of file diff --git a/hashmap.json b/hashmap.json index bce82799..3819d055 100644 --- a/hashmap.json +++ b/hashmap.json @@ -1 +1 @@ -{"guide_database-api-reference.md":"06af7476","guide_query.md":"6e1a0b15","guide_database.md":"51a2d1ed","guide_seeding-api-reference.md":"63a647d9","guide_seeding.md":"840318a8","guide_datasource-api-reference.md":"0912902c","guide_cli.md":"a311eac1","guide_index.md":"17d5ba2a","index.md":"2872b197","guide_instances.md":"9e030836","guide_installation.md":"a2ffe9fe","guide_migration-guide-v3.md":"28ab11ba","guide_query-api-reference.md":"54f6f73b"} +{"guide_instances.md":"9e030836","guide_index.md":"17d5ba2a","guide_seeding-api-reference.md":"63a647d9","guide_cli.md":"a311eac1","guide_database-api-reference.md":"06af7476","guide_datasource-api-reference.md":"0912902c","guide_migration-guide-v3.md":"28ab11ba","guide_query.md":"6e1a0b15","guide_seeding.md":"840318a8","guide_installation.md":"a2ffe9fe","guide_database.md":"51a2d1ed","guide_query-api-reference.md":"54f6f73b","index.md":"2872b197"} diff --git a/index.html b/index.html index 9b059b8a..0bbdcd70 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@
Skip to content

typeorm-extension

A library to create, drop & seed the database and apply URL query parameter(s).

- + \ No newline at end of file