@fairandsmart/consents-ce 2.0.15 → 2.0.18
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/models/interfaces.d.ts +6 -1
- package/package.json +1 -1
package/models/interfaces.d.ts
CHANGED
|
@@ -133,6 +133,11 @@ export interface Objection extends ModelData {
|
|
|
133
133
|
description: string;
|
|
134
134
|
objectByDefault: boolean;
|
|
135
135
|
}
|
|
136
|
+
export interface Splitter extends ModelData {
|
|
137
|
+
type: 'splitter';
|
|
138
|
+
title: string;
|
|
139
|
+
description: string;
|
|
140
|
+
}
|
|
136
141
|
export interface Conditions extends ModelData {
|
|
137
142
|
type: 'conditions';
|
|
138
143
|
title: string;
|
|
@@ -206,7 +211,7 @@ export declare enum ConsentOrigin {
|
|
|
206
211
|
USER = "USER"
|
|
207
212
|
}
|
|
208
213
|
export declare const CONSENT_ORIGIN: ConsentOrigin[];
|
|
209
|
-
export declare type ModelDataType = 'information' | 'processing' | 'conditions' | 'theme' | 'email' | 'preference' | 'layout' | 'notice' | 'objection';
|
|
214
|
+
export declare type ModelDataType = 'information' | 'processing' | 'conditions' | 'theme' | 'email' | 'preference' | 'layout' | 'notice' | 'objection' | 'splitter';
|
|
210
215
|
export declare enum PreviewType {
|
|
211
216
|
FORM = "FORM",
|
|
212
217
|
RECEIPT = "RECEIPT",
|