@aeriajs/types 0.0.136 → 0.0.137
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 +2 -3
- package/dist/http.d.ts +1 -0
- package/dist/http.js +1 -0
- package/dist/property.d.ts +1 -0
- package/dist/validation.d.ts +1 -0
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -47,10 +47,9 @@ export type ApiConfig = {
|
|
|
47
47
|
linkTokenExpiration?: number | undefined;
|
|
48
48
|
logSuccessfulAuthentications?: boolean;
|
|
49
49
|
authenticationRateLimiting?: RateLimitingParams | null;
|
|
50
|
-
allowSignup?: boolean;
|
|
51
50
|
mutableUserProperties: (keyof CollectionItem<'user'>)[];
|
|
52
|
-
|
|
53
|
-
roles
|
|
51
|
+
signup?: {
|
|
52
|
+
roles: readonly UserRole[];
|
|
54
53
|
active?: boolean;
|
|
55
54
|
};
|
|
56
55
|
paginationLimit?: number;
|
package/dist/http.d.ts
CHANGED
package/dist/http.js
CHANGED
package/dist/property.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export type PropertyBase = {
|
|
|
121
121
|
noLabel?: boolean;
|
|
122
122
|
hidden?: boolean;
|
|
123
123
|
isTimestamp?: boolean;
|
|
124
|
+
validationMessage?: string;
|
|
124
125
|
};
|
|
125
126
|
export type Property = PropertyBase & MixedProperty;
|
|
126
127
|
export type NonCircularProperty = PropertyBase & NonCircularMixedProperty;
|
package/dist/validation.d.ts
CHANGED