@feathersjs/feathers 5.0.0-pre.31 → 5.0.0-pre.32
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/CHANGELOG.md +10 -0
- package/README.md +4 -6
- package/lib/declarations.d.ts +6 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/declarations.ts +7 -0
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0-pre.32](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.31...v5.0.0-pre.32) (2022-10-26)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **docs:** Review transport API docs and update Express middleware setup ([#2811](https://github.com/feathersjs/feathers/issues/2811)) ([1b97f14](https://github.com/feathersjs/feathers/commit/1b97f14d474f5613482f259eeaa585c24fcfab43))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **docs:** New website and documentation pages ([#2802](https://github.com/feathersjs/feathers/issues/2802)) ([ae85fa2](https://github.com/feathersjs/feathers/commit/ae85fa216f12f7ff5d15e7039640e27a09989ea4))
|
|
15
|
+
|
|
6
16
|
# [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/README.md
CHANGED
|
@@ -8,19 +8,17 @@
|
|
|
8
8
|
[](https://www.npmjs.com/package/@feathersjs/feathers)
|
|
9
9
|
[](https://discord.gg/qa8kez8QBx)
|
|
10
10
|
|
|
11
|
-
Feathers is a lightweight web-framework for creating real-time applications
|
|
11
|
+
Feathers is a lightweight web-framework for creating APIs and real-time applications using TypeScript or JavaScript.
|
|
12
12
|
|
|
13
|
-
Feathers can interact with any backend technology, supports
|
|
13
|
+
Feathers can interact with any backend technology, supports many databases out of the box and works with any frontend technology like React, VueJS, Angular, React Native, Android or iOS.
|
|
14
14
|
|
|
15
15
|
## Getting started
|
|
16
16
|
|
|
17
17
|
You can build your first real-time and REST API in just 4 commands:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
$ npm
|
|
21
|
-
$
|
|
22
|
-
$ cd my-new-app/
|
|
23
|
-
$ feathers generate app
|
|
20
|
+
$ npm init feathers my-new-app
|
|
21
|
+
$ cd my-new-app
|
|
24
22
|
$ npm start
|
|
25
23
|
```
|
|
26
24
|
|
package/lib/declarations.d.ts
CHANGED
|
@@ -87,6 +87,12 @@ export declare type TransportConnection<Services = any> = {
|
|
|
87
87
|
Service: any;
|
|
88
88
|
service: <L extends keyof Services & string>(name: L) => keyof any extends keyof Services ? ServiceInterface : Services[L];
|
|
89
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* A real-time connection object
|
|
92
|
+
*/
|
|
93
|
+
export interface RealTimeConnection {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
}
|
|
90
96
|
/**
|
|
91
97
|
* The interface for a custom service method. Can e.g. be used to type client side services.
|
|
92
98
|
*/
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "5.0.0-pre.
|
|
1
|
+
declare const _default: "5.0.0-pre.32";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/feathers",
|
|
3
3
|
"description": "A framework for real-time applications and REST API with JavaScript and TypeScript",
|
|
4
|
-
"version": "5.0.0-pre.
|
|
4
|
+
"version": "5.0.0-pre.32",
|
|
5
5
|
"homepage": "http://feathersjs.com",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@feathersjs/commons": "^5.0.0-pre.
|
|
61
|
+
"@feathersjs/commons": "^5.0.0-pre.32",
|
|
62
62
|
"@feathersjs/hooks": "^0.7.5",
|
|
63
63
|
"events": "^3.3.0"
|
|
64
64
|
},
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"ts-node": "^10.9.1",
|
|
71
71
|
"typescript": "^4.8.4"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "b405e205fc6d9fbd42b42c7a3f30ea4bf33d121d"
|
|
74
74
|
}
|
package/src/declarations.ts
CHANGED
|
@@ -134,6 +134,13 @@ export type TransportConnection<Services = any> = {
|
|
|
134
134
|
) => keyof any extends keyof Services ? ServiceInterface : Services[L]
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
/**
|
|
138
|
+
* A real-time connection object
|
|
139
|
+
*/
|
|
140
|
+
export interface RealTimeConnection {
|
|
141
|
+
[key: string]: any
|
|
142
|
+
}
|
|
143
|
+
|
|
137
144
|
/**
|
|
138
145
|
* The interface for a custom service method. Can e.g. be used to type client side services.
|
|
139
146
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '5.0.0-pre.
|
|
1
|
+
export default '5.0.0-pre.32'
|