@dwtechs/antity-pgsql 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  [![License: MIT](https://img.shields.io/npm/l/@dwtechs/antity-pgsql.svg?color=brightgreen)](https://opensource.org/licenses/MIT)
3
- [![npm version](https://badge.fury.io/js/%40dwtechs%2Fantity.svg)](https://www.npmjs.com/package/@dwtechs/antity-pgsql)
3
+ [![npm version](https://badge.fury.io/js/%40dwtechs%2Fantity-pgsql.svg)](https://www.npmjs.com/package/@dwtechs/antity-pgsql)
4
4
  [![last version release date](https://img.shields.io/github/release-date/DWTechs/Antity-pgsql.js)](https://www.npmjs.com/package/@dwtechs/antity-pgsql)
5
5
  ![Jest:coverage](https://img.shields.io/badge/Jest:coverage-100%25-brightgreen.svg)
6
6
  [![minified size](https://img.shields.io/bundlephobia/min/@dwtechs/antity-pgsql?color=brightgreen)](https://www.npmjs.com/package/@dwtechs/antity-pgsql)
@@ -170,11 +170,11 @@ class SQLEntity {
170
170
 
171
171
  query: {
172
172
  select: (paginate: boolean) => string;
173
- update: (chunk: Record<string, unknown>[], consumerId: number | string, consumerName: string) => {
173
+ update: (rows: Record<string, unknown>[], consumerId: number | string, consumerName: string) => {
174
174
  query: string;
175
175
  args: unknown[];
176
176
  };
177
- insert: (chunk: Record<string, unknown>[], consumerId: number | string, consumerName: string, rtn?: string) => {
177
+ insert: (rows: Record<string, unknown>[], consumerId: number | string, consumerName: string, rtn?: string) => {
178
178
  query: string;
179
179
  args: unknown[];
180
180
  };
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@dwtechs/antity-pgsql",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Open source library for easy entity management",
5
5
  "keywords": [
6
6
  "entities"
7
7
  ],
8
- "homepage": "https://github.com/DWTechs/Antity.js",
9
- "main": "dist/antity",
10
- "types": "dist/antity",
8
+ "homepage": "https://github.com/DWTechs/Antity-pgsql.js",
9
+ "main": "dist/antity-pgsql",
10
+ "types": "dist/antity-pgsql",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "https://github.com/DWTechs/Antity.js"
13
+ "url": "https://github.com/DWTechs/Antity-pgsql.js"
14
14
  },
15
15
  "bugs": {
16
- "url": "https://github.com/DWTechs/Antity.js/issues",
16
+ "url": "https://github.com/DWTechs/Antity-pgsql.js/issues",
17
17
  "email": ""
18
18
  },
19
19
  "license": "MIT",