-
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.
LA-128 Fix docs for region codes (#5511)
Co-authored-by: Lucano Vera <[email protected]>
- Loading branch information
1 parent
2c64212
commit 6fc8086
Showing
6 changed files
with
40 additions
and
21 deletions.
There are no files selected for viewing
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
25 changes: 11 additions & 14 deletions
25
...ides-js/docs/types/PrivacyNoticeRegion.md → .../docs/enumerations/PrivacyNoticeRegion.md
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 |
---|---|---|
@@ -1,21 +1,18 @@ | ||
# Types: PrivacyNoticeRegion | ||
# Enumeration: PrivacyNoticeRegion | ||
|
||
A string that represents a specific region of the world. It is used to specify regions that apply to a [Privacy Experience](/tutorials/consent-management/consent-management-configuration/privacy-experiences#what-are-privacy-experiences). | ||
|
||
The string is formatted with [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166) two-letter codes for a country and subdivisions. They're written in lowercase and separated with an underscore. Subdivisions are currently supported for the United States and Canada. | ||
|
||
The PrivacyNoticeRegion can also be one of the following non-iso standard codes: | ||
|
||
- `eea` : European Economic Area | ||
- `mexico_central_america` : Mexico and Central America | ||
- `eea` : European Economic Area | ||
- `non_eea` : European countries that are not part of the European Economic Area | ||
- `mexico_central_america` : Mexico and Central America | ||
- `caribbean` : Caribbean | ||
|
||
### Example values: | ||
|
||
`us` : United States | ||
`ca` : Canada | ||
`fr` : France | ||
`us_ca` : United States - State of California | ||
`us_ny` : United States - State of New York | ||
`ca_on` : Canada - Ontario Province | ||
`eea` : European Economic Area | ||
- `us` : United States | ||
- `ca` : Canada | ||
- `fr` : France | ||
- `us_ca` : United States - State of California | ||
- `us_ny` : United States - State of New York | ||
- `ca_on` : Canada - Ontario Province | ||
- `eea` : European Economic Area |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* A string that represents a specific region of the world. It is used to specify regions that apply to a [Privacy Experience](/tutorials/consent-management/consent-management-configuration/privacy-experiences#what-are-privacy-experiences). | ||
* The string is formatted with [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166) two-letter codes for a country and subdivisions. They're written in lowercase and separated with an underscore. Subdivisions are currently supported for the United States and Canada. | ||
* The PrivacyNoticeRegion can also be one of the following non-iso standard codes: | ||
* - `eea` : European Economic Area | ||
* - `non_eea` : European countries that are not part of the European Economic Area | ||
* - `mexico_central_america` : Mexico and Central America | ||
* - `caribbean` : Caribbean | ||
* | ||
* ### Example values: | ||
* - `us` : United States | ||
* - `ca` : Canada | ||
* - `fr` : France | ||
* - `us_ca` : United States - State of California | ||
* - `us_ny` : United States - State of New York | ||
* - `ca_on` : Canada - Ontario Province | ||
* - `eea` : European Economic Area | ||
*/ | ||
|
||
export enum PrivacyNoticeRegion {} |