Skip to content

Commit

Permalink
chore: package.json parameters (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryDodzin committed Aug 9, 2021
1 parent ff55ace commit bb78cfc
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .changeset/long-lamps-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'iql': patch
---

chore: add package.json keywords, bugs url and homepage params
8 changes: 4 additions & 4 deletions docs/interfaces/iparamaggregator.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ The aggregator, used by the query function to parse and manipulate parameters

### Properties

- [props](iparamaggregator.md#props)
- [props](IParamAggregator.md#props)

### Methods

- [key](iparamaggregator.md#key)
- [value](iparamaggregator.md#value)
- [values](iparamaggregator.md#values)
- [key](IParamAggregator.md#key)
- [value](IParamAggregator.md#value)
- [values](IParamAggregator.md#values)

## Properties

Expand Down
10 changes: 5 additions & 5 deletions docs/interfaces/ipostgresinterval.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Postgres internal representation of intervals

### Properties

- [days](ipostgresinterval.md#days)
- [hours](ipostgresinterval.md#hours)
- [milliseconds](ipostgresinterval.md#milliseconds)
- [minutes](ipostgresinterval.md#minutes)
- [seconds](ipostgresinterval.md#seconds)
- [days](IPostgresInterval.md#days)
- [hours](IPostgresInterval.md#hours)
- [milliseconds](IPostgresInterval.md#milliseconds)
- [minutes](IPostgresInterval.md#minutes)
- [seconds](IPostgresInterval.md#seconds)

## Properties

Expand Down
8 changes: 4 additions & 4 deletions docs/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

### Interfaces

- [IParamAggregator](interfaces/iparamaggregator.md)
- [IPostgresInterval](interfaces/ipostgresinterval.md)
- [IParamAggregator](interfaces/IParamAggregator.md)
- [IPostgresInterval](interfaces/IPostgresInterval.md)

### Type aliases

Expand Down Expand Up @@ -131,7 +131,7 @@ Translates Postgres interval object to string

| Name | Type |
| :------ | :------ |
| `interval` | [`IPostgresInterval`](interfaces/ipostgresinterval.md) |
| `interval` | [`IPostgresInterval`](interfaces/IPostgresInterval.md) |

#### Returns

Expand All @@ -149,7 +149,7 @@ Translates Postgres intervals to milliseconds

| Name | Type | Description |
| :------ | :------ | :------ |
| `interval` | [`IPostgresInterval`](interfaces/ipostgresinterval.md) | IPostgresInterval to translate |
| `interval` | [`IPostgresInterval`](interfaces/IPostgresInterval.md) | IPostgresInterval to translate |

#### Returns

Expand Down
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@
"type": "git",
"url": "ssh://git@github.com/altnext/iql.git"
},
"bugs": {
"url": "https://github.com/Altnext/Altnext/issues"
},
"homepage": "https://altnext.com",
"keywords": [
"sql",
"postgresql",
"postgres",
"no orm",
"nodejs",
"typescript"
],
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
Expand Down

0 comments on commit bb78cfc

Please sign in to comment.