-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TCF Legal Basis Dimension for Saving Preferences (#4201)
- Backend overhaul against which fields we're saving preferences for TCF related to legal basis - New sections for TCF Experience - FE integrated related to legal basis - Privacy Preferences can be saved via TC string - Updated response to saving privacy preferences Co-authored-by: Allison King <[email protected]>
- Loading branch information
1 parent
ac5ea2d
commit 3c767c4
Showing
116 changed files
with
6,558 additions
and
2,581 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
clients/admin-ui/src/types/api/models/ConsentSettingsRequestSchema.ts
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
clients/admin-ui/src/types/api/models/ConsentSettingsResponseSchema.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { TCMobileData } from "./TCMobileData"; | ||
|
||
/** | ||
* Supplements experience with developer-friendly meta information | ||
*/ | ||
export type ExperienceMeta = { | ||
/** | ||
* A hashed value that can be compared to previously-fetched hash values to determine if the Experience has meaningfully changed | ||
*/ | ||
version_hash?: string; | ||
/** | ||
* The TC string corresponding to a user opting in to all available options | ||
*/ | ||
accept_all_tc_string?: string; | ||
accept_all_tc_mobile_data?: TCMobileData; | ||
/** | ||
* The TC string corresponding to a user opting out of all available options | ||
*/ | ||
reject_all_tc_string?: string; | ||
reject_all_tc_mobile_data?: TCMobileData; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
clients/admin-ui/src/types/api/models/SavePrivacyPreferencesResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CurrentPrivacyPreferenceSchema } from "./CurrentPrivacyPreferenceSchema"; | ||
|
||
/** | ||
* Response schema when saving privacy preferences | ||
*/ | ||
export type SavePrivacyPreferencesResponse = { | ||
preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
purpose_consent_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
purpose_legitimate_interests_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
special_purpose_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
vendor_consent_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
vendor_legitimate_interests_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
feature_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
special_feature_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
system_consent_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
system_legitimate_interests_preferences?: Array<CurrentPrivacyPreferenceSchema>; | ||
}; |
14 changes: 0 additions & 14 deletions
14
clients/admin-ui/src/types/api/models/TCFDataCategoryRecord.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.