diff --git a/assets/zesty-default-billboard.png b/assets/zesty-default-billboard.png index b49690d..666904b 100644 Binary files a/assets/zesty-default-billboard.png and b/assets/zesty-default-billboard.png differ diff --git a/assets/zesty-default-medium-rectangle.png b/assets/zesty-default-medium-rectangle.png index 65352bd..b7e7062 100644 Binary files a/assets/zesty-default-medium-rectangle.png and b/assets/zesty-default-medium-rectangle.png differ diff --git a/assets/zesty-default-mobile-phone-interstitial.png b/assets/zesty-default-mobile-phone-interstitial.png index ea27a17..3b41c50 100644 Binary files a/assets/zesty-default-mobile-phone-interstitial.png and b/assets/zesty-default-mobile-phone-interstitial.png differ diff --git a/tests/utils/networking.test.mjs b/tests/utils/networking.test.mjs index b1b7de7..4f02b57 100644 --- a/tests/utils/networking.test.mjs +++ b/tests/utils/networking.test.mjs @@ -1,7 +1,7 @@ import { test, expect } from '@playwright/test'; import { fetchCampaignAd } from '../../utils/networking.js'; -const DEFAULT_BANNER = 'https://cdn.zesty.xyz/images/zesty/zesty-banner-tall.png' +const DEFAULT_BANNER = 'https://cdn.zesty.xyz/sdk/assets/zesty-banner-tall.png' const MOCK_IFRAME_SETUP = { window: { diff --git a/unity/Assets/ZestySDK/Scripts/Internal/Utils/Formats.cs b/unity/Assets/ZestySDK/Scripts/Internal/Utils/Formats.cs index cde0ed0..658079c 100644 --- a/unity/Assets/ZestySDK/Scripts/Internal/Utils/Formats.cs +++ b/unity/Assets/ZestySDK/Scripts/Internal/Utils/Formats.cs @@ -25,19 +25,19 @@ public Format(double width, double height, string[] images) // Moible Phone Interstitial static string[] mobilePhoneInterstitialImages = { - $"{Constants.CDN_URL}/images/zesty/zesty-default-mobile-phone-interstitial.png", + $"{Constants.CDN_URL}/sdk/assets/zesty-default-mobile-phone-interstitial.png", }; public static Format MobilePhoneInterstitial = new Format(0.56, 1, mobilePhoneInterstitialImages); // Billboard static string[] billboardImages = { - $"{Constants.CDN_URL}/images/zesty/zesty-default-billboard.png", + $"{Constants.CDN_URL}/sdk/assets/zesty-default-billboard.png", }; public static Format Billboard = new Format(3.88, 1, billboardImages); // Medium Rectangle static string[] mediumRectangleImages = { - $"{Constants.CDN_URL}/images/zesty/zesty-default-medium-rectangle.png", + $"{Constants.CDN_URL}/sdk/assets/zesty-default-medium-rectangle.png", }; public static Format MediumRectangle = new Format(1.2, 1, mediumRectangleImages); diff --git a/unity/zesty-unity-sdk.unitypackage b/unity/zesty-unity-sdk.unitypackage index 5834d31..373cb47 100644 Binary files a/unity/zesty-unity-sdk.unitypackage and b/unity/zesty-unity-sdk.unitypackage differ diff --git a/utils/formats.js b/utils/formats.js index 3c2fb6e..8dbf990 100644 --- a/utils/formats.js +++ b/utils/formats.js @@ -1,4 +1,4 @@ -const assetsURL = 'https://cdn.zesty.xyz/images/zesty'; +const assetsURL = 'https://cdn.zesty.xyz/sdk/assets'; const formats = { 'tall': {