valtech-components 4.0.994 → 4.0.995
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/esm2022/lib/services/auth/auth.service.mjs +4 -6
- package/esm2022/lib/services/auth/oauth-callback.component.mjs +4 -5
- package/esm2022/lib/services/firebase/firebase.service.mjs +2 -2
- package/esm2022/lib/services/requests/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +8 -11
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/services/requests/types.d.ts +4 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,9 @@ export interface RequestActor {
|
|
|
5
5
|
name: string;
|
|
6
6
|
email: string;
|
|
7
7
|
phone?: string;
|
|
8
|
+
handle?: string;
|
|
9
|
+
avatarUrl?: string;
|
|
10
|
+
avatarThumbnail?: string;
|
|
8
11
|
}
|
|
9
12
|
export interface AppRequest {
|
|
10
13
|
id: string;
|
|
@@ -63,6 +66,7 @@ export interface RequestTypeConfig {
|
|
|
63
66
|
/** Bajada del enunciado (ej. encuestas). Label ya cubre el título. */
|
|
64
67
|
subtitle?: string;
|
|
65
68
|
entityRef?: EntityRef;
|
|
69
|
+
createdBy?: RequestActor;
|
|
66
70
|
/**
|
|
67
71
|
* true = cada envío se agrega, no se revisa uno por uno (ej. encuestas).
|
|
68
72
|
* false/undefined (default) = comportamiento histórico: se revisa cada
|
package/lib/version.d.ts
CHANGED