The release of the 3.0
version of the library introduced many breaking changes in the API.
This document is provided to support migration from a 2.x
to a 3.x
version of the library.
- Companion value
type: String
is now only associated tostaticResources
and renamed tocreativeType
- Changed companion value
htmlResource: String
tohtmlResources: Array<String>
- Changed companion value
iframeResource: String
toiframeResources: Array<String>
- Changed companion value
staticResource: String
tostaticResources: Array<{url: String, creativeType: String|null}>
Each Extension
now has the format:
name: String|null
- extension namevalue: any
- value inside extension (if it is another node it will be passed into children instead)attributes: Object
- attributes of extensionchildren: Array<Extension>
- children nodes in the extension. They will be parsed withExtension
format.
Extension won't be added to the parsed result if it contains no value, attributes and children. Comments and empty strings will be ignored.
For example, this extension:
<Extensions>
<Extension>
{ foo: bar }
</Extension>
<Extension type="Pricing">
<Prices>
<Price model="CPM" currency="USD" source="someone">
<![CDATA[ 0 ]]>
</Price>
<Price model="CPM" currency="USD" source="someone">
<![CDATA[ 234.5 ]]>
</Price>
</Prices>
<PricingPolicy>
<!-- Test of comment -->
<![CDATA[http://example.com/pricing-policy.html]]>
</PricingPolicy>
</Extension>
<Extension type="OverlyNestedExtension">
<GreatFather age="70">
<Father age="40" alive="false">
<Daughter age="20">Maria</Daughter>
<Daughter age="20">Lola</Daughter>
<Son age="25">Paul</Son>
</Father>
</GreatFather>
</Extension>
</Extensions>
Would be parsed as:
{
extensions: [
{
name:"Extension",
value:"{ foo: bar }",
attributes:{},
children:[]
},
{
name:"Extension",
value:null,
attributes:{"type":"Pricing"},
children:[
{
name:"Prices",
value:null,
attributes:{},
children:[
{
name:"Price",
value:"0",
attributes:{"model":"CPM","currency":"USD","source":"someone"},
children:[]
},
{
name:"Price",
value:"234.5",
attributes:{"model":"CPM","currency":"USD","source":"someone"},
children:[]
}
]
},
{
name:"PricingPolicy",
value:"http://example.com/pricing-policy.html",
attributes:{},
children:[]
}
]
},
{
name:"Extension",
value:null,
attributes:{"type":"OverlyNestedExtension"},
children:[
{
name:"GreatFather",
value:null,
attributes:{"age":"70"},
children:[
{
name:"Father",
value:null,
attributes:{"age":"40","alive":"false"},
children:[
{
name:"Daughter",
value:"Maria",
attributes:{"age":"20"},
children:[]
},
{
name:"Daughter",
value:"Lola",
attributes:{"age":"20"},
children:[]
},
{
name:"Son",
value:"Paul",
attributes:{"age":"25"},
children:[]
}
]
}
]
}
]
}
]
}
Vast-client now uses babel 7, so direct uses of the package src
folder will need babel 7 in its own package to work.
A lighter custom class with the same syntax has been created to replace nodeJS EventEmitter. API docs for custom class described here.
module
package.json entry with pre-build files has been replaced with browser
entry pointing towards already built files. This is to facilitate packages still using babel 6 (as it is not compatible with babel 7). Check README file for more detailed info.
Previously companion ads in Wrapper
elements were being ignored. companionClickTrackingURLTemplates
from wrapper companion ads are passed down to other companion ads.
Some attributes have been changed to include id
values. Changes have been done to:
Ad {
advertiser: Array<{ id: String|null, value: String }>
impressionURLTemplates: Array<{ id: String|null, url: String }>
}
CreativeLinear {
videoClickThroughURLTemplate: { id: String|null, url: String }|null
videoClickTrackingURLTemplates: Array<{ id: String|null, url: String }>
videoCustomClickURLTemplates: Array<{ id: String|null, url: String }>
}
NonLinearAd {
nonlinearClickTrackingURLTemplates: Array<{ id: String|null, url: String }>
}
CompanionAd {
companionClickTrackingURLTemplates: Array<{ id: String|null, url: String }>
}
Icon {
iconClickTrackingURLTemplates: Array<{ id: String|null, url: String }>
}
- AdExtension (now called Extension)
- AdVerification
- Ad
- CompanionAd
- CreativeCompanion
- CreativeLinear
- CreativeNonLinear
- Creative
- Icon
- MediaFile
- Mezzanine
- NonLinearAd
- VASTResponse
FlashURLHandler
has been removed. If it is needed from this point on, it should be passed as a custom url handler in options.- Requests (
NodeURLHandler
andXHRURLHandler
) now have a timeout of120000ms
by default.
fetchVAST
can now be called with 2 more argumentswrapperDepth
andpreviousUrl
:fetchVAST(url, wrapperDepth = 0, previousUrl = null)
- Parameter
options
fromgetAndParseVAST
is now optional:getAndParseVAST(url, options = {})
- property
rootURL
inVASTParser
is now set after url template filter functions have been called. parseVastXml
can now be passed additional properties inoptions
object,url
andwrapperDepth
:parseVastXml(vastXml, { isRootVAST = false, url = null, wrapperDepth = 0 })
Due to a bug where originalUrl
was being assigned not as the root url, but the previous url, the following has changed:
VAST-resolving
event payload now has fieldoriginalUrl
correctly renamed topreviousUrl
.- Parameter
originalUrl
fromresolveWrappers
has been correctly renamed topreviousUrl
:resolveWrappers(ad, wrapperDepth, previousUrl)
resolveAds
paramoriginalUrl
inoptions
object has been renamed topreviousUrl
. It also can be passedurl
intooptions
. For example:resolveAds(ads = [], { url, previousUrl })
options
parameter inVASTParser
parse
function now expectspreviousUrl
instead oforiginalUrl
. It also can be passedurl
intooptions
.
track(eventName, once = false)
becomestrack(eventName, { macros = {}, once = false })
The vast-client now support VAST 4.1 Macros. The complete list of new supported macros is in the file macros.js. The following macro value will be set automatically (according to IAB specs) by vast-client if it exists in the tracking url:
- ADCATEGORIES
- ADPLAYHEAD
- ADSERVINGID
- ADTYPE
- ASSETURI
- BLOCKEDADCATEGORIES
- CACHEBUSTING
- CONTENTPLAYHEAD
- MEDIAPLAYHEAD
- PODSEQUENCE
- TIMESTAMP
- UNIVERSALADID
If a macro exist in the tracking url, but no value is known and is supported it will be replaced with -1
as specified by iAB. For more in-depth explainations on macros, please see vast-tracker.md
When a vast is unwrapped, the final vast, once parsed now contains its verifications script and also the one from previous wrapper if any.
We now require node version 10.12+
The sequence attribute of an Inline ad when wrapped in wrapper will be replaced by the one of its parent wrapper. The replacement will be made only if the parent wrapper contains only one ad. Otherwise sequences from the unwrapped ad will be kept.
e.g, for a use case where an AdPod contain:
- Inline with sequence 1
- Inline with sequence 2
- Wrapper with sequence 3 wrapping a Inline with sequence 1
once parsed we will obtain :
- Inline sequence 1,
- Inline sequence 2,
- Inline sequence 3
In the use case where a wrapper wrap an AdPod, the wrapper sequence will be ignored.e.g
- Wrapper sequence 3 containing:
- Inline sequence 1,
- Inline sequence 2,
- Inline sequence 3
once parsed we will obtain :
- Inline sequence 1,
- Inline sequence 2,
- Inline sequence 3
Replaced rollup plugin used for minify from uglify
to terser