ng2-rest 16.100.4 → 16.100.5

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.
package/README.md CHANGED
@@ -1,135 +1,135 @@
1
-
2
- ## ng2-rest ##
3
-
4
- Robust isomorphic REST framework for browser (Angular, React etc.) and backend (NodeJS) JavaScript/TypeScript apps.
5
-
6
- Features:
7
- - Compatible with Angular (2+) (newest 13,14 also...) , React, Vue , NodeJS (works everywhere)
8
- - Compatible with RxJS operators (exhaustMap, switchMap, request cancelation etc.)
9
- - Based on [axios](https://axios-http.com/) => excellent alternative to Angular's [HttpClient](https://angular.io/api/common/http/HttpClient)
10
- - JSONP api request handling
11
- - Transfer class instance from server to client and back
12
- - Elegant way of dealing with REST api ( *similar to ExpressJS routes definitions* )
13
-
14
- (more documentation soon... )
15
-
16
- To install this package run:
17
-
18
- npm install ng2-rest --save
19
-
20
- Import Resource class:
21
- ```ts
22
- import { Resource } from 'ng2-rest/browser';
23
- ```
24
-
25
- Resource
26
- ========
27
-
28
- Fit you existing API (not only REST) into new fluent objects with **Resource**
29
- class observables. Use power of **async** in new angular templates;
30
-
31
- **template.html**
32
- ```html
33
- Users:
34
- <ul *ngIf="model.allUsers() | async; else loader; let users" >
35
-
36
- <li *ngFor="let user of users">
37
- {{user.id}} {{user.fullName()}}
38
- <br>
39
- <input type="name" [(NgModel)]="user.name" >
40
- <button (click)="model.update(user)" > Update </button>
41
- </li>
42
-
43
- </ul>
44
-
45
- <ng-template #loader> loading users... </ng-template>
46
-
47
- ```
48
- **component.ts**
49
- ```ts
50
- class User {
51
- name: string;
52
- surname: string;
53
- id: number;
54
-
55
- fullName() {
56
- return `Surname: ${this.surname}, Name: ${this.name}`;
57
- }
58
- }
59
-
60
- // Express.js style url endpoint model
61
- // you can ommit "<User>" part is you don't wanna see response interface
62
- // also you can ommit third argument ",User" is you don't wanna
63
- // map response object to User class objects
64
- const rest = Resource.create<User>("http://yourbackend.com/api","users/:id",{'':User} )
65
-
66
- class UserComponent {
67
-
68
- // Prepare your beautiful interface
69
- model = {
70
- allUsers: () => rest.model()
71
- .array
72
- .get()
73
- .observable // Observable resposne (useful for Angular 2+ html templates)
74
- .pipe( map({ body } => body.json) ) // get all users, body.json => User[]
75
-
76
- userBy: (id) => rest.model({id})
77
- .get() // Promise response by default
78
- .then({ body } => console.log(body.json)) // get user by id, body.json => User
79
-
80
- update: async (user:User) =>{
81
- try {
82
- await rest.model({id:user.id}).put(user) // Promise response by default
83
-
84
- alert('Update sucess')
85
- } catch(e) {
86
- alert(e)
87
- }
88
- }
89
- }
90
-
91
- constructor() { }
92
-
93
- }
94
- ```
95
-
96
- Specification
97
- ============
98
- Example **UrlParams[]** :
99
- `[ { sort: true },{ filter: 'id,5' }, { filter: 'name,test' } ]`
100
-
101
-
102
- | Name | Parameters | Description |
103
- | :---: | --- | ---: |
104
- | **.array.** | get,post,put,head,delete,jsonp | for everything, but with arrays |
105
- | **get** | `UrlParams[] ` | get model by parameters |
106
- | **post** | `model, UrlParams[] ` | post object model |
107
- | **put** | `model, UrlParams[]` | put object model |
108
- | **head** | `model, UrlParams[]` | get head for model |
109
- | **delete** | `UrlParams[]` | remove object by params |
110
- | **jsonp** | `UrlParams[]` | get jsonp data |
111
-
112
-
113
-
114
- # Production mode
115
- ===
116
- Nice things to do in production mode:
117
-
118
- **1. Disable warnings.**
119
-
120
- If you don't wanna see warning, disable it like this:
121
- ```ts
122
- if (environment.production) {
123
- Resource.enableWarnings = false;
124
- }
125
- ```
126
-
127
- # Angular 2+ ngZone
128
- If you are using Angular 2+ you need to do this in your root **app.component**:
129
- ```ts
130
- constructor(zone:NgZone) {
131
- Resource.initAngularNgZone(zone)
132
- }
133
- ```
134
-
135
-
1
+
2
+ ## ng2-rest ##
3
+
4
+ Robust isomorphic REST framework for browser (Angular, React etc.) and backend (NodeJS) JavaScript/TypeScript apps.
5
+
6
+ Features:
7
+ - Compatible with Angular (2+) (newest 13,14 also...) , React, Vue , NodeJS (works everywhere)
8
+ - Compatible with RxJS operators (exhaustMap, switchMap, request cancelation etc.)
9
+ - Based on [axios](https://axios-http.com/) => excellent alternative to Angular's [HttpClient](https://angular.io/api/common/http/HttpClient)
10
+ - JSONP api request handling
11
+ - Transfer class instance from server to client and back
12
+ - Elegant way of dealing with REST api ( *similar to ExpressJS routes definitions* )
13
+
14
+ (more documentation soon... )
15
+
16
+ To install this package run:
17
+
18
+ npm install ng2-rest --save
19
+
20
+ Import Resource class:
21
+ ```ts
22
+ import { Resource } from 'ng2-rest/browser';
23
+ ```
24
+
25
+ Resource
26
+ ========
27
+
28
+ Fit you existing API (not only REST) into new fluent objects with **Resource**
29
+ class observables. Use power of **async** in new angular templates;
30
+
31
+ **template.html**
32
+ ```html
33
+ Users:
34
+ <ul *ngIf="model.allUsers() | async; else loader; let users" >
35
+
36
+ <li *ngFor="let user of users">
37
+ {{user.id}} {{user.fullName()}}
38
+ <br>
39
+ <input type="name" [(NgModel)]="user.name" >
40
+ <button (click)="model.update(user)" > Update </button>
41
+ </li>
42
+
43
+ </ul>
44
+
45
+ <ng-template #loader> loading users... </ng-template>
46
+
47
+ ```
48
+ **component.ts**
49
+ ```ts
50
+ class User {
51
+ name: string;
52
+ surname: string;
53
+ id: number;
54
+
55
+ fullName() {
56
+ return `Surname: ${this.surname}, Name: ${this.name}`;
57
+ }
58
+ }
59
+
60
+ // Express.js style url endpoint model
61
+ // you can ommit "<User>" part is you don't wanna see response interface
62
+ // also you can ommit third argument ",User" is you don't wanna
63
+ // map response object to User class objects
64
+ const rest = Resource.create<User>("http://yourbackend.com/api","users/:id",{'':User} )
65
+
66
+ class UserComponent {
67
+
68
+ // Prepare your beautiful interface
69
+ model = {
70
+ allUsers: () => rest.model()
71
+ .array
72
+ .get()
73
+ .observable // Observable resposne (useful for Angular 2+ html templates)
74
+ .pipe( map({ body } => body.json) ) // get all users, body.json => User[]
75
+
76
+ userBy: (id) => rest.model({id})
77
+ .get() // Promise response by default
78
+ .then({ body } => console.log(body.json)) // get user by id, body.json => User
79
+
80
+ update: async (user:User) =>{
81
+ try {
82
+ await rest.model({id:user.id}).put(user) // Promise response by default
83
+
84
+ alert('Update sucess')
85
+ } catch(e) {
86
+ alert(e)
87
+ }
88
+ }
89
+ }
90
+
91
+ constructor() { }
92
+
93
+ }
94
+ ```
95
+
96
+ Specification
97
+ ============
98
+ Example **UrlParams[]** :
99
+ `[ { sort: true },{ filter: 'id,5' }, { filter: 'name,test' } ]`
100
+
101
+
102
+ | Name | Parameters | Description |
103
+ | :---: | --- | ---: |
104
+ | **.array.** | get,post,put,head,delete,jsonp | for everything, but with arrays |
105
+ | **get** | `UrlParams[] ` | get model by parameters |
106
+ | **post** | `model, UrlParams[] ` | post object model |
107
+ | **put** | `model, UrlParams[]` | put object model |
108
+ | **head** | `model, UrlParams[]` | get head for model |
109
+ | **delete** | `UrlParams[]` | remove object by params |
110
+ | **jsonp** | `UrlParams[]` | get jsonp data |
111
+
112
+
113
+
114
+ # Production mode
115
+ ===
116
+ Nice things to do in production mode:
117
+
118
+ **1. Disable warnings.**
119
+
120
+ If you don't wanna see warning, disable it like this:
121
+ ```ts
122
+ if (environment.production) {
123
+ Resource.enableWarnings = false;
124
+ }
125
+ ```
126
+
127
+ # Angular 2+ ngZone
128
+ If you are using Angular 2+ you need to do this in your root **app.component**:
129
+ ```ts
130
+ constructor(zone:NgZone) {
131
+ Resource.initAngularNgZone(zone)
132
+ }
133
+ ```
134
+
135
+
@@ -1,6 +1,6 @@
1
1
  THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.
2
2
 
3
- Assets from this folder are being shipped with this npm package (ng2-rest@16.100.4)
3
+ Assets from this folder are being shipped with this npm package (ng2-rest@16.100.5)
4
4
  created from this project.
5
5
 
6
6
  THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
package/browser/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
package/client/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -53,7 +53,7 @@
53
53
  "workerPlugins": {}
54
54
  },
55
55
  "name": "ng2-rest",
56
- "version": "16.100.4",
56
+ "version": "16.100.5",
57
57
  "scripts": {
58
58
  "build:watch": "npm-run watch \"morphi build\" src"
59
59
  },
@@ -79,14 +79,14 @@
79
79
  "@types/lodash": "4.14.92",
80
80
  "axios": "1.3.5",
81
81
  "diff": "3.2.0",
82
- "json10": "16.100.4",
82
+ "json10": "16.100.5",
83
83
  "json5": "2.2.1",
84
84
  "lodash": "4.17.20",
85
- "ng2-logger": "16.100.7"
85
+ "ng2-logger": "16.100.8"
86
86
  },
87
87
  "license": "MIT",
88
88
  "private": false,
89
- "lastBuildTagHash": "90f3fd9cafcaa142417fa56980f35e25b4ef2f33",
89
+ "lastBuildTagHash": "131b5bbfb422231110b92eae24ec69647d6f1db5",
90
90
  "devDependencies": {
91
91
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
92
92
  "@angular-devkit/build-angular": "~16.0.5",
@@ -166,7 +166,7 @@
166
166
  "angular-material-css-vars": "5.0.2",
167
167
  "angular-resize-event": "3.2.0",
168
168
  "animate.css": "4.1.1 ",
169
- "any-project-cli": "16.100.7",
169
+ "any-project-cli": "16.100.8",
170
170
  "background-worker-process": "16.100.4",
171
171
  "base32": "0.0.7",
172
172
  "bcryptjs": "2.4.3",
@@ -214,13 +214,13 @@
214
214
  "file-saver": "2.0.5",
215
215
  "file-type": "18.5.0",
216
216
  "firedev": "^16",
217
- "firedev-crud": "16.100.6",
218
- "firedev-crud-deamon": "16.100.6",
219
- "firedev-ports": "16.100.6",
220
- "firedev-storage": "16.100.3",
221
- "firedev-type-sql": "16.100.3",
222
- "firedev-typeorm": "16.100.3",
223
- "firedev-ui": "16.100.5",
217
+ "firedev-crud": "16.100.7",
218
+ "firedev-crud-deamon": "16.100.7",
219
+ "firedev-ports": "16.100.7",
220
+ "firedev-storage": "16.100.4",
221
+ "firedev-type-sql": "16.100.4",
222
+ "firedev-typeorm": "16.100.4",
223
+ "firedev-ui": "16.100.7",
224
224
  "fkill": "6.1.0",
225
225
  "font-awesome": "4.7.0",
226
226
  "form-data": "4.0.0",
@@ -238,11 +238,11 @@
238
238
  "image-focus": "1.2.1",
239
239
  "immer": "10.0.2",
240
240
  "immutable": "4.3.0",
241
- "incremental-compiler": "16.100.7",
241
+ "incremental-compiler": "16.100.8",
242
242
  "inquirer": "7.3.3",
243
243
  "inquirer-autocomplete-prompt": "1.3.0",
244
244
  "is-elevated": "3.0.0",
245
- "isomorphic-region-loader": "16.100.6",
245
+ "isomorphic-region-loader": "16.100.7",
246
246
  "istanbul-instrumenter-loader": "2.0.0",
247
247
  "jest": "29.5.0",
248
248
  "jest-date-mock": "1.0.8",
@@ -253,16 +253,16 @@
253
253
  "joi": "17.9.2",
254
254
  "jscodeshift": "0.6.3",
255
255
  "json-stringify-safe": "5.0.1",
256
- "json10-writer": "16.100.7",
256
+ "json10-writer": "16.100.8",
257
257
  "json5-writer": "0.2.0",
258
258
  "jszip": "3.10.1",
259
259
  "karma-cli": "1.0.1",
260
260
  "lnk": "1.0.1",
261
261
  "localforage": "1.10.0",
262
262
  "lockfile": "1.0.4",
263
- "lodash-walk-object": "16.100.4",
263
+ "lodash-walk-object": "16.100.5",
264
264
  "lowdb": "7.0.1",
265
- "magic-renamer": "16.100.6",
265
+ "magic-renamer": "16.100.7",
266
266
  "material-design-icons": "3.0.1",
267
267
  "method-override": "2.3.10",
268
268
  "minimist": "1.2.0",
@@ -273,9 +273,9 @@
273
273
  "ng-in-viewport": "15.0.2",
274
274
  "ng-lock": "16.0.1",
275
275
  "ng-packagr": "16.0.1",
276
- "ng-talkback": "16.100.3",
276
+ "ng-talkback": "16.100.4",
277
277
  "ng2-pdfjs-viewer": "16.0.4",
278
- "ng2-rest": "16.100.3",
278
+ "ng2-rest": "16.100.4",
279
279
  "ngx-ace-wrapper": "14.0.0",
280
280
  "ngx-editor": "15.3.0",
281
281
  "ngx-highlightjs": "9.0.0",
@@ -288,7 +288,7 @@
288
288
  "ngx-scrolltop": "6.0.0",
289
289
  "ngx-store": "3.1.1",
290
290
  "ngx-typed-js": "2.1.1",
291
- "node-cli-tester": "16.100.3",
291
+ "node-cli-tester": "16.100.4",
292
292
  "node-localstorage": "2.1.6",
293
293
  "node-notifier": "6.0.0",
294
294
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -316,7 +316,7 @@
316
316
  "q": "1.5.1",
317
317
  "rallax.js": "2.0.4",
318
318
  "randomcolor": "0.5.3",
319
- "record-replay-req-res-scenario": "16.100.3",
319
+ "record-replay-req-res-scenario": "16.100.4",
320
320
  "reflect-metadata": "0.1.10",
321
321
  "rimraf": "2.6.2",
322
322
  "rxjs": "~7.8.0",
@@ -327,7 +327,7 @@
327
327
  "socket.io": "2.4.1",
328
328
  "sort-package-json": "1.11.0",
329
329
  "sql.js": "1.8.0",
330
- "static-columns": "16.100.3",
330
+ "static-columns": "16.100.4",
331
331
  "string-similarity": "4.0.2",
332
332
  "sudo-block": "3.0.0",
333
333
  "supertest": "6.3.3",
@@ -335,12 +335,12 @@
335
335
  "systeminformation": "3.45.7",
336
336
  "task.js": "0.1.5",
337
337
  "threads": "1.7.0",
338
- "tnp-cli": "16.100.3",
339
- "tnp-config": "16.100.7",
340
- "tnp-core": "16.100.17",
341
- "tnp-db": "16.100.6",
342
- "tnp-helpers": "16.100.7",
343
- "tnp-models": "16.100.7",
338
+ "tnp-cli": "16.100.4",
339
+ "tnp-config": "16.100.8",
340
+ "tnp-core": "16.100.19",
341
+ "tnp-db": "16.100.7",
342
+ "tnp-helpers": "16.100.9",
343
+ "tnp-models": "16.100.8",
344
344
  "ts-debug": "1.3.0",
345
345
  "ts-json-schema-generator": "2.1.1",
346
346
  "ts-loader": "2.3.1",
@@ -349,13 +349,13 @@
349
349
  "tslint": "5.9.1",
350
350
  "turndown": "7.1.2",
351
351
  "typescript": "~5.0.2",
352
- "typescript-class-helpers": "~16.100.7",
352
+ "typescript-class-helpers": "~16.100.8",
353
353
  "typescript-formatter": "~7.2.2",
354
354
  "underscore": "1.9.1",
355
355
  "uuid": "8.3.2",
356
356
  "validator": "9.2.0",
357
357
  "video.js": "8.3.0",
358
- "vpn-split": "16.100.3",
358
+ "vpn-split": "16.100.4",
359
359
  "watch": "1.0.2",
360
360
  "webpack": "~5.80",
361
361
  "webpack-dev-middleware": "~6.0.2",
package/firedev.jsonc CHANGED
@@ -1,44 +1,44 @@
1
- {
2
- "resources": ["README.md"],
3
- "overrided": {
4
- "dependencies": {},
5
- "includeAsDev": [],
6
- "includeOnly": [
7
- "@types/diff",
8
- "diff",
9
- "axios",
10
- "lodash",
11
- "@types/lodash",
12
- "ng2-logger",
13
- "json5",
14
- "json10",
15
- ],
16
- "ignoreDepsPattern": [],
17
- "linkedFolders": [],
18
- "npmFixes": [],
19
- },
20
- "smartContainerBuildTarget": "",
21
- "linkedRepos": [],
22
- "libReleaseOptions": {
23
- "nodts": false,
24
- "obscure": false,
25
- "ugly": false,
26
- "includeNodeModules": false,
27
- "cliBuildNoDts": false,
28
- "cliBuildObscure": false,
29
- "cliBuildIncludeNodeModules": false,
30
- "cliBuildUglify": false,
31
- },
32
- "smartContainerTarget": "",
33
- "type": "isomorphic-lib",
34
- "version": "v4",
35
- "additionalNpmNames": ["firedev-rest"],
36
- "license": "MIT",
37
- "private": false,
38
- "author": {
39
- "name": "Dariusz Filipiak",
40
- },
41
- "homepage": "https://github.com/darekf77/ng2-rest#readme",
42
- "keywords": ["isomorphic", "logger", "log", "typescript"],
43
- "workerPlugins": {},
44
- }
1
+ {
2
+ "resources": ["README.md"],
3
+ "overrided": {
4
+ "dependencies": {},
5
+ "includeAsDev": [],
6
+ "includeOnly": [
7
+ "@types/diff",
8
+ "diff",
9
+ "axios",
10
+ "lodash",
11
+ "@types/lodash",
12
+ "ng2-logger",
13
+ "json5",
14
+ "json10",
15
+ ],
16
+ "ignoreDepsPattern": [],
17
+ "linkedFolders": [],
18
+ "npmFixes": [],
19
+ },
20
+ "smartContainerBuildTarget": "",
21
+ "linkedRepos": [],
22
+ "libReleaseOptions": {
23
+ "nodts": false,
24
+ "obscure": false,
25
+ "ugly": false,
26
+ "includeNodeModules": false,
27
+ "cliBuildNoDts": false,
28
+ "cliBuildObscure": false,
29
+ "cliBuildIncludeNodeModules": false,
30
+ "cliBuildUglify": false,
31
+ },
32
+ "smartContainerTarget": "",
33
+ "type": "isomorphic-lib",
34
+ "version": "v4",
35
+ "additionalNpmNames": ["firedev-rest"],
36
+ "license": "MIT",
37
+ "private": false,
38
+ "author": {
39
+ "name": "Dariusz Filipiak",
40
+ },
41
+ "homepage": "https://github.com/darekf77/ng2-rest#readme",
42
+ "keywords": ["isomorphic", "logger", "log", "typescript"],
43
+ "workerPlugins": {},
44
+ }
package/package.json CHANGED
@@ -53,7 +53,7 @@
53
53
  "workerPlugins": {}
54
54
  },
55
55
  "name": "ng2-rest",
56
- "version": "16.100.4",
56
+ "version": "16.100.5",
57
57
  "scripts": {
58
58
  "build:watch": "npm-run watch \"morphi build\" src"
59
59
  },
@@ -79,14 +79,14 @@
79
79
  "@types/lodash": "4.14.92",
80
80
  "axios": "1.3.5",
81
81
  "diff": "3.2.0",
82
- "json10": "16.100.4",
82
+ "json10": "16.100.5",
83
83
  "json5": "2.2.1",
84
84
  "lodash": "4.17.20",
85
- "ng2-logger": "16.100.7"
85
+ "ng2-logger": "16.100.8"
86
86
  },
87
87
  "license": "MIT",
88
88
  "private": false,
89
- "lastBuildTagHash": "90f3fd9cafcaa142417fa56980f35e25b4ef2f33",
89
+ "lastBuildTagHash": "131b5bbfb422231110b92eae24ec69647d6f1db5",
90
90
  "devDependencies": {},
91
91
  "main": "dist/app.electron.js"
92
92
  }
@@ -57,7 +57,7 @@
57
57
  "workerPlugins": {}
58
58
  },
59
59
  "name": "ng2-rest",
60
- "version": "16.100.4",
60
+ "version": "16.100.5",
61
61
  "scripts": {
62
62
  "build:watch": "npm-run watch \"morphi build\" src"
63
63
  },
@@ -83,14 +83,14 @@
83
83
  "@types/lodash": "4.14.92",
84
84
  "axios": "1.3.5",
85
85
  "diff": "3.2.0",
86
- "json10": "16.100.4",
86
+ "json10": "16.100.5",
87
87
  "json5": "2.2.1",
88
88
  "lodash": "4.17.20",
89
- "ng2-logger": "16.100.7"
89
+ "ng2-logger": "16.100.8"
90
90
  },
91
91
  "license": "MIT",
92
92
  "private": false,
93
- "lastBuildTagHash": "90f3fd9cafcaa142417fa56980f35e25b4ef2f33",
93
+ "lastBuildTagHash": "131b5bbfb422231110b92eae24ec69647d6f1db5",
94
94
  "devDependencies": {
95
95
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
96
96
  "@angular-devkit/build-angular": "~16.0.5",
@@ -170,7 +170,7 @@
170
170
  "angular-material-css-vars": "5.0.2",
171
171
  "angular-resize-event": "3.2.0",
172
172
  "animate.css": "4.1.1 ",
173
- "any-project-cli": "16.100.7",
173
+ "any-project-cli": "16.100.8",
174
174
  "background-worker-process": "16.100.4",
175
175
  "base32": "0.0.7",
176
176
  "bcryptjs": "2.4.3",
@@ -218,13 +218,13 @@
218
218
  "file-saver": "2.0.5",
219
219
  "file-type": "18.5.0",
220
220
  "firedev": "^16",
221
- "firedev-crud": "16.100.6",
222
- "firedev-crud-deamon": "16.100.6",
223
- "firedev-ports": "16.100.6",
224
- "firedev-storage": "16.100.3",
225
- "firedev-type-sql": "16.100.3",
226
- "firedev-typeorm": "16.100.3",
227
- "firedev-ui": "16.100.5",
221
+ "firedev-crud": "16.100.7",
222
+ "firedev-crud-deamon": "16.100.7",
223
+ "firedev-ports": "16.100.7",
224
+ "firedev-storage": "16.100.4",
225
+ "firedev-type-sql": "16.100.4",
226
+ "firedev-typeorm": "16.100.4",
227
+ "firedev-ui": "16.100.7",
228
228
  "fkill": "6.1.0",
229
229
  "font-awesome": "4.7.0",
230
230
  "form-data": "4.0.0",
@@ -242,11 +242,11 @@
242
242
  "image-focus": "1.2.1",
243
243
  "immer": "10.0.2",
244
244
  "immutable": "4.3.0",
245
- "incremental-compiler": "16.100.7",
245
+ "incremental-compiler": "16.100.8",
246
246
  "inquirer": "7.3.3",
247
247
  "inquirer-autocomplete-prompt": "1.3.0",
248
248
  "is-elevated": "3.0.0",
249
- "isomorphic-region-loader": "16.100.6",
249
+ "isomorphic-region-loader": "16.100.7",
250
250
  "istanbul-instrumenter-loader": "2.0.0",
251
251
  "jest": "29.5.0",
252
252
  "jest-date-mock": "1.0.8",
@@ -257,16 +257,16 @@
257
257
  "joi": "17.9.2",
258
258
  "jscodeshift": "0.6.3",
259
259
  "json-stringify-safe": "5.0.1",
260
- "json10-writer": "16.100.7",
260
+ "json10-writer": "16.100.8",
261
261
  "json5-writer": "0.2.0",
262
262
  "jszip": "3.10.1",
263
263
  "karma-cli": "1.0.1",
264
264
  "lnk": "1.0.1",
265
265
  "localforage": "1.10.0",
266
266
  "lockfile": "1.0.4",
267
- "lodash-walk-object": "16.100.4",
267
+ "lodash-walk-object": "16.100.5",
268
268
  "lowdb": "7.0.1",
269
- "magic-renamer": "16.100.6",
269
+ "magic-renamer": "16.100.7",
270
270
  "material-design-icons": "3.0.1",
271
271
  "method-override": "2.3.10",
272
272
  "minimist": "1.2.0",
@@ -277,9 +277,9 @@
277
277
  "ng-in-viewport": "15.0.2",
278
278
  "ng-lock": "16.0.1",
279
279
  "ng-packagr": "16.0.1",
280
- "ng-talkback": "16.100.3",
280
+ "ng-talkback": "16.100.4",
281
281
  "ng2-pdfjs-viewer": "16.0.4",
282
- "ng2-rest": "16.100.3",
282
+ "ng2-rest": "16.100.4",
283
283
  "ngx-ace-wrapper": "14.0.0",
284
284
  "ngx-editor": "15.3.0",
285
285
  "ngx-highlightjs": "9.0.0",
@@ -292,7 +292,7 @@
292
292
  "ngx-scrolltop": "6.0.0",
293
293
  "ngx-store": "3.1.1",
294
294
  "ngx-typed-js": "2.1.1",
295
- "node-cli-tester": "16.100.3",
295
+ "node-cli-tester": "16.100.4",
296
296
  "node-localstorage": "2.1.6",
297
297
  "node-notifier": "6.0.0",
298
298
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -320,7 +320,7 @@
320
320
  "q": "1.5.1",
321
321
  "rallax.js": "2.0.4",
322
322
  "randomcolor": "0.5.3",
323
- "record-replay-req-res-scenario": "16.100.3",
323
+ "record-replay-req-res-scenario": "16.100.4",
324
324
  "reflect-metadata": "0.1.10",
325
325
  "rimraf": "2.6.2",
326
326
  "rxjs": "~7.8.0",
@@ -331,7 +331,7 @@
331
331
  "socket.io": "2.4.1",
332
332
  "sort-package-json": "1.11.0",
333
333
  "sql.js": "1.8.0",
334
- "static-columns": "16.100.3",
334
+ "static-columns": "16.100.4",
335
335
  "string-similarity": "4.0.2",
336
336
  "sudo-block": "3.0.0",
337
337
  "supertest": "6.3.3",
@@ -339,12 +339,12 @@
339
339
  "systeminformation": "3.45.7",
340
340
  "task.js": "0.1.5",
341
341
  "threads": "1.7.0",
342
- "tnp-cli": "16.100.3",
343
- "tnp-config": "16.100.7",
344
- "tnp-core": "16.100.17",
345
- "tnp-db": "16.100.6",
346
- "tnp-helpers": "16.100.7",
347
- "tnp-models": "16.100.7",
342
+ "tnp-cli": "16.100.4",
343
+ "tnp-config": "16.100.8",
344
+ "tnp-core": "16.100.19",
345
+ "tnp-db": "16.100.7",
346
+ "tnp-helpers": "16.100.9",
347
+ "tnp-models": "16.100.8",
348
348
  "ts-debug": "1.3.0",
349
349
  "ts-json-schema-generator": "2.1.1",
350
350
  "ts-loader": "2.3.1",
@@ -353,13 +353,13 @@
353
353
  "tslint": "5.9.1",
354
354
  "turndown": "7.1.2",
355
355
  "typescript": "~5.0.2",
356
- "typescript-class-helpers": "~16.100.7",
356
+ "typescript-class-helpers": "~16.100.8",
357
357
  "typescript-formatter": "~7.2.2",
358
358
  "underscore": "1.9.1",
359
359
  "uuid": "8.3.2",
360
360
  "validator": "9.2.0",
361
361
  "video.js": "8.3.0",
362
- "vpn-split": "16.100.3",
362
+ "vpn-split": "16.100.4",
363
363
  "watch": "1.0.2",
364
364
  "webpack": "~5.80",
365
365
  "webpack-dev-middleware": "~6.0.2",
@@ -370,14 +370,14 @@
370
370
  "main": "dist/app.electron.js"
371
371
  },
372
372
  "build": {
373
- "number": 911,
374
- "date": "2024-05-20T11:14:26.000Z",
375
- "hash": "131b5bbfb422231110b92eae24ec69647d6f1db5"
373
+ "number": 912,
374
+ "date": "2024-05-21T03:19:01.000Z",
375
+ "hash": "486225e273743c84dffa284331081cbc6f6df9d5"
376
376
  },
377
377
  "currentProjectName": "ng2-rest",
378
378
  "currentProjectGenericName": "ng2-rest",
379
379
  "currentProjectType": "isomorphic-lib",
380
- "currentFrameworkVersion": "16.100.7",
380
+ "currentFrameworkVersion": "16.100.10",
381
381
  "isStandaloneProject": true,
382
382
  "isSmartContainer": false,
383
383
  "pathesTsconfig": "\"paths\": {\"ng2-rest\":[\"./src/lib\"],\"ng2-rest/*\":[\"./src/lib/*\"]},",
package/websql/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.