@aeriajs/server 0.0.220 → 0.0.221

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.
@@ -4,6 +4,7 @@ export declare const DEFAULT_API_CONFIG: {
4
4
  defaultPaginationLimit: number;
5
5
  security: {
6
6
  tokenExpiration: number;
7
+ linkTokenExpiration: number;
7
8
  paginationLimit: number;
8
9
  };
9
10
  };
package/dist/constants.js CHANGED
@@ -7,6 +7,7 @@ exports.DEFAULT_API_CONFIG = {
7
7
  defaultPaginationLimit: 10,
8
8
  security: {
9
9
  tokenExpiration: 36000,
10
+ linkTokenExpiration: 36000,
10
11
  paginationLimit: 100,
11
12
  },
12
13
  };
@@ -5,6 +5,7 @@ export const DEFAULT_API_CONFIG = {
5
5
  defaultPaginationLimit: 10,
6
6
  security: {
7
7
  tokenExpiration: 36e3,
8
+ linkTokenExpiration: 36e3,
8
9
  paginationLimit: 100
9
10
  }
10
11
  };
package/dist/init.d.ts CHANGED
@@ -96,6 +96,11 @@ export declare const getToken: (request: GenericRequest, context: RouteContext)
96
96
  readonly fetchItem: true;
97
97
  };
98
98
  };
99
+ readonly copyRedefinePasswordLink: {
100
+ readonly label: "copy_redefine_password_link";
101
+ readonly icon: "link";
102
+ readonly translate: true;
103
+ };
99
104
  readonly copyActivationLink: {
100
105
  readonly label: "copy_activation_link";
101
106
  readonly icon: "link";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/server",
3
- "version": "0.0.220",
3
+ "version": "0.0.221",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,14 +33,14 @@
33
33
  "mongodb": "^6.5.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@aeriajs/core": "^0.0.218",
37
- "@aeriajs/builtins": "^0.0.218",
38
- "@aeriajs/common": "^0.0.126",
39
- "@aeriajs/entrypoint": "^0.0.129",
40
- "@aeriajs/http": "^0.0.152",
41
- "@aeriajs/node-http": "^0.0.152",
42
- "@aeriajs/server": "^0.0.220",
43
- "@aeriajs/types": "^0.0.108",
36
+ "@aeriajs/core": "^0.0.219",
37
+ "@aeriajs/builtins": "^0.0.219",
38
+ "@aeriajs/common": "^0.0.127",
39
+ "@aeriajs/entrypoint": "^0.0.130",
40
+ "@aeriajs/http": "^0.0.153",
41
+ "@aeriajs/node-http": "^0.0.153",
42
+ "@aeriajs/server": "^0.0.221",
43
+ "@aeriajs/types": "^0.0.109",
44
44
  "mongodb": "^6.5.0"
45
45
  },
46
46
  "scripts": {