@aeriajs/types 0.0.107 → 0.0.109

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/dist/config.d.ts CHANGED
@@ -7,6 +7,7 @@ export type ApiConfig = {
7
7
  secret?: string;
8
8
  baseUrl?: RouteUri;
9
9
  publicUrl?: string;
10
+ webPublicUrl?: string;
10
11
  host?: string;
11
12
  port?: number;
12
13
  defaultPaginationLimit?: number;
@@ -25,7 +26,8 @@ export type ApiConfig = {
25
26
  password: string;
26
27
  };
27
28
  security: {
28
- tokenExpiration?: number;
29
+ tokenExpiration?: number | undefined;
30
+ linkTokenExpiration?: number | undefined;
29
31
  logSuccessfulAuthentications?: boolean;
30
32
  authenticationRateLimiting?: RateLimitingParams | null;
31
33
  allowSignup?: boolean;
@@ -15,6 +15,9 @@ export type Pagination = {
15
15
  offset: number;
16
16
  limit: number;
17
17
  };
18
+ export type TempId = {
19
+ tempId: string;
20
+ };
18
21
  type FilterProperty<T> = T extends ObjectId ? T | string : T;
19
22
  type DocumentFilter<TDocument> = PackReferences<TDocument> extends infer Document ? {
20
23
  [P in keyof Document]: null | (Document[P] extends (infer E)[] ? FilterProperty<E>[] : FilterProperty<Document[P]>);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/types",
3
- "version": "0.0.107",
3
+ "version": "0.0.109",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",