-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Update to the latest IMA SDK OMID API solves: FEC-11789
- Loading branch information
1 parent
bf2ecc4
commit ccd1331
Showing
8 changed files
with
3,490 additions
and
2,988 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 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,22 @@ | ||
// @flow | ||
|
||
/** | ||
* {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/omsdk#access_modes different access modes for verification scripts} | ||
* @typedef AccessMode | ||
* @type { 'FULL' | 'CREATIVE' | 'DOMAIN' | 'LIMITED'} | ||
*/ | ||
declare type AccessMode = 'FULL' | 'CREATIVE' | 'DOMAIN' | 'LIMITED'; | ||
|
||
/** | ||
* A dictionary that maps each {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima#.OmidVerificationVendor OmidVerificationVendor} to one of the {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/omsdk#access_modes available access modes} | ||
* @typedef OmidAccessModesConfig | ||
* @example | ||
* { | ||
* MOAT: 'FULL' | ||
* PIXELATE: 'CREATIVE' | ||
* OTHER: 'DOMAIN' | ||
* } | ||
*/ | ||
declare type OmidAccessModesConfig = { | ||
[string]: AccessMode | ||
} |
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
Oops, something went wrong.