//#region src/enums/privacyRegime.d.ts /** * Potentially applicable data privacy legal regimes * NOTE: Please make sure that new entries are compatible with GraphQL Enums */ declare enum PrivacyRegimeEnum { /** Unable to determine any applicable regimes */ Unknown = "Unknown", /** California Privacy Rights Act (and CCPA: California Consumer Privacy Act) */ CPRA = "CPRA", /** EU General Data Protection Regulation */ GDPR = "GDPR", /** Brazil Lei Geral de Proteção de Dados (General Personal Data Protection Law) */ LGPD = "LGPD", /** Virginia Consumer Data Protection Act */ CDPA = "CDPA", /** Colorado Privacy Act */ CPA = "CPA", /** Nevada Senate Bill 220 */ NEVADA_SB220 = "NEVADA_SB220", /** Switzerland New Federal Act on Data Protection */ nFADP = "nFADP", /** US Do Not Sell/Share */ US_DNSS = "US_DNSS" } //#endregion export { PrivacyRegimeEnum }; //# sourceMappingURL=privacyRegime.d.mts.map