@fairandsmart/consents-ce 1.3.8 → 1.3.11
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/consents/interfaces.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export interface ConsentContext {
|
|
|
41
41
|
validity?: string;
|
|
42
42
|
/** Specifies whether the consent can be updated afterwards. */
|
|
43
43
|
updatable?: boolean;
|
|
44
|
+
/** Silent Consent collect disable fetching existing values for the declared subject */
|
|
45
|
+
silent?: boolean;
|
|
44
46
|
/** Any relevant informations about the user that will be persisted in the receipt */
|
|
45
47
|
userinfos?: {
|
|
46
48
|
[key: string]: string;
|
|
@@ -63,8 +65,10 @@ export interface ConsentContext {
|
|
|
63
65
|
confirmationConfig?: {
|
|
64
66
|
[key: string]: string;
|
|
65
67
|
};
|
|
66
|
-
/**
|
|
67
|
-
|
|
68
|
+
/** The reference to the 'theme' that will apply */
|
|
69
|
+
theme?: string;
|
|
70
|
+
/** The reference to the 'email' mode for notification */
|
|
71
|
+
notification?: string;
|
|
68
72
|
}
|
|
69
73
|
/** Used to generate a Receipt from a transaction id */
|
|
70
74
|
export interface ConsentTransaction {
|
package/models/interfaces.d.ts
CHANGED
|
@@ -147,8 +147,6 @@ export interface FormLayout extends ModelData {
|
|
|
147
147
|
type: 'layout';
|
|
148
148
|
info: string;
|
|
149
149
|
elements: string[];
|
|
150
|
-
theme?: string;
|
|
151
|
-
notification?: string;
|
|
152
150
|
orientation?: FormLayoutOrientation;
|
|
153
151
|
existingElementsVisible?: boolean;
|
|
154
152
|
validityVisible?: boolean;
|