@dpgradio/creative 5.6.0 → 5.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpgradio/creative",
3
- "version": "5.6.0",
3
+ "version": "5.6.1",
4
4
  "description": "Support package for standalone Javascript applications",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -96,7 +96,10 @@ export default class Request {
96
96
 
97
97
  const endpointWithoutSlash = endpoint.replace(/^\/+/, '')
98
98
 
99
- const urlParts = [baseUrlWithProtocol, this.version, endpointWithoutSlash].filter(Boolean)
99
+ const urlParts =
100
+ endpoint.startsWith('http')
101
+ ? [endpoint]
102
+ : [baseUrlWithProtocol, this.version, endpointWithoutSlash].filter(Boolean)
100
103
 
101
104
  return tap(new URL(urlParts.join('/')), (url) => {
102
105
  url.search = new URLSearchParams({