diff --git a/plugins/2018.3326/android/corona.gradle b/plugins/2018.3326/android/corona.gradle index 3dafe44..564334a 100644 --- a/plugins/2018.3326/android/corona.gradle +++ b/plugins/2018.3326/android/corona.gradle @@ -1,3 +1,3 @@ dependencies { - implementation 'com.appodeal.ads.sdk.networks:unity_ads:3.3.1.0' + implementation 'com.appodeal.ads.sdk.networks:unity_ads:3.4.0.0' } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds-Swift.h b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds-Swift.h index 0b97ad4..d22f26f 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds-Swift.h +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds-Swift.h @@ -353,6 +353,119 @@ SWIFT_CLASS("_TtC8UnityAds33SDKConfigurationStorageObjcBridge") + + +@protocol UnityAdsInitializationDelegate; +@protocol UnityAdsLoadDelegate; +@class UADSLoadOptions; +@class UIViewController; +@protocol UnityAdsShowDelegate; +@class UADSShowOptions; + +SWIFT_CLASS("_TtC8UnityAds8UnityAds") +@interface UnityAds : NSObject +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// ++ (void)initialize:(NSString * _Nonnull)gameId; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param initializationDelegate delegate for UnityAdsInitialization +/// ++ (void)initialize:(NSString * _Nonnull)gameId initializationDelegate:(id _Nullable)initializationDelegate; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param testMode Set this flag to YES to indicate test mode and show only test ads. +/// ++ (void)initialize:(NSString * _Nonnull)gameId testMode:(BOOL)testMode; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param testMode Set this flag to YES to indicate test mode and show only test ads. +/// +/// \param initializationDelegate delegate for UnityAdsInitialization +/// ++ (void)initialize:(NSString * _Nonnull)gameId testMode:(BOOL)testMode initializationDelegate:(id _Nullable)initializationDelegate; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// ++ (void)load:(NSString * _Nonnull)placementId; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param loadDelegate The load delegate. +/// ++ (void)load:(NSString * _Nonnull)placementId loadDelegate:(id _Nullable)loadDelegate; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param options The load options. +/// +/// \param loadDelegate The load delegate. +/// ++ (void)load:(NSString * _Nonnull)placementId options:(UADSLoadOptions * _Nonnull)options loadDelegate:(id _Nullable)loadDelegate; +/// Show an ad using the provided placement ID. +/// \param viewController The UIViewController that is to present the ad view controller. +/// +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param showDelegate The show delegate. +/// ++ (void)show:(UIViewController * _Nonnull)viewController placementId:(NSString * _Nonnull)placementId showDelegate:(id _Nullable)showDelegate; +/// Show an ad using the provided placement ID. +/// \param viewController The UIViewController that is to present the ad view controller. +/// +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param options Additional options +/// +/// \param showDelegate The show delegate. +/// ++ (void)show:(UIViewController * _Nonnull)viewController placementId:(NSString * _Nonnull)placementId options:(UADSShowOptions * _Nonnull)options showDelegate:(id _Nullable)showDelegate; ++ (BOOL)getDebugMode SWIFT_WARN_UNUSED_RESULT; +/// Set the logging verbosity of UnityAds. Debug mode indicates verbose logging. +///
+/// Warning: Does not relate to test mode for ad content. +/// +///
+/// \param enableDebugMode YES for verbose logging. +/// ++ (void)setDebugMode:(BOOL)enableDebugMode; +/// Check to see if the current device supports using Unity Ads. +/// +/// returns: +/// If NO, the current device cannot initialize UnityAds or show ads. ++ (BOOL)isSupported SWIFT_WARN_UNUSED_RESULT; +/// Check the version of this UnityAds SDK +/// +/// returns: +/// String representing the current version name. ++ (NSString * _Nonnull)getVersion SWIFT_WARN_UNUSED_RESULT; +/// Check that UnityAds has been initialized. This might be useful for debugging initialization problems. +/// +/// returns: +/// If YES, Unity Ads has been successfully initialized. ++ (BOOL)isInitialized SWIFT_WARN_UNUSED_RESULT; +/// Get request token. +/// +/// returns: +/// Active token or null if no active token is available. ++ (NSString * _Nullable)getToken SWIFT_WARN_UNUSED_RESULT; +/// Get request token. +/// \param completion Active token or null if no active token is available. +/// ++ (void)getToken:(void (^ _Nonnull)(NSString * _Nullable))completion; +@end + + + + + + #endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop @@ -716,6 +829,119 @@ SWIFT_CLASS("_TtC8UnityAds33SDKConfigurationStorageObjcBridge") + + +@protocol UnityAdsInitializationDelegate; +@protocol UnityAdsLoadDelegate; +@class UADSLoadOptions; +@class UIViewController; +@protocol UnityAdsShowDelegate; +@class UADSShowOptions; + +SWIFT_CLASS("_TtC8UnityAds8UnityAds") +@interface UnityAds : NSObject +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// ++ (void)initialize:(NSString * _Nonnull)gameId; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param initializationDelegate delegate for UnityAdsInitialization +/// ++ (void)initialize:(NSString * _Nonnull)gameId initializationDelegate:(id _Nullable)initializationDelegate; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param testMode Set this flag to YES to indicate test mode and show only test ads. +/// ++ (void)initialize:(NSString * _Nonnull)gameId testMode:(BOOL)testMode; +/// Initializes UnityAds. UnityAds should be initialized when app starts. +/// \param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. +/// +/// \param testMode Set this flag to YES to indicate test mode and show only test ads. +/// +/// \param initializationDelegate delegate for UnityAdsInitialization +/// ++ (void)initialize:(NSString * _Nonnull)gameId testMode:(BOOL)testMode initializationDelegate:(id _Nullable)initializationDelegate; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// ++ (void)load:(NSString * _Nonnull)placementId; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param loadDelegate The load delegate. +/// ++ (void)load:(NSString * _Nonnull)placementId loadDelegate:(id _Nullable)loadDelegate; +/// Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param options The load options. +/// +/// \param loadDelegate The load delegate. +/// ++ (void)load:(NSString * _Nonnull)placementId options:(UADSLoadOptions * _Nonnull)options loadDelegate:(id _Nullable)loadDelegate; +/// Show an ad using the provided placement ID. +/// \param viewController The UIViewController that is to present the ad view controller. +/// +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param showDelegate The show delegate. +/// ++ (void)show:(UIViewController * _Nonnull)viewController placementId:(NSString * _Nonnull)placementId showDelegate:(id _Nullable)showDelegate; +/// Show an ad using the provided placement ID. +/// \param viewController The UIViewController that is to present the ad view controller. +/// +/// \param placementId The placement ID, as defined in Unity Ads admin tools. +/// +/// \param options Additional options +/// +/// \param showDelegate The show delegate. +/// ++ (void)show:(UIViewController * _Nonnull)viewController placementId:(NSString * _Nonnull)placementId options:(UADSShowOptions * _Nonnull)options showDelegate:(id _Nullable)showDelegate; ++ (BOOL)getDebugMode SWIFT_WARN_UNUSED_RESULT; +/// Set the logging verbosity of UnityAds. Debug mode indicates verbose logging. +///
+/// Warning: Does not relate to test mode for ad content. +/// +///
+/// \param enableDebugMode YES for verbose logging. +/// ++ (void)setDebugMode:(BOOL)enableDebugMode; +/// Check to see if the current device supports using Unity Ads. +/// +/// returns: +/// If NO, the current device cannot initialize UnityAds or show ads. ++ (BOOL)isSupported SWIFT_WARN_UNUSED_RESULT; +/// Check the version of this UnityAds SDK +/// +/// returns: +/// String representing the current version name. ++ (NSString * _Nonnull)getVersion SWIFT_WARN_UNUSED_RESULT; +/// Check that UnityAds has been initialized. This might be useful for debugging initialization problems. +/// +/// returns: +/// If YES, Unity Ads has been successfully initialized. ++ (BOOL)isInitialized SWIFT_WARN_UNUSED_RESULT; +/// Get request token. +/// +/// returns: +/// Active token or null if no active token is available. ++ (NSString * _Nullable)getToken SWIFT_WARN_UNUSED_RESULT; +/// Get request token. +/// \param completion Active token or null if no active token is available. +/// ++ (void)getToken:(void (^ _Nonnull)(NSString * _Nullable))completion; +@end + + + + + + #endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds.h b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds.h index 7e71798..417af3b 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds.h +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAds.h @@ -12,7 +12,6 @@ FOUNDATION_EXPORT const unsigned char UnityAdsModuleVersionString[]; #import #import -#import #import #import #import diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdsCommon.h b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdsCommon.h new file mode 100644 index 0000000..736efc2 --- /dev/null +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdsCommon.h @@ -0,0 +1,12 @@ +#import + +//! Project version number for UnityAdsTools. +FOUNDATION_EXPORT double UnityAdsToolsVersionNumber; + +//! Project version string for UnityAdsTools. +FOUNDATION_EXPORT const unsigned char UnityAdsToolsVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + +#import + diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdvertisement.h b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdvertisement.h deleted file mode 100644 index 1190b65..0000000 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityAdvertisement.h +++ /dev/null @@ -1,150 +0,0 @@ -#import - -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - * `UnityAds` is a static class with methods for preparing and showing ads. - */ - -@interface UnityAds : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)initialize NS_UNAVAILABLE; - - -/** - * Initializes UnityAds. UnityAds should be initialized when app starts. - * - * @param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. - */ -+ (void)initialize: (NSString *)gameId; - -/** - * Initializes UnityAds. UnityAds should be initialized when app starts. - * - * @param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. - * @param initializationDelegate delegate for UnityAdsInitialization - */ -+ (void) initialize: (NSString *)gameId - initializationDelegate: (nullable id)initializationDelegate; - -/** - * Initializes UnityAds. UnityAds should be initialized when app starts. - * - * @param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. - * @param testMode Set this flag to `YES` to indicate test mode and show only test ads. - */ -+ (void)initialize: (NSString *)gameId - testMode: (BOOL)testMode; - -/** - * Initializes UnityAds. UnityAds should be initialized when app starts. - * - * @param gameId Unique identifier for a game, given by Unity Ads admin tools or Unity editor. - * @param testMode Set this flag to `YES` to indicate test mode and show only test ads. - * @param initializationDelegate delegate for UnityAdsInitialization - */ -+ (void) initialize: (NSString *)gameId - testMode: (BOOL)testMode - initializationDelegate: (nullable id)initializationDelegate; -/** - * Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. - * Note: The `load` API is in closed beta and available upon invite only. If you would like to be considered for the beta, please contact Unity Ads Support. - * - * @param placementId The placement ID, as defined in Unity Ads admin tools. - */ -+ (void)load: (NSString *)placementId; - -/** - * Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. - * - * @param placementId The placement ID, as defined in Unity Ads admin tools. - * @param loadDelegate The load delegate. - */ -+ (void) load: (NSString *)placementId - loadDelegate: (nullable id)loadDelegate; - -/** - * Load a placement to make it available to show. Ads generally take a few seconds to finish loading before they can be shown. - * - * @param placementId The placement ID, as defined in Unity Ads admin tools. - * @param options The load options. - * @param loadDelegate The load delegate. - */ -+ (void) load: (NSString *)placementId - options: (UADSLoadOptions *)options - loadDelegate: (nullable id)loadDelegate; - -/** - * Show an ad using the provided placement ID. - * - * @param viewController The `UIViewController` that is to present the ad view controller. - * @param placementId The placement ID, as defined in Unity Ads admin tools. - * @param showDelegate The show delegate. - */ -+ (void) show: (UIViewController *)viewController - placementId: (NSString *)placementId - showDelegate: (nullable id)showDelegate; - -/** - * Show an ad using the provided placement ID. - * - * @param viewController The `UIViewController` that is to present the ad view controller. - * @param placementId The placement ID, as defined in Unity Ads admin tools. - * @param options Additional options - * @param showDelegate The show delegate. - */ -+ (void) show: (UIViewController *)viewController - placementId: (NSString *)placementId - options: (UADSShowOptions *)options - showDelegate: (nullable id)showDelegate; - - -+ (BOOL) getDebugMode; -/** - * Set the logging verbosity of `UnityAds`. Debug mode indicates verbose logging. - * @warning Does not relate to test mode for ad content. - * @param enableDebugMode `YES` for verbose logging. - */ -+ (void)setDebugMode: (BOOL)enableDebugMode; -/** - * Check to see if the current device supports using Unity Ads. - * - * @return If `NO`, the current device cannot initialize `UnityAds` or show ads. - */ -+ (BOOL) isSupported; -/** - * Check the version of this `UnityAds` SDK - * - * @return String representing the current version name. - */ -+ (NSString *) getVersion; -/** - * Check that `UnityAds` has been initialized. This might be useful for debugging initialization problems. - * - * @return If `YES`, Unity Ads has been successfully initialized. - */ -+ (BOOL) isInitialized; -/** - * Get request token. - * - * @return Active token or null if no active token is available. - */ -+ (NSString *__nullable)getToken; - -/** - * Get request token. - * - * @param completion Active token or null if no active token is available. - */ -+ (void)getToken: (void (^)(NSString *_Nullable))completion; -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityServices.h b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityServices.h index ce58bf9..d640f0a 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityServices.h +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Headers/UnityServices.h @@ -1,4 +1,13 @@ #import +#import +#import +#import +#import +#import + +#ifdef UNITYADS_INTERNAL +#import +#endif NS_ASSUME_NONNULL_BEGIN @@ -52,7 +61,12 @@ NS_ASSUME_NONNULL_BEGIN */ + (BOOL) isInitialized; -+ (NSString *)createExpectedParametersString: (NSString *)fieldName current: (NSString *)current received: (NSString *)received; ++ (void)load: (NSString *)placementId options: (UADSLoadOptions *)options loadDelegate: (nullable id)loadDelegate; + ++ (void)show: (UIViewController *)viewController placementId: (NSString *)placementId options: (UADSShowOptions *)options showDelegate: (nullable id)showDelegate; + ++ (NSString *__nullable)getToken; ++ (void)getToken: (void (^)(NSString *_Nullable))completion; @end diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Info.plist b/plugins/2018.3326/iphone-sim/UnityAds.framework/Info.plist index da1c7ac..7453987 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/Info.plist and b/plugins/2018.3326/iphone-sim/UnityAds.framework/Info.plist differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json index a80fd2c..469e8b2 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -179,6 +179,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -263,6 +270,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -319,6 +333,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UnitySwiftProtobuf", @@ -527,6 +548,27 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -730,6 +772,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CoreTelephony", @@ -800,6 +849,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "zlib", @@ -947,13 +1003,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "UIKit", @@ -1174,20 +1223,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -1197,8 +1232,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1356,13 +1391,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -1391,16 +1419,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1410,8 +1428,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1445,10 +1463,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1534,16 +1555,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1602,31 +1613,13 @@ }, { "kind": "Import", - "name": "zlib", - "printedName": "zlib", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1686,8 +1679,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "zlib", + "printedName": "zlib", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1740,16 +1733,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1757,16 +1740,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1937,10 +1910,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1951,10 +1927,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -2068,13 +2047,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2152,13 +2124,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "CoreMotion", - "printedName": "CoreMotion", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2222,13 +2187,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2287,8 +2245,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2371,8 +2329,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreMotion", + "printedName": "CoreMotion", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2418,16 +2376,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -2451,8 +2399,8 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2463,13 +2411,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2484,13 +2425,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2659,13 +2593,317 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -2956,139 +3194,25 @@ "moduleName": "UnityAds" }, { - "kind": "TypeDecl", - "name": "SDKInitializerConfig", - "printedName": "SDKInitializerConfig", - "children": [ - { - "kind": "Var", - "name": "gameID", - "printedName": "gameID", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameIDSSvp", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameIDSSvp", - "moduleName": "UnityAds", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameIDSSvg", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameIDSSvg", - "moduleName": "UnityAds", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isTestModeEnabled", - "printedName": "isTestModeEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvp", - "mangledName": "$s8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvp", - "moduleName": "UnityAds", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvg", - "mangledName": "$s8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvg", - "moduleName": "UnityAds", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(gameID:isTestModeEnabled:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKInitializerConfig", - "printedName": "UnityAds.SDKInitializerConfig", - "usr": "s:8UnityAds20SDKInitializerConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameID17isTestModeEnabledACSS_Sbtcfc", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameID17isTestModeEnabledACSS_Sbtcfc", - "moduleName": "UnityAds", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:8UnityAds20SDKInitializerConfigV", - "mangledName": "$s8UnityAds20SDKInitializerConfigV", - "moduleName": "UnityAds", - "declAttributes": [ - "AccessControl" - ] + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" }, { "kind": "Import", @@ -3195,6 +3319,48 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UnitySwiftProtobuf", @@ -3341,6 +3507,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "StoreKit", @@ -3376,6 +3549,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CommonCrypto", @@ -3453,6 +3633,20 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "TypeDecl", "name": "LoggerWrapper", @@ -3614,6 +3808,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CoreTelephony", @@ -3710,8 +3911,8 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3724,85 +3925,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "AdSupport", - "printedName": "AdSupport", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3815,8 +3939,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3850,25 +3974,15 @@ }, { "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "AdSupport", + "printedName": "AdSupport", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3881,8 +3995,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3895,8 +4009,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3909,8 +4023,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3951,250 +4065,681 @@ }, { "kind": "TypeDecl", - "name": "UnityError", - "printedName": "UnityError", + "name": "UnityAds", + "printedName": "UnityAds", "children": [ { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP4codeSivp", - "mangledName": "$s8UnityAds0A5ErrorP4codeSivp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:", + "mangledName": "$s8UnityAdsAAC10initializeyySSFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:initializationDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsInitializationDelegate?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UnityAdsInitializationDelegate", + "printedName": "UnityAds.UnityAdsInitializationDelegate", + "usr": "c:objc(pl)UnityAdsInitializationDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP4codeSivg", - "mangledName": "$s8UnityAds0A5ErrorP4codeSivg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:initializationDelegate:", + "mangledName": "$s8UnityAdsAAC10initialize_22initializationDelegateySS_So0ab14InitializationE0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "message", - "printedName": "message", + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:testMode:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP7messageSSvp", - "mangledName": "$s8UnityAds0A5ErrorP7messageSSvp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:testMode:", + "mangledName": "$s8UnityAdsAAC10initialize_8testModeySS_SbtFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:testMode:initializationDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsInitializationDelegate?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnityAdsInitializationDelegate", + "printedName": "UnityAds.UnityAdsInitializationDelegate", + "usr": "c:objc(pl)UnityAdsInitializationDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP7messageSSvg", - "mangledName": "$s8UnityAds0A5ErrorP7messageSSvg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:testMode:initializationDelegate:", + "mangledName": "$s8UnityAdsAAC10initialize_8testMode22initializationDelegateySS_SbSo0ab14InitializationG0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Function", + "name": "load", + "printedName": "load(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:", + "mangledName": "$s8UnityAdsAAC4loadyySSFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(_:loadDelegate:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "UnityAds.UnityAdsLoadDelegate?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnityAdsLoadDelegate", + "printedName": "UnityAds.UnityAdsLoadDelegate", + "usr": "c:objc(pl)UnityAdsLoadDelegate" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvp", - "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:loadDelegate:", + "mangledName": "$s8UnityAdsAAC4load_0C8DelegateySS_So0ab4LoadD0_pSgtFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(_:options:loadDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UADSLoadOptions", + "printedName": "UnityAds.UADSLoadOptions", + "usr": "c:objc(cs)UADSLoadOptions" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsLoadDelegate?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UnityAdsLoadDelegate", + "printedName": "UnityAds.UnityAdsLoadDelegate", + "usr": "c:objc(pl)UnityAdsLoadDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvg", - "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] - } - ], - "declKind": "Protocol", - "usr": "s:8UnityAds0A5ErrorP", - "mangledName": "$s8UnityAds0A5ErrorP", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 : Swift.Error>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:options:loadDelegate:", + "mangledName": "$s8UnityAdsAAC4load_7options0C8DelegateySS_So15UADSLoadOptionsCSo0ab4LoadE0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "Function", + "name": "show", + "printedName": "show(_:placementId:showDelegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsShowDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnityAdsShowDelegate", + "printedName": "UnityAds.UnityAdsShowDelegate", + "usr": "c:objc(pl)UnityAdsShowDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)show:placementId:showDelegate:", + "mangledName": "$s8UnityAdsAAC4show_11placementId0C8DelegateySo16UIViewControllerC_SSSo0ab4ShowF0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", + "kind": "Function", + "name": "show", + "printedName": "show(_:placementId:options:showDelegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UADSShowOptions", + "printedName": "UnityAds.UADSShowOptions", + "usr": "c:objc(cs)UADSShowOptions" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsShowDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnityAdsShowDelegate", + "printedName": "UnityAds.UnityAdsShowDelegate", + "usr": "c:objc(pl)UnityAdsShowDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)show:placementId:options:showDelegate:", + "mangledName": "$s8UnityAdsAAC4show_11placementId7options0C8DelegateySo16UIViewControllerC_SSSo15UADSShowOptionsCSo0ab4ShowG0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDebugMode", + "printedName": "getDebugMode()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getDebugMode", + "mangledName": "$s8UnityAdsAAC12getDebugModeSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDebugMode", + "printedName": "setDebugMode(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)setDebugMode:", + "mangledName": "$s8UnityAdsAAC12setDebugModeyySbFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSupported", + "printedName": "isSupported()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)isSupported", + "mangledName": "$s8UnityAdsAAC11isSupportedSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVersion", + "printedName": "getVersion()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getVersion", + "mangledName": "$s8UnityAdsAAC10getVersionSSyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isInitialized", + "printedName": "isInitialized()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)isInitialized", + "mangledName": "$s8UnityAdsAAC13isInitializedSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getToken", + "printedName": "getToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getToken", + "mangledName": "$s8UnityAdsAAC8getTokenSSSgyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getToken", + "printedName": "getToken(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getToken:", + "mangledName": "$s8UnityAdsAAC8getTokenyyySSSgcFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@UnityAds@objc(cs)UnityAds", + "mangledName": "$s8UnityAdsAAC", + "moduleName": "UnityAds", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", "name": "Foundation", "printedName": "Foundation", "declKind": "Import", @@ -4209,13 +4754,17 @@ }, { "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" }, { "kind": "Import", @@ -4292,8 +4841,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4306,8 +4855,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4320,11 +4869,185 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "TypeDecl", + "name": "UnityError", + "printedName": "UnityError", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP4codeSivp", + "mangledName": "$s8UnityAds0A5ErrorP4codeSivp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP4codeSivg", + "mangledName": "$s8UnityAds0A5ErrorP4codeSivg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP7messageSSvp", + "mangledName": "$s8UnityAds0A5ErrorP7messageSSvp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP7messageSSvg", + "mangledName": "$s8UnityAds0A5ErrorP7messageSSvg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvp", + "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvg", + "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8UnityAds0A5ErrorP", + "mangledName": "$s8UnityAds0A5ErrorP", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 : Swift.Error>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { "kind": "Import", "name": "Foundation", @@ -4334,8 +5057,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4348,8 +5071,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4362,8 +5085,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4374,6 +5097,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4390,8 +5120,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4411,8 +5141,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4432,11 +5162,31 @@ }, { "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, { "kind": "Import", "name": "Foundation", @@ -4486,6 +5236,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4500,6 +5257,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4516,8 +5280,29 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4528,6 +5313,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4542,6 +5334,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4558,8 +5357,92 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4628,8 +5511,15 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4642,8 +5532,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4656,8 +5546,85 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4675,6 +5642,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4696,6 +5670,20 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4703,6 +5691,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "WebKit", @@ -4717,6 +5712,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "WebKit", @@ -4738,6 +5740,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4745,6 +5754,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4845,8 +5861,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4908,8 +5924,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -5623,6 +6639,66 @@ "ImplementationOnly" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, { "kind": "TypeDecl", "name": "AVAudioSession", @@ -6686,6 +7762,81 @@ } ] }, + { + "kind": "TypeDecl", + "name": "UIScreen", + "printedName": "UIScreen", + "declKind": "Class", + "usr": "c:objc(cs)UIScreen", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIScreen", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, { "kind": "TypeDecl", "name": "FileManager", @@ -7592,29 +8743,35 @@ }, { "kind": "TypeDecl", - "name": "SKStoreProductViewController", - "printedName": "SKStoreProductViewController", + "name": "SKPaymentTransaction", + "printedName": "SKPaymentTransaction", "declKind": "Class", - "usr": "c:objc(cs)SKStoreProductViewController", + "usr": "c:objc(cs)SKPaymentTransaction", "moduleName": "StoreKit", "isOpen": true, - "intro_iOS": "6.0", - "objc_name": "SKStoreProductViewController", + "intro_iOS": "3.0", + "objc_name": "SKPaymentTransaction", "declAttributes": [ - "Custom", "Available", "ObjC", + "SynthesizedProtocol", + "Sendable", "Dynamic" ], - "superclassUsr": "c:objc(cs)UIViewController", + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UIViewController", - "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -7663,44 +8820,195 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKPayment", + "printedName": "SKPayment", + "declKind": "Class", + "usr": "c:objc(cs)SKPayment", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "SKPayment", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKProduct", + "printedName": "SKProduct", + "declKind": "Class", + "usr": "c:objc(cs)SKProduct", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "SKProduct", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { "kind": "Conformance", "name": "Sendable", "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, { "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "name": "SKProductDiscount", + "printedName": "SKProductDiscount", + "declKind": "Class", + "usr": "c:objc(cs)SKProductDiscount", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "11.2", + "objc_name": "SKProductDiscount", "declAttributes": [ - "Frozen" + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" ], + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -7711,188 +9019,433 @@ }, { "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKProductSubscriptionPeriod", + "printedName": "SKProductSubscriptionPeriod", + "declKind": "Class", + "usr": "c:objc(cs)SKProductSubscriptionPeriod", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "11.2", + "objc_name": "SKProductSubscriptionPeriod", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKStoreProductViewController", + "printedName": "SKStoreProductViewController", + "declKind": "Class", + "usr": "c:objc(cs)SKStoreProductViewController", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "SKStoreProductViewController", + "declAttributes": [ + "Custom", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", "usr": "s:Si" } ] @@ -8944,81 +10497,6 @@ } ] }, - { - "kind": "TypeDecl", - "name": "UIScreen", - "printedName": "UIScreen", - "declKind": "Class", - "usr": "c:objc(cs)UIScreen", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIScreen", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, { "kind": "TypeDecl", "name": "WKScriptMessage", @@ -9219,6 +10697,20 @@ "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdCampaignStorage.swift", + "kind": "BooleanLiteral", + "offset": 1073, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/AdContextReader.swift", + "kind": "StringLiteral", + "offset": 3369, + "length": 3, + "value": "\".\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/AdDataRefreshReceiver.swift", "kind": "StringLiteral", @@ -9229,24 +10721,31 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "StringLiteral", - "offset": 663, + "offset": 676, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "StringLiteral", - "offset": 704, + "offset": 717, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "BooleanLiteral", - "offset": 754, + "offset": 767, "length": 5, "value": "false" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", + "kind": "StringLiteral", + "offset": 797, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderError.swift", "kind": "StringLiteral", @@ -9341,49 +10840,91 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 956, - "length": 37, - "value": "\"objectID is required in the options\"" + "offset": 1310, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "BooleanLiteral", + "offset": 1386, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 4585, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 1311, + "offset": 5790, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "BooleanLiteral", - "offset": 1387, - "length": 4, - "value": "true" + "offset": 5852, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 2694, + "offset": 5894, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6227, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6334, + "length": 19, + "value": "\"no_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6368, "length": 37, "value": "\"objectID is required in the options\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 3021, - "length": 45, - "value": "\"possibly deallocated object or wrong obj id\"" + "offset": 6479, + "length": 21, + "value": "\"ad_object_not_found\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 3815, - "length": 2, - "value": "\"\"" + "offset": 6515, + "length": 45, + "value": "\"possibly deallocated object or wrong obj id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 372, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderWithMetrics.swift", "kind": "StringLiteral", - "offset": 31, + "offset": 393, "length": 19, "value": "\"UnityAds.AdLoaderWithMetrics\"" }, @@ -9402,9 +10943,16 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObject.swift", + "kind": "IntegerLiteral", + "offset": 2365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObject.swift", "kind": "BooleanLiteral", - "offset": 2564, + "offset": 3066, "length": 4, "value": "true" }, @@ -9437,14 +10985,14 @@ "value": "-1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectConstants.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Constants\/AdObjectConstants.swift", "kind": "IntegerLiteral", "offset": 99, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectConstants.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Constants\/AdObjectConstants.swift", "kind": "StringLiteral", "offset": 134, "length": 19, @@ -9460,7 +11008,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/AdObjectCreateParams.swift", "kind": "StringLiteral", - "offset": 695, + "offset": 819, "length": 7, "value": "\"empty\"" }, @@ -9479,124 +11027,138 @@ "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1003, "length": 9, "value": "\"timeout\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1027, "length": 50, "value": "\"Show Failed after \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1056, "length": 7, "value": "\" seconds due timeout\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1165, "length": 16, "value": "\"params_not_set\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1196, "length": 26, "value": "\"Show params were not set\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1312, "length": 17, "value": "\"already_showing\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1344, "length": 57, "value": "\"Cannot show the ad while another is already being shown\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1515, "length": 10, "value": "\"adviewer\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1645, "length": 18, "value": "\"no_compaign_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1678, "length": 38, "value": "\"No Campaign Data Passed From WebView\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1780, "length": 60, "value": "\"Trying to send a message to an AdObject that is not active\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObjectSettings.swift", + "kind": "IntegerLiteral", + "offset": 176, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 184, + "offset": 204, "length": 11, "value": "\"COMPLETED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 215, + "offset": 235, "length": 9, "value": "\"SKIPPED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 184, + "offset": 204, "length": 11, "value": "\"COMPLETED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 215, + "offset": 235, "length": 9, "value": "\"SKIPPED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "BooleanLiteral", - "offset": 595, + "offset": 615, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "Array", - "offset": 691, + "offset": 711, "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", + "kind": "BooleanLiteral", + "offset": 1198, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Decorators\/AdObjectWithMetrics.swift", "kind": "StringLiteral", @@ -9628,14 +11190,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdType.swift", "kind": "BooleanLiteral", - "offset": 811, + "offset": 800, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdType.swift", "kind": "BooleanLiteral", - "offset": 841, + "offset": 830, "length": 5, "value": "false" }, @@ -9656,35 +11218,35 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "Array", - "offset": 1438, + "offset": 1555, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "Array", - "offset": 1588, + "offset": 1705, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1882, + "offset": 2037, "length": 9, "value": "\"webview\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1893, + "offset": 2048, "length": 6, "value": "\"show\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1901, + "offset": 2056, "length": 13, "value": "\"callback:_2\"" }, @@ -9817,56 +11379,98 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 1012, + "offset": 1127, "length": 39, "value": "\"init(coder:) has not been implemented\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 444, + "offset": 538, "length": 15, "value": "\"UnityAds.BannerContainer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 2555, + "offset": 2668, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", "kind": "StringLiteral", - "offset": 398, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 378, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "BooleanLiteral", + "offset": 469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "IntegerLiteral", + "offset": 509, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "StringLiteral", + "offset": 547, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 594, + "offset": 624, "length": 13, "value": "\"placementID\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 654, + "offset": 684, "length": 9, "value": "\"options\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 932, + "offset": 863, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 1096, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "BooleanLiteral", - "offset": 1006, + "offset": 1170, "length": 4, "value": "true" }, @@ -9877,6 +11481,20 @@ "length": 16, "value": "\"UnityAds.BannerObjCBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 2425, + "length": 16, + "value": "\"placement_null\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 2456, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/PropertyWrappers\/Base64StringDecodable.swift", "kind": "StringLiteral", @@ -9901,59 +11519,122 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 241, + "offset": 243, + "length": 9, + "value": "\"DTXcode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 14, + "value": "\"DTXcodeBuild\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 355, + "length": 12, + "value": "\"DTSDKBuild\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 412, "length": 11, "value": "\"DTSDKName\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 294, + "offset": 465, "length": 18, "value": "\"SKAdNetworkItems\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 366, + "offset": 537, "length": 34, "value": "\"UISupportedInterfaceOrientations\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "Array", - "offset": 975, + "offset": 1229, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1295, + "offset": 1667, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 1779, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1407, + "offset": 1895, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1524, + "offset": 2007, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 2241, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "Array", - "offset": 1765, + "offset": 2482, "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 97, + "length": 4, + "value": "\"js\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 130, + "length": 8, + "value": "\"bundle\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 205, + "length": 19, + "value": "\"UnityAdsResources\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/CTTelephonyNetworkInfo.Convenience.swift", "kind": "StringLiteral", @@ -9975,6 +11656,13 @@ "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/CacheDefaultWebviewFilesTask.swift", + "kind": "StringLiteral", + "offset": 1130, + "length": 3, + "value": "\".\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/CacheDownloadReader.swift", "kind": "BooleanLiteral", @@ -10010,6 +11698,41 @@ "length": 40, "value": "\"Could not parse configuration response\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 109, + "length": 17, + "value": "\"UADSApiAdViewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 247, + "length": 18, + "value": "\"omidStartSession\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 19, + "value": "\"omidFinishSession\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 388, + "length": 16, + "value": "\"omidImpression\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 13, + "value": "\"omidGetData\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Cache.swift", "kind": "StringLiteral", @@ -10031,6 +11754,34 @@ "length": 14, "value": "\"isFileCached\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 130, + "length": 21, + "value": "\"USRVApiNotification\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 281, + "length": 25, + "value": "\"addNotificationObserver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 8, + "value": "\"ACTION\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 14, + "value": "\"NOTIFICATION\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/CoreNetworkServicesBuilder.swift", "kind": "IntegerLiteral", @@ -10059,20 +11810,6 @@ "length": 2, "value": "[]" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/CoreServicesBuilder.swift", - "kind": "StringLiteral", - "offset": 9662, - "length": 10, - "value": "\"Requests\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/CoreServicesBuilder.swift", - "kind": "StringLiteral", - "offset": 10014, - "length": 8, - "value": "\"Assets\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/CreateWebViewFolderTask.swift", "kind": "BooleanLiteral", @@ -10322,7 +12059,7 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", "offset": 2540, - "length": 200, + "length": 276, "value": "\" ___________________\n 🔎 Diagnostic:\n Name: \"" }, { @@ -10357,153 +12094,181 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", "offset": 2681, + "length": 5, + "value": "\"\n ImpId: \"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2716, + "length": 31, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2757, "length": 4, "value": "\"\n tags: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2728, + "offset": 2804, "length": 94, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2828, + "offset": 2904, "length": 296, "value": "\"\n ___________________\n 📩 Incoming Message:\n ID: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2921, + "offset": 2997, "length": 4, "value": "\"\n Name: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2947, + "offset": 3023, "length": 5, "value": "\"\n Topic: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2975, + "offset": 3051, "length": 7, "value": "\"\n Payload: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3025, + "offset": 3101, "length": 16, "value": "\"\n ResponseCallback: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3084, + "offset": 3160, "length": 10, "value": "\"Attached\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3097, + "offset": 3173, "length": 14, "value": "\"Non attached\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3112, + "offset": 3188, "length": 970, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3348, + "offset": 3424, "length": 8, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3355, + "offset": 3431, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3384, + "offset": 3460, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3575, + "offset": 3651, "length": 7, "value": "\"[:]\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3619, + "offset": 3695, "length": 4, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3675, + "offset": 3751, "length": 36, "value": "\" \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3693, + "offset": 3769, "length": 1, "value": "\": \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3708, + "offset": 3784, "length": 1, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3849, + "offset": 3925, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3886, + "offset": 3962, "length": 4, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3939, + "offset": 4015, "length": 29, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3967, + "offset": 4043, "length": 1, "value": "\"\"" }, @@ -10514,272 +12279,6 @@ "length": 3, "value": "[]" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 589, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 6, - "value": "\"sTkn\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 655, - "length": 13, - "value": "\"deviceModel\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 695, - "length": 12, - "value": "\"deviceMake\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 733, - "length": 7, - "value": "\"shSid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 763, - "length": 8, - "value": "\"gameId\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 589, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 6, - "value": "\"sTkn\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 655, - "length": 13, - "value": "\"deviceModel\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 695, - "length": 12, - "value": "\"deviceMake\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 733, - "length": 7, - "value": "\"shSid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 763, - "length": 8, - "value": "\"gameId\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "Dictionary", - "offset": 1608, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1853, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1933, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2005, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2265, - "length": 16, - "value": "\"native_\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2280, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2411, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2419, - "length": 5, - "value": "\"_time\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2559, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2583, - "length": 3, - "value": "\"n\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2608, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2559, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2583, - "length": 3, - "value": "\"n\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2608, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "Dictionary", - "offset": 3342, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3928, - "length": 5, - "value": "\"iso\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3958, - "length": 5, - "value": "\"plt\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3990, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 4025, - "length": 8, - "value": "\"system\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3928, - "length": 5, - "value": "\"iso\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3958, - "length": 5, - "value": "\"plt\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3990, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 4025, - "length": 8, - "value": "\"system\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Send\/Decorators\/DefaultRetryCondition.swift", "kind": "IntegerLiteral", @@ -10909,21 +12408,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "BooleanLiteral", - "offset": 859, + "offset": 1558, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "StringLiteral", - "offset": 3012, + "offset": 4140, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "Array", - "offset": 3197, + "offset": 4325, "length": 2, "value": "[]" }, @@ -11049,7 +12548,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DeviceInfoReader.swift", "kind": "BooleanLiteral", - "offset": 3174, + "offset": 3312, "length": 5, "value": "false" }, @@ -11070,7 +12569,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/DynamicDeviceInfo.swift", "kind": "BooleanLiteral", - "offset": 2924, + "offset": 2547, "length": 5, "value": "false" }, @@ -11098,70 +12597,70 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 264, + "offset": 330, "length": 65, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 288, + "offset": 354, "length": 1, "value": "\".\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 328, + "offset": 394, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1187, + "offset": 1404, "length": 87, "value": "\"https:\/\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1203, + "offset": 1420, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1218, + "offset": 1435, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1239, + "offset": 1456, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1261, + "offset": 1478, "length": 1, "value": "\"\/config.json\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1500, + "offset": 1717, "length": 10, "value": "\"configv2\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1543, + "offset": 1760, "length": 9, "value": "\"webview\"" }, @@ -11316,7 +12815,7 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", "kind": "StringLiteral", "offset": 1859, - "length": 995, + "length": 1744, "value": "\"\"" }, { @@ -11396,6 +12895,76 @@ "length": 13, "value": "\"Empty token\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 2955, + "length": 17, + "value": "\"not_initialized\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 2987, + "length": 17, + "value": "\"Not initialized\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3087, + "length": 9, + "value": "\"timeout\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3111, + "length": 9, + "value": "\"Timeout\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3265, + "length": 12, + "value": "\"No Session\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3292, + "length": 36, + "value": "\"No session present at time of call\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3413, + "length": 19, + "value": "\"No Partner Object\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3447, + "length": 29, + "value": "\"No partner object available\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3561, + "length": 14, + "value": "\"No WKWebView\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3590, + "length": 24, + "value": "\"No WKWebView available\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.RequestFactory.swift", "kind": "StringLiteral", @@ -11473,6 +13042,13 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/FeatureFlags.swift", + "kind": "BooleanLiteral", + "offset": 176, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FileDownloadParamsFactory.swift", "kind": "StringLiteral", @@ -11511,7 +13087,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FileDownloaderTask.swift", "kind": "Dictionary", - "offset": 795, + "offset": 865, "length": 3, "value": "[]" }, @@ -11613,6 +13189,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/FilePathsStorage.swift", + "kind": "StringLiteral", + "offset": 585, + "length": 10, + "value": "\"Requests\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/FilePathsStorage.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 8, + "value": "\"Assets\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FilesDownloaderBase.swift", "kind": "Dictionary", @@ -11679,21 +13269,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 968, + "offset": 1014, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 1039, + "offset": 1085, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 1137, + "offset": 1183, "length": 1, "value": "1" }, @@ -11714,21 +13304,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewaySDKServicesProvider.swift", "kind": "Array", - "offset": 2549, + "offset": 3466, "length": 3, "value": "[1]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewayServiceBuilder.swift", "kind": "BooleanLiteral", - "offset": 501, + "offset": 664, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewayServiceBuilder.swift", "kind": "BooleanLiteral", - "offset": 706, + "offset": 869, "length": 4, "value": "true" }, @@ -11816,6 +13406,34 @@ "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "StringLiteral", + "offset": 171, + "length": 34, + "value": "\"GenericMediatorWithTimeout.Queue\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "StringLiteral", + "offset": 257, + "length": 40, + "value": "\"GenericMediatorWithTimeout.Block.Queue\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "Dictionary", + "offset": 1419, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "IntegerLiteral", + "offset": 2330, + "length": 1, + "value": "0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Generic\/GenericNetwork.swift", "kind": "Array", @@ -11900,13 +13518,34 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "Dictionary", + "offset": 1377, + "length": 3, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", "kind": "Dictionary", - "offset": 1281, + "offset": 1612, "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "BooleanLiteral", + "offset": 1695, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/RequestStorage\/GenericRequestStorage.swift", "kind": "Array", @@ -12047,6 +13686,13 @@ "length": 4, "value": "\"2:\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/HeaderBidding.swift", + "kind": "FloatLiteral", + "offset": 142, + "length": 3, + "value": "5.0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/HeaderBiddingAdMarkup.swift", "kind": "IntegerLiteral", @@ -12124,41 +13770,20 @@ "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Token\/HeaderBiddingTokenReaderBase.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 5, - "value": "\"tid\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "BooleanLiteral", - "offset": 663, + "offset": 787, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "BooleanLiteral", - "offset": 1075, + "offset": 1275, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", - "kind": "StringLiteral", - "offset": 1720, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", - "kind": "StringLiteral", - "offset": 1729, - "length": 7, - "value": "\"false\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "StringLiteral", @@ -12167,16 +13792,16 @@ "value": "\"UnityAds.HeaderBiddingTokenReaderWithMetrics\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithTimeout.swift", "kind": "BooleanLiteral", - "offset": 984, + "offset": 1262, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithTimeout.swift", "kind": "BooleanLiteral", - "offset": 1037, + "offset": 1315, "length": 4, "value": "true" }, @@ -12208,6 +13833,13 @@ "length": 34, "value": "\"dW5pdHlhZHMudW5pdHljaGluYS5jbg==\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Store\/TransactionSender\/Deduplication\/IAPTransactionDeduplicator.swift", + "kind": "BooleanLiteral", + "offset": 743, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/IdentifiersGenerator\/IdentifiersGenerator.swift", "kind": "StringLiteral", @@ -12244,74 +13876,46 @@ "value": "\"init.completed.event.request.queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", "kind": "StringLiteral", - "offset": 835, - "length": 43, - "value": "\"Legacy doesnt have \"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", - "kind": "StringLiteral", - "offset": 862, - "length": 14, - "value": "\" implementation\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationSequenceProvider.swift", - "kind": "BooleanLiteral", - "offset": 375, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationSequenceProvider.swift", - "kind": "BooleanLiteral", - "offset": 504, + "offset": 173, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 2736, - "length": 4, - "value": "true" + "value": "\"api\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 2843, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", + "kind": "StringLiteral", + "offset": 218, + "length": 6, + "value": "\"load\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6139, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", + "kind": "StringLiteral", + "offset": 268, + "length": 11, + "value": "\"get_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", "kind": "BooleanLiteral", - "offset": 6173, + "offset": 651, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6751, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "kind": "StringLiteral", + "offset": 835, + "length": 43, + "value": "\"Legacy doesnt have \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6878, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "kind": "StringLiteral", + "offset": 862, + "length": 14, + "value": "\" implementation\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/JSONSerialization.Object.swift", @@ -13135,238 +14739,196 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4216, - "length": 7, - "value": "\"s_nrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4262, - "length": 6, - "value": "\"s_wd\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 8, - "value": "\"s_wvrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4359, + "offset": 4069, "length": 7, "value": "\"s_ntf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4409, + "offset": 4119, "length": 7, "value": "\"s_pte\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4455, + "offset": 4165, "length": 8, "value": "\"s_init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4500, + "offset": 4210, "length": 9, "value": "\"tsi_prw\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4553, + "offset": 4263, "length": 5, "value": "\"nwc\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4309, "length": 5, "value": "\"wac\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4645, + "offset": 4355, "length": 7, "value": "\"s_din\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4683, + "offset": 4393, "length": 9, "value": "\"scar_bm\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4735, + "offset": 4445, "length": 9, "value": "\"scar_bn\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4216, - "length": 7, - "value": "\"s_nrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4262, - "length": 6, - "value": "\"s_wd\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 8, - "value": "\"s_wvrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4359, + "offset": 4069, "length": 7, "value": "\"s_ntf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4409, + "offset": 4119, "length": 7, "value": "\"s_pte\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4455, + "offset": 4165, "length": 8, "value": "\"s_init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4500, + "offset": 4210, "length": 9, "value": "\"tsi_prw\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4553, + "offset": 4263, "length": 5, "value": "\"nwc\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4309, "length": 5, "value": "\"wac\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4645, + "offset": 4355, "length": 7, "value": "\"s_din\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4683, + "offset": 4393, "length": 9, "value": "\"scar_bm\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4735, + "offset": 4445, "length": 9, "value": "\"scar_bn\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 6030, + "offset": 5390, "length": 5, "value": "\"dis\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "BooleanLiteral", - "offset": 7579, + "offset": 6939, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 7892, + "offset": 7252, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 7926, + "offset": 7286, "length": 6, "value": "\"next\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "BooleanLiteral", - "offset": 8057, + "offset": 7417, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8184, + "offset": 7544, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8206, + "offset": 7566, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8229, + "offset": 7589, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/LocalNativeConfigurationStorage.swift", "kind": "BooleanLiteral", - "offset": 218, + "offset": 324, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/LocalNativeConfigurationStorage.swift", "kind": "BooleanLiteral", - "offset": 586, + "offset": 692, "length": 4, "value": "true" }, @@ -13646,22 +15208,8 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", "kind": "StringLiteral", - "offset": 1745, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", - "kind": "Dictionary", - "offset": 1787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", - "kind": "StringLiteral", - "offset": 1791, - "length": 1, + "offset": 1790, + "length": 2, "value": "\"\"" }, { @@ -13776,6 +15324,20 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSender.swift", + "kind": "FloatLiteral", + "offset": 743, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSender.swift", + "kind": "Dictionary", + "offset": 782, + "length": 3, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSenderCondition.swift", "kind": "BooleanLiteral", @@ -13884,119 +15446,133 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 789, - "length": 7, - "value": "\"cache\"" + "offset": 839, + "length": 12, + "value": "\"load_cache\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 889, + "offset": 944, "length": 18, "value": "\"create_ad_object\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 993, + "offset": 1048, "length": 9, "value": "\"webview\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1039, + "offset": 1094, "length": 24, "value": "\"load_started_ad_viewer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1106, + "offset": 1161, "length": 20, "value": "\"webview_terminated\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1207, + "offset": 1274, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", + "kind": "StringLiteral", + "offset": 1368, "length": 16, "value": "\"memory_warning\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1315, + "offset": 1476, "length": 15, "value": "\"gateway_token\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1370, + "offset": 1531, "length": 23, "value": "\"gateway_token_started\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1456, + "offset": 1617, "length": 7, "value": "\"state\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1509, - "length": 4, - "value": "\"hb\"" + "offset": 1661, + "length": 6, + "value": "\"sync\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1569, - "length": 5, - "value": "\"imp\"" + "offset": 1706, + "length": 8, + "value": "\"reason\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1613, - "length": 9, - "value": "\"ad_type\"" + "offset": 1758, + "length": 14, + "value": "\"reason_debug\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1659, - "length": 6, - "value": "\"sync\"" + "offset": 1810, + "length": 7, + "value": "\"cache\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1704, - "length": 8, - "value": "\"reason\"" + "offset": 1855, + "length": 7, + "value": "\"first\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1756, - "length": 14, - "value": "\"reason_debug\"" + "offset": 1902, + "length": 10, + "value": "\"is_retry\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", + "kind": "StringLiteral", + "offset": 1951, + "length": 8, + "value": "\"source\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "IntegerLiteral", - "offset": 1812, + "offset": 2001, "length": 2, "value": "-1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "Array", - "offset": 1856, + "offset": 2045, "length": 102, "value": "[\"load_success\", \"load_failure\", \"show_success\", \"show_failure\"]" }, @@ -14024,87 +15600,136 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2205, + "offset": 2531, "length": 5, "value": "\"iso\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2236, + "offset": 2562, "length": 5, "value": "\"plt\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2280, + "offset": 2606, "length": 5, "value": "\"sdk\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2320, + "offset": 2646, "length": 8, "value": "\"system\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 4, + "value": "\"tm\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "Dictionary", - "offset": 2517, + "offset": 2911, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2813, + "offset": 3207, "length": 7, "value": "\"value\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2848, + "offset": 3242, "length": 15, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2862, + "offset": 3256, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2889, + "offset": 3283, "length": 10, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2898, + "offset": 3292, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "Dictionary", - "offset": 3047, + "offset": 3441, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 3533, + "offset": 3927, "length": 7, "value": "\"Apple\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4283, + "length": 16, + "value": "\"mediation.name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4331, + "length": 8, + "value": "\"m_name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 19, + "value": "\"mediation.version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4450, + "length": 7, + "value": "\"m_ver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4522, + "length": 27, + "value": "\"mediation.adapter_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4581, + "length": 10, + "value": "\"m_ad_ver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/MetricsNames.swift", "kind": "StringLiteral", @@ -14430,84 +16055,98 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "FloatLiteral", - "offset": 907, + "offset": 938, "length": 4, - "value": "10.0" + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 933, + "offset": 964, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 957, + "offset": 988, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 1225, + "offset": 1256, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1287, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 1285, + "offset": 1316, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1323, + "offset": 1354, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "Array", - "offset": 1354, + "offset": 1385, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1933, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1963, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1631, + "length": 4, + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1993, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1643, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 2191, + "offset": 2364, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 2395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 2593, "length": 5, "value": "false" }, @@ -15253,6 +16892,34 @@ "length": 7, "value": "1000.0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 126, + "length": 9, + "value": "\"Unity3d\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 168, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 10, + "value": "\"omsdk-v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 24, + "value": "\"omid-session-client-v1\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventBuilder.swift", "kind": "StringLiteral", @@ -15263,21 +16930,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1692, + "offset": 1552, "length": 11, "value": "\"operative\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1740, + "offset": 1600, "length": 22, "value": "\"operative_event_sent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1804, + "offset": 1664, "length": 28, "value": "\"saved_operative_event_sent\"" }, @@ -15387,9 +17054,9 @@ "value": "\"MuteSwitchDetection.aiff\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/PaymentTransactionObserverFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/Observer\/PaymentTransactionObserverFactory.swift", "kind": "StringLiteral", - "offset": 455, + "offset": 533, "length": 15, "value": "\"UnityAds.PaymentObserver\"" }, @@ -15407,6 +17074,13 @@ "length": 33, "value": "\"performance.measurer.sync.queue\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/Performance\/PerformanceMeasurer.swift", + "kind": "BooleanLiteral", + "offset": 861, + "length": 4, + "value": "true" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/RequestStorage\/PersistentRequestStorage.swift", "kind": "StringLiteral", @@ -15498,136 +17172,136 @@ "length": 18, "value": "\"UnityAds.PrivacyAPIReceiver\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "StringLiteral", - "offset": 1602, - "length": 17, - "value": "\"GameId disabled\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 294, + "offset": 321, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 431, + "offset": 458, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 520, + "offset": 547, "length": 5, "value": "\"pas\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 552, + "offset": 579, "length": 5, "value": "\"url\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 585, + "offset": 612, "length": 6, "value": "\"hash\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 632, + "offset": 659, "length": 5, "value": "\"snb\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 520, + "offset": 691, + "length": 4, + "value": "\"nl\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 547, "length": 5, "value": "\"pas\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 552, + "offset": 579, "length": 5, "value": "\"url\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 585, + "offset": 612, "length": 6, "value": "\"hash\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 632, + "offset": 659, "length": 5, "value": "\"snb\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 4, + "value": "\"nl\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "BooleanLiteral", - "offset": 1127, + "offset": 1185, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 1227, + "offset": 1268, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 1256, + "offset": 1365, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 1394, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "BooleanLiteral", - "offset": 1299, + "offset": 1437, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/ProductInfoReader.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 1469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Products\/Reader\/ProductInfoReaderSK1.swift", "kind": "Dictionary", - "offset": 394, + "offset": 200, "length": 3, "value": "[]" }, @@ -16353,86 +18027,114 @@ "value": "\"UnityAds.SDKConfigurationStorageObjcBridge\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 889, + "offset": 635, "length": 22, "value": "\"SDKInitializer.queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "Array", - "offset": 1070, + "offset": 816, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 1629, + "offset": 1375, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "Array", - "offset": 3843, + "offset": 3693, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 4119, + "offset": 3969, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 4272, + "offset": 4259, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4481, + "offset": 4490, "length": 17, "value": "\"not_initialized\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4543, + "offset": 4552, "length": 14, "value": "\"initializing\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4608, "length": 8, "value": "\"failed\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4654, + "offset": 4663, "length": 13, "value": "\"initialized\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 4835, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 4897, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 5033, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 5189, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4780, + "offset": 5556, "length": 22, "value": "\"game_id_not_a_number\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4817, + "offset": 5593, "length": 27, "value": "\"GameId should be a number\"" }, @@ -16443,6 +18145,27 @@ "length": 23, "value": "\"UnityAds.SDKInitializerOBJBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 142, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 526, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithFirstInit.swift", "kind": "BooleanLiteral", @@ -16450,6 +18173,27 @@ "length": 4, "value": "true" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1360, + "length": 12, + "value": "\"initialize\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1415, + "length": 25, + "value": "\"initialize_game_id_same\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 28, + "value": "\"initialize_game_id_changed\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Settings\/SDKSettingsStorage.swift", "kind": "IntegerLiteral", @@ -16569,17 +18313,241 @@ "length": 24, "value": "\"UnityAds.SKOverlayDelegateWrapper\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 23, + "value": "\"transactionIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 259, + "length": 17, + "value": "\"transactionDate\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 18, + "value": "\"transactionState\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 405, + "length": 21, + "value": "\"originalTransaction\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 478, + "length": 9, + "value": "\"payment\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 698, + "length": 19, + "value": "\"productIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 10, + "value": "\"quantity\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 21, + "value": "\"applicationUsername\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 180, + "length": 19, + "value": "\"productIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 240, + "length": 16, + "value": "\"localizedTitle\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 22, + "value": "\"localizedDescription\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 14, + "value": "\"downloadable\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 7, + "value": "\"price\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 13, + "value": "\"priceLocale\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 556, + "length": 20, + "value": "\"subscriptionPeriod\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 642, + "length": 19, + "value": "\"introductoryPrice\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 29, + "value": "\"subscriptionGroupIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 904, + "length": 11, + "value": "\"discounts\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1029, + "length": 16, + "value": "\"familySharable\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1330, + "length": 12, + "value": "\"identifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1380, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1433, + "length": 20, + "value": "\"subscriptionPeriod\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1514, + "length": 13, + "value": "\"priceLocale\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1581, + "length": 7, + "value": "\"price\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1617, + "length": 13, + "value": "\"paymentMode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1674, + "length": 17, + "value": "\"numberOfPeriods\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 15, + "value": "\"numberOfUnits\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2186, + "length": 16, + "value": "\"currencySymbol\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 14, + "value": "\"currencyCode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2341, + "length": 13, + "value": "\"countryCode\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", "kind": "IntegerLiteral", - "offset": 967, + "offset": 924, "length": 2, "value": "-1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2402, + "length": 1, + "value": "0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", "kind": "FloatLiteral", - "offset": 1994, + "offset": 2553, "length": 6, "value": "1000.0" }, @@ -16593,126 +18561,189 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 950, + "offset": 962, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 995, + "offset": 1007, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 1045, + "offset": 1057, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 1947, + "offset": 1959, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "BooleanLiteral", - "offset": 2094, + "offset": 2106, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 5507, + "offset": 5573, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "Dictionary", + "offset": 5746, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "Dictionary", + "offset": 5784, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 5858, + "offset": 5989, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 6106, + "offset": 6237, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 6135, + "offset": 6266, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 1978, + "offset": 1990, "length": 25, "value": "\"UnityAds.ServiceProviderObjCBridge\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6885, + "offset": 7466, "length": 3, "value": "\"0\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6933, + "offset": 7514, "length": 3, "value": "\"1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6978, + "offset": 7559, "length": 3, "value": "\"3\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7028, + "offset": 7609, "length": 3, "value": "\"2\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7823, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7871, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7921, + "length": 1, + "value": "3" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7135, + "offset": 7974, + "length": 7, + "value": "\"Error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "StringLiteral", + "offset": 7998, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "BooleanLiteral", + "offset": 8021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "StringLiteral", + "offset": 8230, "length": 53, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7187, + "offset": 8282, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 7488, + "offset": 8583, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 8382, + "offset": 9477, "length": 3, "value": "[]" }, @@ -16803,42 +18834,42 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "BooleanLiteral", - "offset": 1938, + "offset": 1893, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "BooleanLiteral", - "offset": 2116, + "offset": 2071, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "Array", - "offset": 2285, + "offset": 2240, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 2646, + "offset": 2601, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 2984, + "offset": 2939, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 3089, + "offset": 3044, "length": 2, "value": "\"\"" }, @@ -16892,63 +18923,56 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Audio\/SoundPlayer.swift", - "kind": "IntegerLiteral", - "offset": 991, - "length": 5, - "value": "1000" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 475, "length": 133, "value": "\"Initializing Unity Ads \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 513, "length": 1, "value": "\" \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 530, "length": 4, "value": "\" with game id \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 569, "length": 2, "value": "\" in \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 580, "length": 4, "value": "\" mode, session \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 607, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 814, "length": 6, "value": "\"test\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 823, "length": 12, @@ -16957,28 +18981,28 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "Array", - "offset": 630, + "offset": 675, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 1665, + "offset": 1373, "length": 7, "value": "\"apple\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 1743, + "offset": 1451, "length": 3, "value": "\",\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 2096, + "offset": 1804, "length": 5, "value": "\"ios\"" }, @@ -17080,10 +19104,24 @@ "length": 3, "value": "\".\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", + "kind": "BooleanLiteral", + "offset": 1529, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", "kind": "StringLiteral", - "offset": 1097, + "offset": 1273, "length": 27, "value": "\"UnityAds.StoreProductDelegateWrapper\"" }, @@ -17094,6 +19132,20 @@ "length": 41, "value": "\"Could not create Data string using utf8\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Bool.swift", + "kind": "StringLiteral", + "offset": 78, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Bool.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 7, + "value": "\"false\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Data.swift", "kind": "StringLiteral", @@ -17185,6 +19237,20 @@ "length": 30, "value": "\"Cannot retrieve base address\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Extension\/Swift.Dictionary.Options.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 10, + "value": "\"objectId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Extension\/Swift.Dictionary.Options.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 10, + "value": "\"adMarkup\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Dictionary.swift", "kind": "StringLiteral", @@ -17472,6 +19538,13 @@ "length": 10, "value": "\"UnityAds\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/TCFStringProvider.swift", + "kind": "StringLiteral", + "offset": 351, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/TaskMetricsNames.swift", "kind": "StringLiteral", @@ -18098,49 +20171,49 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1072, + "offset": 1168, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1122, + "offset": 1218, "length": 5, "value": "1000" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1543, + "offset": 1639, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "StringLiteral", - "offset": 1775, + "offset": 2032, "length": 15, "value": "\"kern.boottime\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1813, + "offset": 2070, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "FloatLiteral", - "offset": 1914, + "offset": 2171, "length": 11, "value": "1000000.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "StringLiteral", - "offset": 2583, + "offset": 2885, "length": 5, "value": "\"ZZZ\"" }, @@ -18193,6 +20266,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Store\/TransactionConstants.swift", + "kind": "StringLiteral", + "offset": 101, + "length": 28, + "value": "\"lastSentIAPTransactionDate\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/History\/TransactionHistoryReader.swift", + "kind": "Array", + "offset": 687, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/PropertyWrappers\/TupleArrayDecodable.swift", "kind": "IntegerLiteral", @@ -18224,161 +20311,161 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 916, + "offset": 943, "length": 38, "value": "\"00000000-0000-0000-0000-000000000000\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 2027, + "offset": 2200, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 2299, + "offset": 2472, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 2391, + "offset": 2564, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 2870, + "offset": 3043, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "Array", - "offset": 3035, + "offset": 3208, "length": 52, "value": "[\"x86_64\", \"i386\"]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3181, + "offset": 3354, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "Array", - "offset": 3224, + "offset": 3397, "length": 190, "value": "[\"\/Applications\/Cydia.app\", \"\/Library\/MobileSubstrate\/MobileSubstrate.dylib\", \"\/bin\/bash\", \"\/usr\/sbin\/sshd\", \"\/etc\/apt\"]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3519, + "offset": 3692, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 3571, + "offset": 3744, "length": 24, "value": "\"\/private\/jailbreak.txt\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 3612, + "offset": 3785, "length": 33, "value": "\"Check if a device is jailbroken\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3730, + "offset": 3903, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3903, + "offset": 4076, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3934, + "offset": 4107, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4068, + "offset": 4241, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4239, + "offset": 4412, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4382, + "offset": 4555, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4524, + "offset": 4697, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4617, + "offset": 4790, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4853, + "offset": 5026, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4893, + "offset": 5066, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 5004, + "offset": 5177, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIScreen.Convenience.swift", "kind": "IntegerLiteral", - "offset": 857, + "offset": 990, "length": 1, "value": "1" }, @@ -18634,6 +20721,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAds.swift", + "kind": "BooleanLiteral", + "offset": 483, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAds.swift", + "kind": "BooleanLiteral", + "offset": 968, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/UnityAdsConfig.swift", "kind": "IntegerLiteral", @@ -18662,97 +20763,370 @@ "length": 2, "value": "-1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 3, + "value": "\"m\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 589, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 6, + "value": "\"sTkn\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 695, + "length": 12, + "value": "\"deviceMake\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 7, + "value": "\"shSid\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 8, + "value": "\"gameId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 3, + "value": "\"m\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 589, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 6, + "value": "\"sTkn\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 695, + "length": 12, + "value": "\"deviceMake\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 7, + "value": "\"shSid\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 8, + "value": "\"gameId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "Dictionary", + "offset": 1608, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1771, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1853, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2303, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2303, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "Dictionary", + "offset": 3490, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3647, + "length": 16, + "value": "\"native_\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 66, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3793, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3801, + "length": 5, + "value": "\"_time\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4407, + "length": 5, + "value": "\"iso\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4437, + "length": 5, + "value": "\"plt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4469, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4504, + "length": 8, + "value": "\"system\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4407, + "length": 5, + "value": "\"iso\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4437, + "length": 5, + "value": "\"plt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4469, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4504, + "length": 8, + "value": "\"system\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "Array", - "offset": 3090, + "offset": 3180, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "IntegerLiteral", - "offset": 4142, + "offset": 4280, "length": 3, "value": "200" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "IntegerLiteral", - "offset": 4148, + "offset": 4286, "length": 3, "value": "299" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 1551, + "offset": 1593, "length": 24, "value": "\"application\/x-protobuf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "BooleanLiteral", - "offset": 1705, + "offset": 1747, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2223, + "offset": 2265, "length": 6, "value": "\"init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2271, + "offset": 2313, "length": 11, "value": "\"adRequest\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2337, + "offset": 2379, "length": 10, "value": "\"adPlayer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2397, + "offset": 2439, "length": 11, "value": "\"operative\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2461, + "offset": 2503, "length": 15, "value": "\"initCompleted\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2519, + "offset": 2561, "length": 12, "value": "\"diagnostic\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2580, + "offset": 2622, "length": 9, "value": "\"refresh\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2638, + "offset": 2680, "length": 15, "value": "\"privacyUpdate\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 17, + "value": "\"transactionData\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/UnityAdsMetricsConfig.swift", "kind": "StringLiteral", @@ -19001,28 +21375,28 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4081, + "offset": 3925, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4193, + "offset": 4037, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4516, + "offset": 4360, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "BooleanLiteral", - "offset": 5946, + "offset": 5855, "length": 5, "value": "false" }, @@ -19071,105 +21445,105 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "Dictionary", - "offset": 2584, + "offset": 2619, "length": 98, "value": "[(\"Content-Encoding\", \"gzip\"), (\"Content-Type\", \"application\/json\")]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 2921, + "offset": 2956, "length": 10, "value": "\"callType\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3164, + "offset": 3199, "length": 54, "value": "\"Could not create a request. Metrics url is not ready\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3272, + "offset": 3307, "length": 54, "value": "\"Could not create a request. Webview url is not valid\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3391, + "offset": 3426, "length": 6, "value": "\"POST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3413, + "offset": 3448, "length": 5, "value": "\"GET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3391, + "offset": 3426, "length": 6, "value": "\"POST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3413, + "offset": 3448, "length": 5, "value": "\"GET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3549, + "offset": 3584, "length": 11, "value": "\"token_srr\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3603, + "offset": 3638, "length": 9, "value": "\"privacy\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "IntegerLiteral", - "offset": 411, + "offset": 369, "length": 3, "value": "200" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "IntegerLiteral", - "offset": 417, + "offset": 375, "length": 3, "value": "299" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "StringLiteral", - "offset": 1116, + "offset": 1074, "length": 12, "value": "\"Sync.queue\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", - "kind": "StringLiteral", - "offset": 5122, + "kind": "BooleanLiteral", + "offset": 1701, "length": 4, - "value": "\"1:\"" + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "Dictionary", - "offset": 8694, + "offset": 8836, "length": 3, "value": "[]" }, @@ -19285,94 +21659,206 @@ "length": 22, "value": "\"expected destination\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "StringLiteral", + "offset": 809, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2371, + "offset": 2428, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2419, + "offset": 2476, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2562, + "offset": 2619, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3680, + "offset": 3737, "length": 9, "value": "\"gateway\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3791, + "offset": 3848, "length": 59, "value": "\"No Payload nor error found in the response \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3849, + "offset": 3906, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3965, + "offset": 4022, "length": 52, "value": "\"Proto value is nil for the response \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4016, + "offset": 4073, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4132, + "offset": 4189, "length": 55, "value": "\"Response type mismatch for the request \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4186, + "offset": 4243, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4323, + "offset": 4380, "length": 65, "value": "\"Payload error \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4356, + "offset": 4413, "length": 3, "value": "\" for the request \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4387, + "offset": 4444, "length": 1, "value": "\"\"" }, @@ -19407,14 +21893,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/UniversalResponseStorage.swift", "kind": "StringLiteral", - "offset": 1299, + "offset": 1362, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/UniversalResponseStorage.swift", "kind": "BooleanLiteral", - "offset": 1360, + "offset": 1423, "length": 5, "value": "false" }, @@ -19435,14 +21921,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", "kind": "StringLiteral", - "offset": 332, + "offset": 290, + "length": 17, + "value": "\"IABTCF_TCString\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", + "kind": "StringLiteral", + "offset": 391, "length": 22, "value": "\"com.unity.ads.\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", "kind": "StringLiteral", - "offset": 353, + "offset": 412, "length": 1, "value": "\"\"" }, @@ -19493,7 +21986,7 @@ "kind": "StringLiteral", "offset": 58, "length": 8, - "value": "\"4.10.0\"" + "value": "\"4.12.2\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", @@ -19502,223 +21995,216 @@ "length": 3, "value": "\".\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", - "kind": "StringLiteral", - "offset": 205, - "length": 1, - "value": "\"0\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", "kind": "IntegerLiteral", - "offset": 302, - "length": 1, - "value": "0" + "offset": 131, + "length": 6, + "value": "41202" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapter.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapter.swift", "kind": "StringLiteral", "offset": 45, "length": 22, "value": "\"UnityAds.WKScriptHandlerAdapter\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 591, "length": 15, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 605, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 45, "length": 32, "value": "\"UnityAds.WKScriptHandlerAdapterWithLogger\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 942, "length": 141, "value": "\"\n ___________________\n 📧 Received ScriptMessage:\n Name: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 1045, "length": 4, "value": "\"\n Body: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 1071, "length": 12, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerBase.swift", "kind": "StringLiteral", - "offset": 2039, + "offset": 2090, "length": 11, "value": "\"not_found\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerBase.swift", "kind": "StringLiteral", - "offset": 2065, + "offset": 2116, "length": 19, "value": "\"Webview not found\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 695, - "value": "\"\nfunction stringifySafe(obj) {\n try {\n return JSON.stringify(obj)\n }\n catch (err) {\n return \"Stringify error\"\n }\n}\n\nfunction log(type, args) {\n window.webkit.messageHandlers.\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 510, - "length": 1, - "value": "\".postMessage(\n `${Object.values(args)\n .map(v => typeof(v) === \"undefined\" ? \"undefined\" : typeof(v) === \"object\" ? stringifySafe(v) : v.toString())\n .map(v => v.substring(0, 3000)) \/\/ Limit msg to 3000 chars\n .join(\", \")}`\n )\n}\n\nlet originalLog = console.log\n\nconsole.log = function() { log(\"log\", arguments); originalLog.apply(null, arguments) }\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "BooleanLiteral", - "offset": 1256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1471, - "length": 9, - "value": "\"JS LOGS\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1491, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1507, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 45, - "length": 13, - "value": "\"UnityAds.WebLogHandler\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 413, + "offset": 626, "length": 11, "value": "\"userAgent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 558, + "offset": 771, "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 617, + "offset": 854, "length": 21, "value": "\"navigator.userAgent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 762, + "offset": 966, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "FloatLiteral", - "offset": 873, - "length": 4, - "value": "0.01" + "offset": 1070, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 541, + "offset": 596, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 602, + "offset": 657, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 665, + "offset": 720, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 705, + "offset": 760, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 760, + "offset": 815, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "IntegerLiteral", - "offset": 939, + "offset": 994, "length": 3, "value": "768" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "IntegerLiteral", - "offset": 952, + "offset": 1007, "length": 5, "value": "1024" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 695, + "value": "\"\nfunction stringifySafe(obj) {\n try {\n return JSON.stringify(obj)\n }\n catch (err) {\n return \"Stringify error\"\n }\n}\n\nfunction log(type, args) {\n window.webkit.messageHandlers.\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 510, + "length": 1, + "value": "\".postMessage(\n `${Object.values(args)\n .map(v => typeof(v) === \"undefined\" ? \"undefined\" : typeof(v) === \"object\" ? stringifySafe(v) : v.toString())\n .map(v => v.substring(0, 3000)) \/\/ Limit msg to 3000 chars\n .join(\", \")}`\n )\n}\n\nlet originalLog = console.log\n\nconsole.log = function() { log(\"log\", arguments); originalLog.apply(null, arguments) }\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "BooleanLiteral", + "offset": 1256, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1471, + "length": 9, + "value": "\"JS LOGS\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1491, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1507, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 45, + "length": 13, + "value": "\"UnityAds.WebLogHandler\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WebUserAgentReader.swift", "kind": "StringLiteral", @@ -19761,6 +22247,13 @@ "length": 24, "value": "\"UnityAds.WebViewApiAdUnitReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiAdValidatorReceiver.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 29, + "value": "\"UnityAds.WebViewApiAdValidatorReceiver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiAdViewerReceiver.swift", "kind": "StringLiteral", @@ -19887,20 +22380,6 @@ "length": 1, "value": "0" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", - "kind": "StringLiteral", - "offset": 290, - "length": 21, - "value": "\"USRVApiNotification\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 25, - "value": "\"addNotificationObserver\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", "kind": "StringLiteral", @@ -19911,7 +22390,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", "kind": "Array", - "offset": 764, + "offset": 746, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", + "kind": "Array", + "offset": 1007, "length": 2, "value": "[]" }, @@ -20062,6 +22548,27 @@ "length": 27, "value": "\"UnityAds.WebViewApiSKOverlayReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 125, + "length": 17, + "value": "\"UADSApiAdViewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 259, + "length": 17, + "value": "\"canMakePayments\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 28, + "value": "\"UnityAds.WebViewApiSKPaymentsReceiver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiShowEventsReceiver.swift", "kind": "StringLiteral", @@ -20076,6 +22583,20 @@ "length": 28, "value": "\"UnityAds.WebViewApiShowEventsReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewAppBuilder.swift", + "kind": "BooleanLiteral", + "offset": 982, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewAppBuilder.swift", + "kind": "Array", + "offset": 1046, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/WebViewAppSheetPresenter.swift", "kind": "StringLiteral", @@ -20188,17 +22709,31 @@ "length": 21, "value": "\"UnityAds.WebViewDelegateBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 1329, + "length": 4, + "value": "true" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", "kind": "StringLiteral", - "offset": 31, + "offset": 351, "length": 26, "value": "\"UnityAds.WebViewDelegateWithMetrics\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", "kind": "StringLiteral", - "offset": 1564, + "offset": 2114, "length": 17, "value": "\"wkwebview_error\"" }, @@ -20233,21 +22768,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1186, + "offset": 1187, "length": 17, "value": "\"getScreenHeight\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1399, + "offset": 1401, "length": 26, "value": "\"getAdvertisingTrackingId\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1635, + "offset": 1637, "length": 19, "value": "\"getConnectionType\"" }, @@ -20261,189 +22796,175 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 84, - "length": 14, - "value": "\"NOTIFICATION\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", - "kind": "StringLiteral", - "offset": 159, + "offset": 108, "length": 10, "value": "\"ADVIEWER\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 198, - "length": 8, - "value": "\"ACTION\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", - "kind": "StringLiteral", - "offset": 237, + "offset": 149, "length": 10, "value": "\"APPSHEET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 277, + "offset": 189, "length": 9, "value": "\"REQUEST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 320, + "offset": 232, "length": 13, "value": "\"SKADNETWORK\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 363, + "offset": 275, "length": 11, "value": "\"SKOVERLAY\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 448, + "offset": 360, "length": 22, "value": "\"ON_VISIBILITY_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 505, + "offset": 417, "length": 16, "value": "\"ON_MUTE_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 558, + "offset": 470, "length": 18, "value": "\"ON_VOLUME_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 642, + "offset": 554, "length": 19, "value": "\"APPSHEET_PREPARED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 690, + "offset": 602, "length": 17, "value": "\"APPSHEET_OPENED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 736, + "offset": 648, "length": 17, "value": "\"APPSHEET_CLOSED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 782, + "offset": 694, "length": 17, "value": "\"APPSHEET_FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 864, + "offset": 776, "length": 10, "value": "\"COMPLETE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 903, + "offset": 815, "length": 8, "value": "\"FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 987, + "offset": 899, "length": 18, "value": "\"START_IMPRESSION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1041, + "offset": 953, "length": 16, "value": "\"END_IMPRESSION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1093, + "offset": 1005, "length": 10, "value": "\"_SUCCESS\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1138, + "offset": 1050, "length": 9, "value": "\"_FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1217, + "offset": 1129, "length": 18, "value": "\"DID_FAIL_TO_LOAD\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1279, + "offset": 1191, "length": 25, "value": "\"WILL_START_PRESENTATION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1348, + "offset": 1260, "length": 25, "value": "\"DID_FINISH_PRESENTATION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1414, + "offset": 1326, "length": 22, "value": "\"WILL_START_DISMISSAL\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1477, + "offset": 1389, "length": 22, "value": "\"DID_FINISH_DISMISSAL\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1606, + "offset": 1518, "length": 9, "value": "\"STORAGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1642, + "offset": 1554, "length": 5, "value": "\"SET\"" }, @@ -20455,42 +22976,42 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "Array", "offset": 555, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 603, "length": 23, "value": "\"WebViewMediator.Queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1498, "length": 18, "value": "\"missing_receiver\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1531, "length": 72, "value": "\"Could not found message receiver with name: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1583, "length": 3, "value": "\" for topic \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1602, "length": 2, @@ -20755,20 +23276,6 @@ "length": 11, "value": "\"handleLog\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMessageSenderBuilder.swift", - "kind": "BooleanLiteral", - "offset": 951, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMessageSenderBuilder.swift", - "kind": "BooleanLiteral", - "offset": 1009, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Decorators\/WebViewMessageSenderWithGate.swift", "kind": "StringLiteral", @@ -20779,51 +23286,58 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 503, + "offset": 615, "length": 22, "value": "\"WebViewMessageSender\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 557, + "offset": 669, "length": 38, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 594, + "offset": 706, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 1000, + "offset": 1072, "length": 9, "value": "\"Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 1039, + "offset": 1111, "length": 18, "value": "\"Outgoing message\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserverPlaceholder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserver.swift", + "kind": "Dictionary", + "offset": 1400, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", "kind": "StringLiteral", - "offset": 296, - "length": 12, - "value": "\"\"" + "offset": 76, + "length": 4, + "value": "\"OK\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserverPlaceholder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", "kind": "StringLiteral", - "offset": 307, - "length": 2, - "value": "\"\"" + "offset": 98, + "length": 7, + "value": "\"ERROR\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", @@ -20840,14310 +23354,17880 @@ "value": "\"ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", - "kind": "StringLiteral", - "offset": 76, - "length": 4, - "value": "\"OK\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Messages\/WebViewRequestMessageBase.swift", + "kind": "StringLiteral", + "offset": 98, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 16, + "value": "\"USRVApiStorage\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 25, + "value": "\"UnityAds.WebViewStorageApiReceiver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2549, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "kind": "StringLiteral", + "offset": 115, + "length": 51, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "kind": "StringLiteral", + "offset": 137, + "length": 1, + "value": "\"?platform=ios&mode=ad-viewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewUrlOpener.swift", + "kind": "Dictionary", + "offset": 801, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "StringLiteral", + "offset": 1064, + "length": 4, + "value": "\"CN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 5, + "value": "\"CHN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "Array", + "offset": 1145, + "length": 81, + "value": "[\"Asia\/Kashgar\", \"Asia\/Urumqi\", \"Asia\/Chongqing\", \"Asia\/Shanghai\", \"Asia\/Harbin\"]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4052, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4289, + "length": 23, + "value": "\".AdDataRefreshRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4381, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4401, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4426, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4446, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4473, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4493, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4521, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4541, + "length": 16, + "value": "\"campaign_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4564, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4584, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4618, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4638, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5085, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5179, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5274, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5370, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5462, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6166, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6292, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6419, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6542, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6694, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6832, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7051, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7120, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7191, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7254, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7335, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7406, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7485, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 24, + "value": "\".AdDataRefreshResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 9, + "value": "\"ad_data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2678, + "length": 17, + "value": "\"ad_data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2702, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2722, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2765, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2795, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2811, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3242, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3324, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3413, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3502, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3596, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4222, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4308, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4436, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4574, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4685, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4951, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5083, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5191, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5209, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1536, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2350, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2588, + "length": 24, + "value": "\".AdPlayerConfigRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2681, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2701, + "length": 21, + "value": "\"configuration_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2729, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2749, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2770, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2790, + "length": 17, + "value": "\"webview_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2814, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2834, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3285, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3379, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3467, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3566, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4310, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4458, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4576, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4927, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5008, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5069, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5087, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3077, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3316, + "length": 25, + "value": "\".AdPlayerConfigResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3410, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3430, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3453, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3473, + "length": 26, + "value": "\"impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3506, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3526, + "length": 34, + "value": "\"impression_configuration_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3567, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3587, + "length": 23, + "value": "\"webview_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3617, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3637, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3667, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3683, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4203, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4302, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4408, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4507, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4601, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5203, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5351, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5406, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5509, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5635, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5777, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5888, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6190, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6285, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6362, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6433, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6480, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6559, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1193, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1224, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1367, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1398, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2004, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2029, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 7996, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8159, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8175, + "length": 29, + "value": "\"AD_REQUEST_TYPE_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8211, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8227, + "length": 28, + "value": "\"AD_REQUEST_TYPE_FULLSCREEN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8262, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8278, + "length": 24, + "value": "\"AD_REQUEST_TYPE_BANNER\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8517, + "length": 13, + "value": "\".BannerSize\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8599, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8629, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8645, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9077, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9158, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9442, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9473, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9552, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9776, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9837, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9855, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10071, + "length": 12, + "value": "\".AdRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10152, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10172, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10197, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10217, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10244, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10264, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10292, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10312, + "length": 16, + "value": "\"campaign_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10335, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10355, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10389, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10409, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10430, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10450, + "length": 34, + "value": "\"request_impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10491, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10511, + "length": 13, + "value": "\"scar_signal\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10531, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10551, + "length": 17, + "value": "\"webview_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10575, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10592, + "length": 5, + "value": "\"tcf\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10604, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10625, + "length": 17, + "value": "\"ad_request_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10649, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10670, + "length": 13, + "value": "\"banner_size\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 11089, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13165, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13265, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13366, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13468, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13566, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13672, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13767, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13879, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13972, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14069, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14156, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14252, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14955, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15091, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15228, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15361, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15529, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15670, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 15734, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15847, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15985, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16113, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16234, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16365, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16496, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 16958, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17044, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17312, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17576, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17718, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17872, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17894, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 18009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 18027, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1530, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3413, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3640, + "length": 13, + "value": "\".AdResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3722, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3765, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 26, + "value": "\"impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3818, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3838, + "length": 34, + "value": "\"impression_configuration_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3879, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 23, + "value": "\"webview_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3929, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3949, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3979, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3999, + "length": 9, + "value": "\"ad_data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 4035, + "length": 17, + "value": "\"ad_data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4059, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 4075, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4694, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4800, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4899, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4993, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5075, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5164, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5914, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5969, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6072, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6198, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6340, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6454, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6578, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6689, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6886, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6967, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7062, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7210, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7257, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7318, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7426, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7444, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 1143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 1169, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1509, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1736, + "length": 13, + "value": "\".AllowedPii\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1834, + "length": 6, + "value": "\"idfa\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1863, + "length": 6, + "value": "\"idfv\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2293, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2372, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2574, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2654, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2763, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2938, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2981, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3042, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3060, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 1188, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "Array", + "offset": 3176, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "Array", + "offset": 3277, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3667, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3892, + "length": 11, + "value": "\".Campaign\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 3972, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 14, + "value": "\"data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4013, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4029, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4042, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4062, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4083, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4103, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4137, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4157, + "length": 16, + "value": "\"load_timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4180, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4200, + "length": 16, + "value": "\"show_timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4640, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4727, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4807, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4895, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4994, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5688, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5923, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6071, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6190, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6313, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6870, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6888, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7108, + "length": 16, + "value": "\".CampaignState\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7193, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7213, + "length": 18, + "value": "\"loaded_campaigns\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7238, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7258, + "length": 17, + "value": "\"shown_campaigns\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7699, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7792, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 8112, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 8244, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8510, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8571, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8589, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1151, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1183, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1379, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1403, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2469, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2496, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2522, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2546, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2692, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2719, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2769, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2799, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 3526, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 3773, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7193, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7351, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 98, - "length": 7, - "value": "\"ERROR\"" + "offset": 7367, + "length": 22, + "value": "\"PLATFORM_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Messages\/WebViewRequestMessageBase.swift", - "kind": "StringLiteral", - "offset": 98, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7396, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 206, - "length": 16, - "value": "\"USRVApiStorage\"" + "offset": 7412, + "length": 18, + "value": "\"PLATFORM_ANDROID\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7437, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 31, - "length": 25, - "value": "\"UnityAds.WebViewStorageApiReceiver\"" + "offset": 7453, + "length": 14, + "value": "\"PLATFORM_IOS\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2466, + "offset": 7622, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7638, + "length": 32, + "value": "\"MEDIATION_PROVIDER_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2549, + "offset": 7677, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 115, - "length": 51, - "value": "\"\"" + "offset": 7693, + "length": 27, + "value": "\"MEDIATION_PROVIDER_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", - "kind": "StringLiteral", - "offset": 137, + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7727, "length": 1, - "value": "\"?platform=ios&mode=ad-viewer\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewUrlOpener.swift", - "kind": "Dictionary", - "offset": 801, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7743, + "length": 26, + "value": "\"MEDIATION_PROVIDER_ADMOB\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", - "kind": "StringLiteral", - "offset": 1064, - "length": 4, - "value": "\"CN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7776, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 1106, - "length": 5, - "value": "\"CHN\"" + "offset": 7792, + "length": 24, + "value": "\"MEDIATION_PROVIDER_MAX\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", - "kind": "Array", - "offset": 1145, - "length": 81, - "value": "[\"Asia\/Kashgar\", \"Asia\/Urumqi\", \"Asia\/Chongqing\", \"Asia\/Shanghai\", \"Asia\/Harbin\"]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7823, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4044, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 7839, + "length": 30, + "value": "\"MEDIATION_PROVIDER_LEVELPLAY\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4273, - "length": 23, - "value": "\".AdDataRefreshRequest\"" + "offset": 8084, + "length": 13, + "value": "\".ClientInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4365, + "offset": 8166, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4385, - "length": 18, - "value": "\"session_counters\"" + "offset": 8186, + "length": 13, + "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4410, + "offset": 8206, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4430, - "length": 20, - "value": "\"static_device_info\"" + "offset": 8226, + "length": 18, + "value": "\"sdk_version_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4457, + "offset": 8251, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4477, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 8271, + "length": 9, + "value": "\"game_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4505, + "offset": 8287, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4525, - "length": 16, - "value": "\"campaign_state\"" + "offset": 8303, + "length": 6, + "value": "\"test\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4548, + "offset": 8316, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4568, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 8332, + "length": 10, + "value": "\"platform\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4602, + "offset": 8349, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4622, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 8369, + "length": 20, + "value": "\"mediation_provider\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5069, + "offset": 8396, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 5163, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8416, + "length": 23, + "value": "\"custom_mediation_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5258, + "offset": 8446, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 19, + "value": "\"mediation_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5354, + "offset": 8492, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8512, + "length": 22, + "value": "\"omid_partner_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5446, - "length": 1, - "value": "5" + "offset": 8541, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8562, + "length": 14, + "value": "\"omid_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5545, - "length": 1, - "value": "6" + "offset": 8583, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8604, + "length": 26, + "value": "\"sdk_development_platform\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6150, + "offset": 9054, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6276, + "offset": 9141, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6403, + "offset": 9232, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6526, + "offset": 9315, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6678, + "offset": 9394, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6816, + "offset": 9477, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7035, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7104, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7175, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7238, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9569, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7319, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9666, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7390, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9760, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7451, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9856, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7469, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9946, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1308, + "offset": 10472, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2283, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2513, - "length": 24, - "value": "\".AdDataRefreshResponse\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2606, + "offset": 10556, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2626, - "length": 9, - "value": "\"ad_data\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2642, + "offset": 10687, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2662, - "length": 17, - "value": "\"ad_data_version\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2686, + "offset": 10802, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2706, - "length": 16, - "value": "\"tracking_token\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 10831, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2729, + "offset": 10911, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2749, - "length": 23, - "value": "\"ad_data_refresh_token\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2779, + "offset": 11035, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2795, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3226, + "offset": 11177, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3308, + "offset": 11301, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3397, + "offset": 11426, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3486, + "offset": 11553, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3580, - "length": 1, - "value": "5" + "offset": 11673, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4168, - "length": 1, - "value": "1" + "offset": 11805, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4206, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 11997, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4292, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4420, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12107, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4558, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12150, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4669, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12201, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4874, + "offset": 12270, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4935, + "offset": 12345, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4996, + "offset": 12414, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5067, + "offset": 12487, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5114, + "offset": 12546, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5175, + "offset": 12627, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5193, + "offset": 12688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12706, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 1528, + "offset": 1451, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2342, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2572, - "length": 24, - "value": "\".AdPlayerConfigRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2665, + "offset": 1483, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2685, - "length": 21, - "value": "\"configuration_token\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2713, + "offset": 1510, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 14, - "value": "\"placement_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1544, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2754, + "offset": 1576, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2774, - "length": 17, - "value": "\"webview_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1611, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2798, + "offset": 1643, "length": 1, - "value": "4" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2818, - "length": 27, - "value": "\"impression_opportunity_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1796, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3269, + "offset": 1823, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3363, + "offset": 1857, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3451, + "offset": 1889, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3550, + "offset": 1924, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 1956, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4294, + "offset": 1993, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4442, + "offset": 2692, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4560, + "offset": 2724, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4789, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4846, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4911, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2916, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4992, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2942, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 5053, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "Array", + "offset": 4859, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 5392, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 1484, + "offset": 5562, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", - "kind": "StringLiteral", - "offset": 3069, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3300, - "length": 25, - "value": "\".AdPlayerConfigResponse\"" + "offset": 5578, + "length": 36, + "value": "\"DEVELOPER_CONSENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3394, + "offset": 5621, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3414, - "length": 16, - "value": "\"tracking_token\"" + "offset": 5637, + "length": 31, + "value": "\"DEVELOPER_CONSENT_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3437, + "offset": 5675, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3457, - "length": 26, - "value": "\"impression_configuration\"" + "offset": 5691, + "length": 39, + "value": "\"DEVELOPER_CONSENT_TYPE_NON_BEHAVIORAL\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3490, + "offset": 5737, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3510, - "length": 34, - "value": "\"impression_configuration_version\"" + "offset": 5753, + "length": 37, + "value": "\"DEVELOPER_CONSENT_TYPE_PIPL_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3551, + "offset": 5797, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3571, - "length": 23, - "value": "\"webview_configuration\"" + "offset": 5813, + "length": 40, + "value": "\"DEVELOPER_CONSENT_TYPE_PRIVACY_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3601, + "offset": 5860, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3621, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 5876, + "length": 37, + "value": "\"DEVELOPER_CONSENT_TYPE_GDPR_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3651, + "offset": 5920, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3667, - "length": 7, - "value": "\"error\"" + "offset": 5936, + "length": 44, + "value": "\"DEVELOPER_CONSENT_TYPE_USER_OVER_AGE_LIMIT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4098, + "offset": 6140, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4187, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6156, + "length": 38, + "value": "\"DEVELOPER_CONSENT_CHOICE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4286, + "offset": 6201, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6217, + "length": 31, + "value": "\"DEVELOPER_CONSENT_CHOICE_TRUE\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4392, + "offset": 6255, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6271, + "length": 32, + "value": "\"DEVELOPER_CONSENT_CHOICE_FALSE\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6530, + "length": 25, + "value": "\".DeveloperConsentOption\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4491, + "offset": 6624, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6640, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4585, + "offset": 6653, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 13, + "value": "\"custom_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5187, + "offset": 6693, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6709, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5335, + "offset": 7140, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5390, + "offset": 7219, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5493, + "offset": 7307, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5619, + "offset": 7893, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5761, + "offset": 8008, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5872, + "offset": 8130, "length": 1, - "value": "6" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6093, + "offset": 8329, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6174, + "offset": 8386, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6269, + "offset": 8431, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6346, + "offset": 8492, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6417, - "length": 5, - "value": "false" + "offset": 8510, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 8733, + "length": 19, + "value": "\".DeveloperConsent\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 8821, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 8837, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 9270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 9567, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6464, + "offset": 9760, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6525, + "offset": 9821, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6543, + "offset": 9839, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1153, + "offset": 1156, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1185, + "offset": 1188, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1216, + "offset": 1331, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1359, + "offset": 1358, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1390, + "offset": 1928, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1417, + "offset": 1960, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1996, + "offset": 2103, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2021, + "offset": 2130, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5768, + "offset": 2847, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 7988, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2879, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8143, + "offset": 2905, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8159, - "length": 29, - "value": "\"AD_REQUEST_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2930, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8195, + "offset": 2958, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8211, - "length": 28, - "value": "\"AD_REQUEST_TYPE_FULLSCREEN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2984, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8246, + "offset": 3127, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8262, - "length": 24, - "value": "\"AD_REQUEST_TYPE_BANNER\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3153, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 13, - "value": "\".BannerSize\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3178, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8583, + "offset": 3206, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8599, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3232, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8613, + "offset": 3259, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8629, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3912, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9061, + "offset": 3944, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9142, + "offset": 3975, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9348, + "offset": 4118, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9426, + "offset": 4149, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9457, + "offset": 4176, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Array", + "offset": 4883, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9536, + "offset": 5742, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9713, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8315, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9760, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Dictionary", + "offset": 8714, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9821, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Dictionary", + "offset": 8762, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9839, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8918, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 10055, - "length": 12, - "value": "\".AdRequest\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 10420, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 10136, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Array", + "offset": 11530, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10156, - "length": 18, - "value": "\"session_counters\"" + "offset": 12302, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10181, + "offset": 12471, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10201, - "length": 20, - "value": "\"static_device_info\"" + "offset": 12487, + "length": 35, + "value": "\"DIAGNOSTIC_EVENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10228, + "offset": 12529, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10248, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 12545, + "length": 30, + "value": "\"DIAGNOSTIC_EVENT_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10276, + "offset": 12730, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10296, - "length": 16, - "value": "\"campaign_state\"" + "offset": 12746, + "length": 33, + "value": "\"DIAGNOSTIC_TAG_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10319, + "offset": 12786, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10339, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 12802, + "length": 28, + "value": "\"DIAGNOSTIC_TAG_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10373, + "offset": 12992, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10393, - "length": 14, - "value": "\"placement_id\"" + "offset": 13008, + "length": 40, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10414, + "offset": 13055, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10434, + "offset": 13071, "length": 34, - "value": "\"request_impression_configuration\"" + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_DEBUG\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10475, + "offset": 13112, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10495, - "length": 13, - "value": "\"scar_signal\"" + "offset": 13128, + "length": 33, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_INFO\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10515, + "offset": 13168, "length": 1, - "value": "9" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10535, - "length": 17, - "value": "\"webview_version\"" + "offset": 13184, + "length": 36, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_WARNING\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10559, - "length": 2, - "value": "10" + "offset": 13227, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10576, - "length": 5, - "value": "\"tcf\"" + "offset": 13243, + "length": 34, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10588, - "length": 2, - "value": "11" + "offset": 13284, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10609, - "length": 17, - "value": "\"ad_request_type\"" + "offset": 13300, + "length": 35, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ALWAYS\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10633, - "length": 2, - "value": "12" + "offset": 13489, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10654, - "length": 13, - "value": "\"banner_size\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 11073, - "length": 5, - "value": "false" + "offset": 13505, + "length": 32, + "value": "\"DIAGNOSTIC_AD_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 12696, + "offset": 13544, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13560, + "length": 31, + "value": "\"DIAGNOSTIC_AD_TYPE_FULLSCREEN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 12796, + "offset": 13598, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12897, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13614, + "length": 27, + "value": "\"DIAGNOSTIC_AD_TYPE_BANNER\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12999, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13859, + "length": 16, + "value": "\".DiagnosticTag\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13097, + "offset": 13944, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13203, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13964, + "length": 10, + "value": "\"tag_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13298, + "offset": 13981, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13410, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14001, + "length": 17, + "value": "\"custom_tag_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13503, + "offset": 14025, "length": 1, - "value": "9" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13600, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14045, + "length": 14, + "value": "\"string_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13687, - "length": 2, - "value": "11" + "offset": 14066, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13783, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14086, + "length": 11, + "value": "\"int_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14486, + "offset": 14521, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14622, + "offset": 14603, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14759, + "offset": 14694, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14892, + "offset": 14946, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15060, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15201, + "offset": 15696, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15265, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15378, + "offset": 15814, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15516, + "offset": 16029, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15644, + "offset": 16211, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15765, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15896, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 16027, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16489, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16575, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16663, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16743, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16843, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17033, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17107, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17189, + "offset": 16426, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17249, + "offset": 16489, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17329, + "offset": 16534, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17403, + "offset": 16595, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17425, + "offset": 16613, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17473, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16835, + "length": 18, + "value": "\".DiagnosticEvent\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17540, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16922, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17558, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16942, + "length": 12, + "value": "\"event_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1522, + "offset": 16961, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16981, + "length": 19, + "value": "\"custom_event_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2542, + "offset": 17007, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3405, + "offset": 17023, "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", - "kind": "StringLiteral", - "offset": 3624, - "length": 13, - "value": "\".AdResponse\"" + "value": "\"timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3706, + "offset": 17042, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3726, - "length": 16, - "value": "\"tracking_token\"" + "offset": 17062, + "length": 12, + "value": "\"time_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3749, + "offset": 17081, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3769, - "length": 26, - "value": "\"impression_configuration\"" + "offset": 17101, + "length": 13, + "value": "\"string_tags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3802, + "offset": 17121, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3822, - "length": 34, - "value": "\"impression_configuration_version\"" + "offset": 17141, + "length": 10, + "value": "\"int_tags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3863, + "offset": 17158, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3883, - "length": 23, - "value": "\"webview_configuration\"" + "offset": 17178, + "length": 10, + "value": "\"event_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3913, + "offset": 17195, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3933, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 17215, + "length": 27, + "value": "\"impression_opportunity_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3963, + "offset": 17249, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3983, - "length": 9, - "value": "\"ad_data\"" + "offset": 17269, + "length": 14, + "value": "\"placement_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3999, - "length": 1, - "value": "7" + "offset": 17290, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 4019, - "length": 17, - "value": "\"ad_data_version\"" + "offset": 17311, + "length": 9, + "value": "\"ad_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4043, - "length": 1, - "value": "8" + "offset": 17327, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 4059, - "length": 7, - "value": "\"error\"" + "offset": 17348, + "length": 19, + "value": "\"is_header_bidding\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4490, + "offset": 17791, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4579, + "offset": 17875, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4678, + "offset": 17968, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4784, + "offset": 18057, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4883, + "offset": 18144, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4977, + "offset": 18338, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5059, + "offset": 18529, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5148, + "offset": 18612, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5750, + "offset": 18712, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 18801, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 18884, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5898, + "offset": 19492, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5953, + "offset": 19612, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6056, + "offset": 19732, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6182, + "offset": 19850, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6324, + "offset": 20084, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6438, + "offset": 20308, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6476, + "offset": 20340, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6562, + "offset": 20420, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6673, + "offset": 20547, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20667, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20780, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20903, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 6870, + "offset": 21103, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 6951, + "offset": 21170, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7046, + "offset": 21227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7123, + "offset": 21282, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7194, + "offset": 21337, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7241, + "offset": 21386, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7302, + "offset": 21435, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7349, + "offset": 21518, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7410, + "offset": 21577, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7428, - "length": 4, - "value": "true" + "offset": 21626, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 1135, + "offset": 21693, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 1161, + "offset": 21754, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", - "kind": "StringLiteral", - "offset": 1501, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21772, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 1720, - "length": 13, - "value": "\".AllowedPii\"" + "offset": 22001, + "length": 25, + "value": "\".DiagnosticEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 22095, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 1818, - "length": 6, - "value": "\"idfa\"" + "offset": 22111, + "length": 7, + "value": "\"batch\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1831, + "offset": 22542, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22833, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23095, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23113, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1199, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1224, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", - "kind": "StringLiteral", - "offset": 1847, - "length": 6, - "value": "\"idfv\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1369, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2277, + "offset": 1394, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2356, + "offset": 1423, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 3595, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 4077, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2558, + "offset": 4550, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2638, + "offset": 5461, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2667, + "offset": 5969, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 6502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2747, + "offset": 7022, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2922, + "offset": 8450, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2965, + "offset": 8892, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10333, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3026, + "offset": 12791, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 13269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3044, - "length": 4, - "value": "true" + "offset": 13713, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1180, + "offset": 14209, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 14757, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 15194, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 15635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16463, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 17439, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 17906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 18415, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 19651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 21045, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "Array", - "offset": 3168, + "offset": 21507, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "Array", - "offset": 3269, + "offset": 21542, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3659, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 21615, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3876, - "length": 11, - "value": "\".Campaign\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 22420, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3956, + "offset": 22796, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3976, - "length": 14, - "value": "\"data_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 23262, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3997, + "offset": 23755, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4013, - "length": 6, - "value": "\"data\"" + "offset": 25307, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4026, + "offset": 25471, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4046, - "length": 14, - "value": "\"placement_id\"" + "offset": 25487, + "length": 29, + "value": "\"CONNECTION_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4067, + "offset": 25523, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4087, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 25539, + "length": 22, + "value": "\"CONNECTION_TYPE_WIFI\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4121, + "offset": 25568, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4141, - "length": 16, - "value": "\"load_timestamp\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 4164, - "length": 1, - "value": "6" + "offset": 25584, + "length": 26, + "value": "\"CONNECTION_TYPE_CELLULAR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4184, - "length": 16, - "value": "\"show_timestamp\"" + "offset": 25832, + "length": 20, + "value": "\".DynamicDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4624, + "offset": 25921, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 25937, + "length": 10, + "value": "\"language\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4711, + "offset": 25954, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 25974, + "length": 18, + "value": "\"network_operator\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4791, + "offset": 25999, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 4879, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26019, + "length": 23, + "value": "\"network_operator_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4978, + "offset": 26049, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5070, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 17, + "value": "\"free_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5588, + "offset": 26093, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5672, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26113, + "length": 17, + "value": "\"free_ram_memory\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5782, + "offset": 26137, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5907, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26157, + "length": 15, + "value": "\"wired_headset\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6055, + "offset": 26179, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 6174, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26199, + "length": 11, + "value": "\"time_zone\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6297, + "offset": 26217, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6486, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26237, + "length": 18, + "value": "\"time_zone_offset\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6529, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26262, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6586, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26283, + "length": 18, + "value": "\"limited_tracking\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6667, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26308, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6730, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26329, + "length": 26, + "value": "\"limited_open_ad_tracking\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6793, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26362, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6854, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26383, + "length": 15, + "value": "\"battery_level\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6872, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26405, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7092, + "offset": 26426, "length": 16, - "value": "\".CampaignState\"" + "value": "\"battery_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7177, - "length": 1, - "value": "1" + "offset": 26449, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7197, - "length": 18, - "value": "\"loaded_campaigns\"" + "offset": 26470, + "length": 17, + "value": "\"connection_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7222, - "length": 1, - "value": "2" + "offset": 26494, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7242, - "length": 17, - "value": "\"shown_campaigns\"" + "offset": 26515, + "length": 12, + "value": "\"app_active\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7683, - "length": 1, - "value": "1" + "offset": 26534, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 7776, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26555, + "length": 16, + "value": "\"low_power_mode\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8096, - "length": 1, - "value": "1" + "offset": 26578, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 8228, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26599, + "length": 9, + "value": "\"user_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8431, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26615, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8494, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26636, + "length": 14, + "value": "\"screen_width\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8555, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26657, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8573, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26678, + "length": 15, + "value": "\"screen_height\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1143, - "length": 1, - "value": "0" + "offset": 26700, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1175, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26717, + "length": 9, + "value": "\"android\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1203, - "length": 1, - "value": "2" + "offset": 26733, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1343, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26750, + "length": 5, + "value": "\"ios\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1371, + "offset": 29695, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1395, + "offset": 29787, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2429, + "offset": 29886, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2461, + "offset": 29989, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2488, + "offset": 30085, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2514, + "offset": 30181, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2538, + "offset": 30275, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2684, + "offset": 30367, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2711, - "length": 1, - "value": "1" + "offset": 30464, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2737, - "length": 1, - "value": "2" + "offset": 30562, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2761, - "length": 1, - "value": "3" + "offset": 30666, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 2791, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 30757, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 30847, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3518, - "length": 1, - "value": "0" + "offset": 31161, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3765, + "offset": 31248, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5570, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 31338, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5720, - "length": 1, - "value": "0" + "offset": 31644, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5736, - "length": 22, - "value": "\"PLATFORM_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31741, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5765, - "length": 1, - "value": "1" + "offset": 31838, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 18, - "value": "\"PLATFORM_ANDROID\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31935, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5806, - "length": 1, - "value": "2" + "offset": 32027, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5822, - "length": 14, - "value": "\"PLATFORM_IOS\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32122, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5991, - "length": 1, - "value": "0" + "offset": 32213, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6007, - "length": 32, - "value": "\"MEDIATION_PROVIDER_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32309, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6046, + "offset": 33005, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6062, - "length": 27, - "value": "\"MEDIATION_PROVIDER_CUSTOM\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6096, + "offset": 33139, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6112, - "length": 26, - "value": "\"MEDIATION_PROVIDER_ADMOB\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6145, + "offset": 33277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6161, - "length": 24, - "value": "\"MEDIATION_PROVIDER_MAX\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6192, + "offset": 33408, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6208, - "length": 30, - "value": "\"MEDIATION_PROVIDER_LEVELPLAY\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6453, - "length": 13, - "value": "\".ClientInfo\"" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6535, + "offset": 33539, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6555, - "length": 13, - "value": "\"sdk_version\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6575, + "offset": 33668, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6595, - "length": 18, - "value": "\"sdk_version_name\"" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6620, + "offset": 33795, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6640, - "length": 9, - "value": "\"game_id\"" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6656, + "offset": 33927, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6672, - "length": 6, - "value": "\"test\"" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6685, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6701, - "length": 10, - "value": "\"platform\"" + "offset": 34059, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6718, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6738, - "length": 20, - "value": "\"mediation_provider\"" + "offset": 34198, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6765, - "length": 1, - "value": "7" + "offset": 34449, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6785, - "length": 23, - "value": "\"custom_mediation_name\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 34648, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6815, - "length": 1, - "value": "8" + "offset": 34808, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6835, - "length": 19, - "value": "\"mediation_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 34940, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7278, - "length": 1, - "value": "1" + "offset": 35072, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7365, - "length": 1, - "value": "2" + "offset": 35199, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7456, - "length": 1, - "value": "3" + "offset": 35329, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7539, - "length": 1, - "value": "4" + "offset": 35455, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7618, - "length": 1, - "value": "5" + "offset": 35586, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7701, - "length": 1, - "value": "6" + "offset": 35718, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 7793, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36182, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 7890, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36266, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8409, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36358, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8493, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36438, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8624, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36518, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8739, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36596, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8768, + "offset": 36666, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8848, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36748, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8972, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36832, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9114, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36928, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9238, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37006, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9363, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37086, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9554, + "offset": 37168, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9617, + "offset": 37240, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9664, + "offset": 37318, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9707, + "offset": 37384, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9758, + "offset": 37460, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9827, + "offset": 37538, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9902, + "offset": 37624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9971, + "offset": 37646, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10032, + "offset": 37761, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10050, + "offset": 37779, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1443, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38035, + "length": 10, + "value": "\".Android\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1475, + "offset": 38114, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38134, + "length": 19, + "value": "\"network_connected\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1502, + "offset": 38160, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38180, + "length": 14, + "value": "\"network_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1536, + "offset": 38201, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38221, + "length": 17, + "value": "\"network_metered\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1568, + "offset": 38245, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1603, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38265, + "length": 32, + "value": "\"telephony_manager_network_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1635, + "offset": 38304, "length": 1, - "value": "6" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1788, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38324, + "length": 13, + "value": "\"adb_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1815, + "offset": 38344, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1849, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38364, + "length": 15, + "value": "\"usb_connected\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1881, + "offset": 38386, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1916, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38402, + "length": 8, + "value": "\"volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1948, + "offset": 38417, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1985, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38437, + "length": 12, + "value": "\"max_volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2684, + "offset": 38456, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2716, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38476, + "length": 16, + "value": "\"device_up_time\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2741, - "length": 1, - "value": "2" + "offset": 38499, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2883, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38520, + "length": 25, + "value": "\"device_elapsed_realtime\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2908, - "length": 1, - "value": "1" + "offset": 38552, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38573, + "length": 15, + "value": "\"airplane_mode\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "Array", - "offset": 4851, + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 38595, "length": 2, - "value": "[]" + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5384, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 38616, + "length": 26, + "value": "\"stay_on_while_plugged_in\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5546, - "length": 1, - "value": "0" + "offset": 38649, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5562, - "length": 36, - "value": "\"DEVELOPER_CONSENT_TYPE_UNSPECIFIED\"" + "offset": 38670, + "length": 17, + "value": "\"sd_card_present\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5605, - "length": 1, - "value": "1" + "offset": 38694, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5621, + "offset": 38715, "length": 31, - "value": "\"DEVELOPER_CONSENT_TYPE_CUSTOM\"" + "value": "\"network_capability_transports\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5659, - "length": 1, - "value": "2" + "offset": 38753, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5675, - "length": 39, - "value": "\"DEVELOPER_CONSENT_TYPE_NON_BEHAVIORAL\"" + "offset": 38774, + "length": 15, + "value": "\"charging_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5721, + "offset": 41463, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5737, - "length": 37, - "value": "\"DEVELOPER_CONSENT_TYPE_PIPL_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41561, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5781, + "offset": 41655, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5797, - "length": 40, - "value": "\"DEVELOPER_CONSENT_TYPE_PRIVACY_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41751, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5844, + "offset": 41861, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5860, - "length": 37, - "value": "\"DEVELOPER_CONSENT_TYPE_GDPR_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41953, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5904, + "offset": 42047, "length": 1, - "value": "6" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5920, - "length": 44, - "value": "\"DEVELOPER_CONSENT_TYPE_USER_OVER_AGE_LIMIT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42137, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6124, + "offset": 42230, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 38, - "value": "\"DEVELOPER_CONSENT_CHOICE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42325, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6185, - "length": 1, - "value": "1" + "offset": 42430, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 31, - "value": "\"DEVELOPER_CONSENT_CHOICE_TRUE\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42525, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6239, - "length": 1, - "value": "2" + "offset": 42628, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6255, - "length": 32, - "value": "\"DEVELOPER_CONSENT_CHOICE_FALSE\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42724, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6514, - "length": 25, - "value": "\".DeveloperConsentOption\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42837, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6608, + "offset": 43538, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6624, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6637, + "offset": 43667, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6657, - "length": 13, - "value": "\"custom_type\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6677, + "offset": 43798, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6693, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 43943, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7124, + "offset": 44070, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7203, + "offset": 44199, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7291, + "offset": 44324, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7877, + "offset": 44452, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7992, + "offset": 44582, "length": 1, - "value": "2" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8114, - "length": 1, - "value": "3" + "offset": 44721, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 44851, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 44989, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45120, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45268, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45399, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8313, + "offset": 45895, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8370, + "offset": 45971, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8415, + "offset": 46053, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8476, + "offset": 46161, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46235, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46313, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46379, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46451, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46625, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46703, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46877, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46985, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47063, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47085, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8494, + "offset": 47133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47200, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47218, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47470, + "length": 6, + "value": "\".Ios\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47545, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47565, + "length": 33, + "value": "\"current_radio_access_technology\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47605, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 8717, - "length": 19, - "value": "\".DeveloperConsent\"" + "offset": 47625, + "length": 28, + "value": "\"network_reachability_flags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8805, + "offset": 47660, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 8821, - "length": 9, - "value": "\"options\"" + "offset": 47680, + "length": 20, + "value": "\"nw_path_interfaces\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 9254, + "offset": 47707, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47727, + "length": 13, + "value": "\"locale_list\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 9551, + "offset": 47747, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9744, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47767, + "length": 18, + "value": "\"current_ui_theme\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9805, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47792, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9823, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47812, + "length": 13, + "value": "\"device_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1148, + "offset": 47832, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1180, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47848, + "length": 8, + "value": "\"volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1323, + "offset": 47863, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47883, + "length": 22, + "value": "\"tracking_auth_status\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1350, + "offset": 47912, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47932, + "length": 27, + "value": "\"device_up_time_with_sleep\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1920, - "length": 1, - "value": "0" + "offset": 47966, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47987, + "length": 30, + "value": "\"device_up_time_without_sleep\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1952, + "offset": 48441, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2095, + "offset": 48547, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2122, + "offset": 48649, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2839, + "offset": 48742, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2871, + "offset": 48829, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2897, + "offset": 48920, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2922, + "offset": 49008, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2950, + "offset": 49092, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2976, + "offset": 49187, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3119, - "length": 1, - "value": "0" + "offset": 49285, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3145, + "offset": 49910, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3170, + "offset": 50043, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 50182, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3224, + "offset": 50305, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3251, + "offset": 50423, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3904, + "offset": 50542, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3936, + "offset": 50657, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3967, + "offset": 50783, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4110, + "offset": 50912, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4141, - "length": 1, - "value": "1" + "offset": 51044, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 4168, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51296, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Array", - "offset": 4875, - "length": 2, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51381, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 5734, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51448, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 8307, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51503, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Dictionary", - "offset": 8706, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51568, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Dictionary", - "offset": 8754, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51625, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 8910, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51674, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10412, + "offset": 51747, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Array", - "offset": 11522, - "length": 2, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51826, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12294, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51911, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12455, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51972, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12471, - "length": 35, - "value": "\"DIAGNOSTIC_EVENT_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51990, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12513, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "StringLiteral", - "offset": 12529, - "length": 30, - "value": "\"DIAGNOSTIC_EVENT_TYPE_CUSTOM\"" + "offset": 1996, + "length": 8, + "value": "\".Error\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12714, + "offset": 2073, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "StringLiteral", - "offset": 12730, - "length": 33, - "value": "\"DIAGNOSTIC_TAG_TYPE_UNSPECIFIED\"" + "offset": 2093, + "length": 12, + "value": "\"error_text\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12770, + "offset": 2529, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12786, - "length": 28, - "value": "\"DIAGNOSTIC_TAG_TYPE_CUSTOM\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12976, + "offset": 2830, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12992, - "length": 40, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3005, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13039, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3066, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13055, - "length": 34, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_DEBUG\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3084, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13096, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 2444, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13112, - "length": 33, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_INFO\"" + "offset": 2681, + "length": 23, + "value": "\".GetTokenEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13152, + "offset": 2773, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13168, - "length": 36, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_WARNING\"" + "offset": 2789, + "length": 10, + "value": "\"rewarded\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13211, + "offset": 2806, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13227, - "length": 34, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ERROR\"" + "offset": 2822, + "length": 14, + "value": "\"interstitial\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13268, + "offset": 3260, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13284, - "length": 35, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ALWAYS\"" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13473, + "offset": 3345, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13489, - "length": 32, - "value": "\"DIAGNOSTIC_AD_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3936, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13528, + "offset": 4056, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13544, - "length": 31, - "value": "\"DIAGNOSTIC_AD_TYPE_FULLSCREEN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4265, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4326, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4387, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4405, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13582, + "offset": 1506, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13598, - "length": 27, - "value": "\"DIAGNOSTIC_AD_TYPE_BANNER\"" + "offset": 1972, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13843, - "length": 16, - "value": "\".DiagnosticTag\"" + "offset": 2210, + "length": 24, + "value": "\".HeaderBiddingAdMarkup\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13928, + "offset": 2303, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13948, - "length": 10, - "value": "\"tag_type\"" + "offset": 2323, + "length": 9, + "value": "\"ad_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13965, + "offset": 2339, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13985, + "offset": 2359, "length": 17, - "value": "\"custom_tag_type\"" + "value": "\"ad_data_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14009, + "offset": 2383, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 14029, - "length": 14, - "value": "\"string_value\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 14050, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 14070, - "length": 11, - "value": "\"int_value\"" + "offset": 2403, + "length": 21, + "value": "\"configuration_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14505, + "offset": 2848, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14587, + "offset": 2930, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14678, + "offset": 3019, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14930, + "offset": 3321, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 15680, + "offset": 3359, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 15798, + "offset": 3445, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 16013, + "offset": 3583, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 16195, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16410, + "offset": 3784, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16473, + "offset": 3845, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16518, + "offset": 3916, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16579, + "offset": 3977, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16597, + "offset": 3995, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16819, - "length": 18, - "value": "\".DiagnosticEvent\"" + "offset": 5514, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "StringLiteral", + "offset": 5749, + "length": 21, + "value": "\".HeaderBiddingToken\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16906, + "offset": 5839, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16926, - "length": 12, - "value": "\"event_type\"" + "offset": 5859, + "length": 10, + "value": "\"token_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16945, + "offset": 5876, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16965, - "length": 19, - "value": "\"custom_event_type\"" + "offset": 5896, + "length": 14, + "value": "\"token_number\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16991, + "offset": 5917, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17007, - "length": 12, - "value": "\"timestamps\"" + "offset": 5937, + "length": 15, + "value": "\"session_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17026, + "offset": 5959, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17046, - "length": 12, - "value": "\"time_value\"" + "offset": 5979, + "length": 13, + "value": "\"client_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17065, + "offset": 5999, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17085, - "length": 13, - "value": "\"string_tags\"" + "offset": 6015, + "length": 12, + "value": "\"timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17105, + "offset": 6034, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17125, - "length": 10, - "value": "\"int_tags\"" + "offset": 6054, + "length": 18, + "value": "\"session_counters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17142, + "offset": 6079, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17162, - "length": 10, - "value": "\"event_id\"" + "offset": 6099, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17179, + "offset": 6126, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17199, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 6146, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17233, + "offset": 6174, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17253, - "length": 14, - "value": "\"placement_id\"" + "offset": 6190, + "length": 5, + "value": "\"pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17274, + "offset": 6202, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17295, - "length": 9, - "value": "\"ad_type\"" + "offset": 6223, + "length": 16, + "value": "\"campaign_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17311, + "offset": 6246, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17332, - "length": 19, - "value": "\"is_header_bidding\"" + "offset": 6263, + "length": 5, + "value": "\"tcf\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "IntegerLiteral", + "offset": 6374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17775, + "offset": 8527, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17859, + "offset": 8617, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17952, + "offset": 8711, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18041, + "offset": 8806, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18128, + "offset": 8901, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18322, + "offset": 8996, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18513, + "offset": 9096, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18596, + "offset": 9197, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18696, + "offset": 9299, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18785, + "offset": 9387, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18868, + "offset": 9486, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19476, + "offset": 10181, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "IntegerLiteral", + "offset": 10226, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19596, + "offset": 10317, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19716, + "offset": 10459, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19834, + "offset": 10585, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20068, + "offset": 10715, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20292, + "offset": 10850, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 20324, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20404, + "offset": 10986, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20531, + "offset": 11123, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20651, + "offset": 11246, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20764, + "offset": 11379, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20887, + "offset": 11501, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 21087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21154, + "offset": 11965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21211, + "offset": 12041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21266, + "offset": 12119, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21321, + "offset": 12193, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21370, + "offset": 12267, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21419, + "offset": 12351, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21502, + "offset": 12437, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21561, + "offset": 12525, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21610, + "offset": 12585, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21677, + "offset": 12665, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21738, + "offset": 12725, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21756, + "offset": 12747, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 21985, - "length": 25, - "value": "\".DiagnosticEventRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22079, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 22095, - "length": 7, - "value": "\"batch\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22526, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23018, + "offset": 12795, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23079, + "offset": 12862, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23097, + "offset": 12880, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1191, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 2768, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1216, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3020, + "length": 38, + "value": "\".InitializationCompletedEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1361, + "offset": 3127, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1386, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3147, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1415, + "offset": 3174, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3194, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4069, + "offset": 3639, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 4542, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5453, + "offset": 3734, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 5961, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 6494, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7014, + "offset": 4342, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7469, + "offset": 4469, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 8442, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 10874, + "offset": 4724, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 11310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 11712, + "offset": 4795, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 12166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 12672, + "offset": 4856, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 13067, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 13466, - "length": 1, - "value": "0" + "offset": 4874, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13825, + "offset": 1506, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14210, + "offset": 1907, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14634, + "offset": 1940, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16493, + "offset": 2016, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "Array", - "offset": 16955, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "Array", - "offset": 16990, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17063, + "offset": 2090, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17868, + "offset": 2122, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18244, + "offset": 2155, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19637, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 19793, - "length": 1, - "value": "0" + "offset": 8086, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19809, - "length": 29, - "value": "\"CONNECTION_TYPE_UNSPECIFIED\"" + "offset": 8327, + "length": 27, + "value": "\".InitializationDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19845, + "offset": 8423, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19861, - "length": 22, - "value": "\"CONNECTION_TYPE_WIFI\"" + "offset": 8443, + "length": 11, + "value": "\"bundle_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19890, + "offset": 8461, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 26, - "value": "\"CONNECTION_TYPE_CELLULAR\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 20154, - "length": 20, - "value": "\".DynamicDeviceInfo\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 20243, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20259, - "length": 10, - "value": "\"language\"" + "offset": 8481, + "length": 13, + "value": "\"device_make\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20276, + "offset": 8501, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20296, - "length": 18, - "value": "\"network_operator\"" + "offset": 8521, + "length": 14, + "value": "\"device_model\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20321, + "offset": 8542, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20341, - "length": 23, - "value": "\"network_operator_name\"" + "offset": 8562, + "length": 12, + "value": "\"os_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20371, + "offset": 8581, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20391, - "length": 17, - "value": "\"free_disk_space\"" + "offset": 8601, + "length": 22, + "value": "\"tracking_auth_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20415, + "offset": 8630, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20435, - "length": 17, - "value": "\"free_ram_memory\"" + "offset": 8650, + "length": 18, + "value": "\"total_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20459, + "offset": 8675, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20479, - "length": 15, - "value": "\"wired_headset\"" + "offset": 8695, + "length": 18, + "value": "\"total_ram_memory\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20501, + "offset": 8720, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20521, - "length": 11, - "value": "\"time_zone\"" + "offset": 8740, + "length": 20, + "value": "\"hashed_device_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20539, + "offset": 8767, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20559, + "offset": 8787, "length": 18, - "value": "\"time_zone_offset\"" + "value": "\"current_ui_theme\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20584, + "offset": 8812, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20605, + "offset": 8833, "length": 18, - "value": "\"limited_tracking\"" + "value": "\"network_operator\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20630, + "offset": 8858, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 26, - "value": "\"limited_open_ad_tracking\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 20684, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20705, + "offset": 8879, "length": 15, "value": "\"battery_level\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20727, + "offset": 8901, "length": 2, - "value": "15" + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20748, + "offset": 8922, "length": 16, "value": "\"battery_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20771, + "offset": 8945, "length": 2, - "value": "16" + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20792, - "length": 17, - "value": "\"connection_type\"" + "offset": 8966, + "length": 18, + "value": "\"system_boot_time\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20816, + "offset": 8991, "length": 2, - "value": "17" + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20837, - "length": 12, - "value": "\"app_active\"" + "offset": 9008, + "length": 10, + "value": "\"language\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20856, + "offset": 9025, "length": 2, - "value": "12" + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20873, - "length": 9, - "value": "\"android\"" + "offset": 9046, + "length": 12, + "value": "\"local_list\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20889, + "offset": 9065, "length": 2, - "value": "13" + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20906, - "length": 5, - "value": "\"ios\"" + "offset": 9086, + "length": 17, + "value": "\"connection_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23101, + "offset": 9527, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23193, + "offset": 9612, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23292, + "offset": 9699, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9787, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23395, + "offset": 9873, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23491, + "offset": 9968, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23587, + "offset": 10058, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23681, + "offset": 10148, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23773, + "offset": 10241, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23870, + "offset": 10331, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23968, + "offset": 10424, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24072, + "offset": 10514, "length": 2, "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24163, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24253, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24567, + "offset": 10604, "length": 2, "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24744, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25050, + "offset": 10695, "length": 2, "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25147, + "offset": 10781, "length": 2, "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25244, + "offset": 10868, "length": 2, "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 25341, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26032, + "offset": 11469, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26166, + "offset": 11592, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26304, + "offset": 11717, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 11838, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26435, + "offset": 11960, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12003, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26566, + "offset": 12090, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26695, + "offset": 12216, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26822, + "offset": 12351, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12390, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26954, + "offset": 12477, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27086, + "offset": 12610, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27225, + "offset": 12734, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27476, + "offset": 12859, "length": 2, "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12899, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27675, + "offset": 12986, "length": 2, "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27835, + "offset": 13106, "length": 2, "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27967, + "offset": 13228, "length": 2, "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 28099, + "offset": 13360, "length": 2, "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 28226, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28690, + "offset": 13572, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28774, + "offset": 13627, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28866, + "offset": 13684, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28946, + "offset": 13737, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29026, + "offset": 13810, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29104, + "offset": 13873, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29174, + "offset": 13936, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29256, + "offset": 14003, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29340, + "offset": 14066, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29436, + "offset": 14131, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29514, + "offset": 14190, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29594, + "offset": 14251, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29676, + "offset": 14314, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29748, + "offset": 14365, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29834, + "offset": 14418, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 29856, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29904, + "offset": 14481, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29971, + "offset": 14542, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29989, + "offset": 14560, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30245, - "length": 10, - "value": "\".Android\"" + "offset": 14788, + "length": 24, + "value": "\".InitializationRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30324, + "offset": 14881, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30344, - "length": 19, - "value": "\"network_connected\"" + "offset": 14901, + "length": 13, + "value": "\"client_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30370, + "offset": 14921, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30390, - "length": 14, - "value": "\"network_type\"" + "offset": 14937, + "length": 9, + "value": "\"privacy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30411, + "offset": 14953, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30431, - "length": 17, - "value": "\"network_metered\"" + "offset": 14969, + "length": 6, + "value": "\"idfi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30455, + "offset": 14982, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30475, - "length": 32, - "value": "\"telephony_manager_network_type\"" + "offset": 15002, + "length": 12, + "value": "\"session_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30514, + "offset": 15021, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30534, - "length": 13, - "value": "\"adb_enabled\"" + "offset": 15037, + "length": 7, + "value": "\"cache\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30554, + "offset": 15051, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30574, - "length": 15, - "value": "\"usb_connected\"" + "offset": 15071, + "length": 26, + "value": "\"legacy_flow_user_consent\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30596, + "offset": 15104, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30612, - "length": 8, - "value": "\"volume\"" + "offset": 15120, + "length": 6, + "value": "\"auid\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30627, + "offset": 15133, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30647, - "length": 12, - "value": "\"max_volume\"" + "offset": 15153, + "length": 19, + "value": "\"analytics_user_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30666, + "offset": 15179, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30686, - "length": 16, - "value": "\"device_up_time\"" + "offset": 15199, + "length": 13, + "value": "\"device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30709, + "offset": 15219, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30730, - "length": 25, - "value": "\"device_elapsed_realtime\"" + "offset": 15240, + "length": 15, + "value": "\"is_first_init\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15262, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "StringLiteral", + "offset": 15283, + "length": 13, + "value": "\"auid_string\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 15713, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31179, + "offset": 17470, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31271, + "offset": 17565, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31359, + "offset": 17655, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31449, + "offset": 17743, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31553, + "offset": 17835, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31639, + "offset": 17923, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31727, + "offset": 18028, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31811, + "offset": 18115, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31898, + "offset": 18214, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31987, + "offset": 18309, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32595, + "offset": 18403, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32714, + "offset": 19225, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32835, + "offset": 19356, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32970, + "offset": 19492, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19611, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19751, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19873, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20007, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20137, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20186, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20280, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20406, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20950, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21148, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21306, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21390, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21464, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21540, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21614, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21636, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21684, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21751, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21769, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1194, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1226, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1259, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1464, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1493, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1520, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4118, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33087, + "offset": 4259, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33206, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "Dictionary", + "offset": 4377, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33321, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5003, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33439, + "offset": 5161, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5177, + "length": 23, + "value": "\"AD_FORMAT_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33559, + "offset": 5207, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33688, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5223, + "length": 24, + "value": "\"AD_FORMAT_INTERSTITIAL\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 33924, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5254, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 33983, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5270, + "length": 20, + "value": "\"AD_FORMAT_REWARDED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34048, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5297, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34139, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5313, + "length": 18, + "value": "\"AD_FORMAT_BANNER\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34196, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5545, + "length": 12, + "value": "\".Placement\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34257, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5626, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34306, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5646, + "length": 11, + "value": "\"ad_format\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34361, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6081, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34422, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6382, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34501, + "offset": 6563, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34562, + "offset": 6624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34580, + "offset": 6642, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34832, - "length": 6, - "value": "\".Ios\"" + "offset": 6871, + "length": 25, + "value": "\".InitializationResponse\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 34907, + "offset": 6965, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34927, - "length": 33, - "value": "\"current_radio_access_technology\"" + "offset": 6985, + "length": 22, + "value": "\"native_configuration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 34967, + "offset": 7014, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34987, - "length": 28, - "value": "\"network_reachability_flags\"" + "offset": 7034, + "length": 23, + "value": "\"universal_request_url\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35022, + "offset": 7064, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35042, - "length": 20, - "value": "\"nw_path_interfaces\"" + "offset": 7080, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35069, + "offset": 7094, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35089, - "length": 13, - "value": "\"locale_list\"" + "offset": 7114, + "length": 42, + "value": "\"trigger_initialization_completed_request\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35109, + "offset": 7163, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35129, - "length": 18, - "value": "\"current_ui_theme\"" + "offset": 7183, + "length": 31, + "value": "\"count_of_last_shown_campaigns\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35154, + "offset": 7221, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 35174, - "length": 13, - "value": "\"device_name\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 35194, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 35210, - "length": 8, - "value": "\"volume\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 35225, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35245, - "length": 22, - "value": "\"tracking_auth_status\"" + "offset": 7241, + "length": 17, + "value": "\"scar_placements\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35691, + "offset": 7682, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35797, + "offset": 7780, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35899, + "offset": 7877, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35992, + "offset": 7961, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36079, + "offset": 8073, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36170, + "offset": 8174, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 36258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 36342, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36960, + "offset": 8877, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37093, + "offset": 9005, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37232, + "offset": 9120, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 37355, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 9186, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37473, + "offset": 9299, "length": 1, - "value": "5" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37592, + "offset": 9349, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37707, + "offset": 9447, "length": 1, - "value": "7" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37833, + "offset": 9675, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38084, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38169, - "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38236, + "offset": 9906, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38291, + "offset": 9981, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38356, + "offset": 10028, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38413, + "offset": 10137, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38462, + "offset": 10222, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38535, + "offset": 10285, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38596, + "offset": 10346, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38614, + "offset": 10364, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 1766, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 5626, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 1980, - "length": 8, - "value": "\".Error\"" + "offset": 5854, + "length": 14, + "value": "\".MutableData\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2057, + "offset": 5937, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2077, - "length": 12, - "value": "\"error_text\"" + "offset": 5957, + "length": 15, + "value": "\"current_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2513, - "length": 1, - "value": "2" + "offset": 5979, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "IntegerLiteral", - "offset": 2814, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "StringLiteral", + "offset": 6000, + "length": 15, + "value": "\"session_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 2989, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 3050, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "StringLiteral", + "offset": 6039, + "length": 9, + "value": "\"privacy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 3068, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6055, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2436, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 6076, + "length": 18, + "value": "\"session_counters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6101, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2665, - "length": 23, - "value": "\".GetTokenEventRequest\"" + "offset": 6122, + "length": 13, + "value": "\"allowed_pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2757, - "length": 1, - "value": "1" + "offset": 6142, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2773, - "length": 10, - "value": "\"rewarded\"" + "offset": 6159, + "length": 7, + "value": "\"cache\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2790, - "length": 1, - "value": "2" + "offset": 6173, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2806, - "length": 14, - "value": "\"interstitial\"" + "offset": 6194, + "length": 13, + "value": "\"privacy_fsm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3244, + "offset": 6631, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3329, - "length": 1, - "value": "2" + "offset": 6720, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6810, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6895, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6990, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7080, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7163, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3920, + "offset": 7757, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 4040, - "length": 1, - "value": "2" + "offset": 7877, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7993, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8119, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8240, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8354, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8473, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4249, + "offset": 8673, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8734, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8785, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8852, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8909, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8956, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4310, + "offset": 9013, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4371, + "offset": 9074, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4389, + "offset": 9092, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1510, + "offset": 1488, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 1982, - "length": 18, - "value": "\"headerbidding.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2224, - "length": 24, - "value": "\".HeaderBiddingAdMarkup\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 1574, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2317, + "offset": 1752, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2337, - "length": 9, - "value": "\"ad_data\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2353, + "offset": 2007, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2373, - "length": 17, - "value": "\"ad_data_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 2177, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2397, + "offset": 2694, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2417, - "length": 21, - "value": "\"configuration_token\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2862, + "offset": 2814, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2944, + "offset": 2919, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3033, + "offset": 3087, "length": 1, - "value": "3" + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 4888, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3335, + "offset": 4962, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3373, + "offset": 5125, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 5248, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 5530, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 5673, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3459, + "offset": 6146, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3597, + "offset": 6237, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "BooleanLiteral", - "offset": 3810, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6401, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3871, + "offset": 11655, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3942, + "offset": 11820, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 4003, + "offset": 11949, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "BooleanLiteral", - "offset": 4021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5524, - "length": 18, - "value": "\"headerbidding.v1\"" + "offset": 12667, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5763, + "offset": 12902, "length": 21, - "value": "\".HeaderBiddingToken\"" + "value": "\".RequestRetryPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5853, + "offset": 12992, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5873, - "length": 10, - "value": "\"token_id\"" + "offset": 13012, + "length": 14, + "value": "\"max_duration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5890, + "offset": 13033, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5910, - "length": 14, - "value": "\"token_number\"" + "offset": 13053, + "length": 17, + "value": "\"retry_wait_base\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5931, + "offset": 13077, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5951, - "length": 15, - "value": "\"session_token\"" + "offset": 13097, + "length": 20, + "value": "\"retry_max_interval\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5973, + "offset": 13124, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5993, - "length": 13, - "value": "\"client_info\"" + "offset": 13144, + "length": 18, + "value": "\"retry_jitter_pct\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6013, + "offset": 13169, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6029, - "length": 12, - "value": "\"timestamps\"" + "offset": 13189, + "length": 22, + "value": "\"retry_scaling_factor\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6048, + "offset": 13218, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6068, - "length": 18, - "value": "\"session_counters\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6093, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6113, - "length": 20, - "value": "\"static_device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6140, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6160, - "length": 21, - "value": "\"dynamic_device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6188, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6204, - "length": 5, - "value": "\"pii\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6216, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6237, - "length": 16, - "value": "\"campaign_state\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6260, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6277, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6388, - "length": 1, - "value": "0" + "offset": 13238, + "length": 22, + "value": "\"should_store_locally\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8088, + "offset": 13684, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8178, + "offset": 13771, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8272, + "offset": 13860, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8367, + "offset": 13952, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8462, + "offset": 14042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8557, + "offset": 14136, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8657, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8758, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8860, + "offset": 14359, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8948, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 9047, - "length": 2, - "value": "11" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9742, + "offset": 14443, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9787, + "offset": 14481, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9878, + "offset": 14567, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 10020, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10146, + "offset": 14608, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10276, + "offset": 14697, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10411, + "offset": 14736, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10547, + "offset": 14823, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10684, + "offset": 14866, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10807, + "offset": 14957, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 10940, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 11062, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11538, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11614, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11692, + "offset": 15000, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11766, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 15094, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11840, + "offset": 15299, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11924, + "offset": 15360, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12010, + "offset": 15427, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12098, + "offset": 15490, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12158, + "offset": 15561, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12238, + "offset": 15632, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12298, + "offset": 15693, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12320, + "offset": 15711, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12368, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 15938, + "length": 23, + "value": "\".RequestTimeoutPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12435, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 16030, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12453, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 16050, + "length": 20, + "value": "\"connect_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 2760, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 16077, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3004, - "length": 38, - "value": "\".InitializationCompletedEventRequest\"" + "offset": 16097, + "length": 17, + "value": "\"read_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3111, + "offset": 16121, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3131, - "length": 20, - "value": "\"static_device_info\"" + "offset": 16141, + "length": 18, + "value": "\"write_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3158, + "offset": 16166, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3178, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 16186, + "length": 20, + "value": "\"overall_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3623, + "offset": 16630, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3718, + "offset": 16722, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4326, + "offset": 16811, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4453, + "offset": 16901, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4708, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4779, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4840, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4858, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 6706, - "length": 12, - "value": "\"gateway.v1\"" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 6939, - "length": 27, - "value": "\".InitializationDeviceInfo\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17128, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7035, + "offset": 17217, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7055, - "length": 11, - "value": "\"bundle_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17255, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7073, + "offset": 17341, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7093, - "length": 13, - "value": "\"device_make\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17380, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7113, + "offset": 17467, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7133, - "length": 14, - "value": "\"device_model\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17508, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7154, + "offset": 17597, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17816, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17877, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17940, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18007, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18068, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18086, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 7174, - "length": 12, - "value": "\"os_version\"" + "offset": 18306, + "length": 16, + "value": "\".RequestPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7610, + "offset": 18391, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7695, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 18411, + "length": 14, + "value": "\"retry_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7782, + "offset": 18432, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7870, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 18452, + "length": 16, + "value": "\"timeout_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8169, + "offset": 18892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8292, + "offset": 18982, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8417, + "offset": 19581, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8538, + "offset": 19704, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 8749, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 8804, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8861, + "offset": 19905, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8914, + "offset": 19968, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8975, + "offset": 20029, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8993, + "offset": 20047, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9221, - "length": 24, - "value": "\".InitializationRequest\"" + "offset": 20283, + "length": 32, + "value": "\".DiagnosticEventsConfiguration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9314, + "offset": 20384, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9334, - "length": 13, - "value": "\"client_info\"" + "offset": 20400, + "length": 9, + "value": "\"enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9354, + "offset": 20416, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9370, - "length": 9, - "value": "\"privacy\"" + "offset": 20436, + "length": 16, + "value": "\"max_batch_size\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9386, + "offset": 20459, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9402, - "length": 6, - "value": "\"idfi\"" + "offset": 20479, + "length": 23, + "value": "\"max_batch_interval_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9415, + "offset": 20509, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9435, - "length": 12, - "value": "\"session_id\"" + "offset": 20529, + "length": 13, + "value": "\"ttm_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9454, + "offset": 20549, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9470, - "length": 7, - "value": "\"cache\"" + "offset": 20565, + "length": 10, + "value": "\"severity\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9484, + "offset": 20582, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9504, - "length": 26, - "value": "\"legacy_flow_user_consent\"" + "offset": 20602, + "length": 16, + "value": "\"allowed_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9537, + "offset": 20625, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9553, - "length": 6, - "value": "\"auid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9566, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9586, - "length": 19, - "value": "\"analytics_user_id\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9612, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9632, - "length": 13, - "value": "\"device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9652, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9673, - "length": 15, - "value": "\"is_first_init\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 10105, - "length": 5, - "value": "false" + "offset": 20645, + "length": 16, + "value": "\"blocked_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11335, + "offset": 21085, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11430, + "offset": 21167, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11520, + "offset": 21255, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11608, + "offset": 21349, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11700, + "offset": 21434, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11788, + "offset": 21517, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11893, + "offset": 21605, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11980, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 21819, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12079, + "offset": 21902, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12174, - "length": 2, - "value": "10" + "offset": 21939, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12870, + "offset": 22024, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12995, + "offset": 22067, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13126, + "offset": 22158, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 22193, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13262, + "offset": 22279, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13381, + "offset": 22403, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13521, + "offset": 22528, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13643, + "offset": 22653, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13777, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13907, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 13956, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 14050, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14522, + "offset": 22872, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14590, + "offset": 22931, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14652, + "offset": 23002, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14724, + "offset": 23057, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14788, + "offset": 23108, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14884, + "offset": 23169, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14946, + "offset": 23230, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 15030, + "offset": 23291, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 15104, - "length": 5, - "value": "false" + "offset": 23309, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15180, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23541, + "length": 28, + "value": "\".AdOperationsConfiguration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15202, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 23638, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15250, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23658, + "length": 17, + "value": "\"load_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15317, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 23682, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15335, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23702, + "length": 17, + "value": "\"show_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1186, + "offset": 23726, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23746, + "length": 22, + "value": "\"get_token_timeout_ms\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1218, + "offset": 24192, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 24281, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1280, + "offset": 24370, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1423, + "offset": 24595, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1456, + "offset": 24681, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1485, + "offset": 24719, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 24805, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1512, + "offset": 24847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 24937, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 4110, + "offset": 25160, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25221, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25290, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25351, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 25595, + "length": 22, + "value": "\".NativeConfiguration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4251, + "offset": 25686, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "Dictionary", - "offset": 4369, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 25706, + "length": 19, + "value": "\"diagnostic_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 25732, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 4995, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 25752, + "length": 13, + "value": "\"init_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5145, + "offset": 25772, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5161, - "length": 23, - "value": "\"AD_FORMAT_UNSPECIFIED\"" + "offset": 25792, + "length": 11, + "value": "\"ad_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5191, + "offset": 25810, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5207, + "offset": 25830, "length": 24, - "value": "\"AD_FORMAT_INTERSTITIAL\"" + "value": "\"operative_event_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5238, + "offset": 25861, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5254, - "length": 20, - "value": "\"AD_FORMAT_REWARDED\"" + "offset": 25881, + "length": 14, + "value": "\"other_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5281, + "offset": 25902, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5297, - "length": 18, - "value": "\"AD_FORMAT_BANNER\"" + "offset": 25922, + "length": 15, + "value": "\"ad_operations\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 25944, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5529, - "length": 12, - "value": "\".Placement\"" + "offset": 25964, + "length": 15, + "value": "\"feature_flags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5610, + "offset": 25986, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5630, - "length": 11, - "value": "\"ad_format\"" + "offset": 26006, + "length": 18, + "value": "\"enable_iap_event\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6065, + "offset": 26031, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 26051, + "length": 11, + "value": "\"enable_om\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6366, - "length": 1, - "value": "1" + "offset": 26069, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "BooleanLiteral", - "offset": 6547, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 26090, + "length": 27, + "value": "\"additional_store_packages\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 6608, + "offset": 26582, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 6626, - "length": 4, - "value": "true" + "offset": 26614, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 6855, - "length": 25, - "value": "\".InitializationResponse\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 26665, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6949, + "offset": 28421, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 6969, - "length": 22, - "value": "\"native_configuration\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6998, + "offset": 28522, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7018, - "length": 23, - "value": "\"universal_request_url\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7048, + "offset": 28617, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7064, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7078, + "offset": 28710, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7098, - "length": 42, - "value": "\"trigger_initialization_completed_request\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 28815, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7147, + "offset": 28911, "length": 1, - "value": "5" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7167, - "length": 31, - "value": "\"count_of_last_shown_campaigns\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29008, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7205, + "offset": 29105, "length": 1, - "value": "6" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7225, - "length": 17, - "value": "\"scar_placements\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29201, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29291, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7666, + "offset": 30007, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7764, + "offset": 30137, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7861, + "offset": 30265, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7945, + "offset": 30405, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8057, + "offset": 30536, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8158, + "offset": 30668, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8861, + "offset": 30800, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 8989, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 30852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9104, + "offset": 30949, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9170, + "offset": 30991, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9283, + "offset": 31082, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9333, - "length": 1, - "value": "0" + "offset": 31247, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 9431, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 31727, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 9659, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 31801, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9890, + "offset": 31871, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9965, + "offset": 31965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10012, + "offset": 32041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10121, + "offset": 32119, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10206, + "offset": 32197, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10269, + "offset": 32279, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10330, + "offset": 32349, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10348, + "offset": 32471, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 5618, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32519, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 5838, - "length": 14, - "value": "\".MutableData\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32586, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 5921, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32604, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5941, + "offset": 32823, "length": 15, - "value": "\"current_state\"" + "value": "\".FeatureFlags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5963, - "length": 2, - "value": "10" + "offset": 32907, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5984, - "length": 15, - "value": "\"session_token\"" + "offset": 32927, + "length": 20, + "value": "\"opengl_gpu_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6006, - "length": 2, - "value": "11" + "offset": 32954, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6023, - "length": 9, - "value": "\"privacy\"" + "offset": 32974, + "length": 37, + "value": "\"opportunity_id_placement_validation\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6039, - "length": 2, - "value": "12" + "offset": 33018, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6060, - "length": 18, - "value": "\"session_counters\"" + "offset": 33038, + "length": 31, + "value": "\"bold_sdk_next_session_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6085, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6106, - "length": 13, - "value": "\"allowed_pii\"" + "offset": 33493, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6126, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6143, - "length": 7, - "value": "\"cache\"" + "offset": 33584, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6157, - "length": 2, - "value": "15" + "offset": 33691, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6178, - "length": 13, - "value": "\"privacy_fsm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 33926, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6615, + "offset": 34018, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6704, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6794, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6974, - "length": 2, - "value": "13" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34075, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7064, - "length": 2, - "value": "14" + "offset": 34183, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7147, - "length": 2, - "value": "15" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34233, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7741, + "offset": 34334, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7861, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34537, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7977, - "length": 2, - "value": "11" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34636, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8103, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34721, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8224, - "length": 2, - "value": "13" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34782, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8338, - "length": 2, - "value": "14" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34800, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8457, - "length": 2, - "value": "15" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 1337, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8657, + "offset": 1701, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8718, + "offset": 2058, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8769, + "offset": 2411, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8836, + "offset": 2756, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8893, + "offset": 3116, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8940, + "offset": 3449, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8997, + "offset": 3761, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 9058, + "offset": 4075, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 9076, - "length": 4, - "value": "true" + "offset": 4406, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1480, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5464, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1566, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5708, + "length": 30, + "value": "\".NetworkCapabilityTransports\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 5807, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1859, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5823, + "length": 11, + "value": "\"bluetooth\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 5841, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 2169, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 2686, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5857, + "length": 10, + "value": "\"cellular\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 2806, + "offset": 5874, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 2911, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5890, + "length": 10, + "value": "\"ethernet\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 3079, + "offset": 5907, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 4880, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 4954, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5923, + "length": 8, + "value": "\"lowpan\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 5117, + "offset": 5938, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 5240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "Array", - "offset": 5522, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "Array", - "offset": 5665, - "length": 2, - "value": "[]" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 6138, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5954, + "length": 11, + "value": "\"satellite\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 6229, + "offset": 5972, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 10891, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 11056, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 11774, - "length": 12, - "value": "\"gateway.v1\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12001, - "length": 21, - "value": "\".RequestRetryPolicy\"" + "offset": 5988, + "length": 8, + "value": "\"thread\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12091, + "offset": 6003, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12111, - "length": 14, - "value": "\"max_duration\"" + "offset": 6019, + "length": 5, + "value": "\"usb\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12132, + "offset": 6031, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12152, - "length": 17, - "value": "\"retry_wait_base\"" + "offset": 6047, + "length": 5, + "value": "\"vpn\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12176, + "offset": 6059, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12196, - "length": 20, - "value": "\"retry_max_interval\"" + "offset": 6075, + "length": 6, + "value": "\"wifi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12223, - "length": 1, - "value": "4" + "offset": 6088, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12243, - "length": 18, - "value": "\"retry_jitter_pct\"" + "offset": 6109, + "length": 12, + "value": "\"wifi_aware\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12268, + "offset": 6545, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 12288, - "length": 22, - "value": "\"retry_scaling_factor\"" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12317, + "offset": 6630, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 12337, - "length": 22, - "value": "\"should_store_locally\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "IntegerLiteral", + "offset": 6714, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12783, + "offset": 6798, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12870, + "offset": 6880, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12959, + "offset": 6965, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13051, + "offset": 7047, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13141, + "offset": 7126, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13235, + "offset": 7205, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13458, - "length": 1, - "value": "0" + "offset": 7285, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13542, + "offset": 7873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13580, + "offset": 7988, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13666, + "offset": 8103, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13707, + "offset": 8216, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13796, + "offset": 8332, "length": 1, - "value": "3" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13835, + "offset": 8445, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13922, + "offset": 8555, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13965, + "offset": 8665, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 14056, + "offset": 8776, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "IntegerLiteral", + "offset": 8892, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14099, + "offset": 9118, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 14193, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9171, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14398, + "offset": 9224, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14459, + "offset": 9273, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14526, + "offset": 9328, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14589, + "offset": 9377, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14660, + "offset": 9420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14731, + "offset": 9463, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14792, + "offset": 9508, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9624, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14810, + "offset": 9642, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15037, - "length": 23, - "value": "\".RequestTimeoutPolicy\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15129, + "offset": 1247, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15149, - "length": 20, - "value": "\"connect_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15176, + "offset": 1287, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15196, - "length": 17, - "value": "\"read_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15220, + "offset": 1317, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15240, - "length": 18, - "value": "\"write_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15265, + "offset": 1463, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15285, - "length": 20, - "value": "\"overall_timeout_ms\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15729, + "offset": 1503, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15821, + "offset": 1533, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15910, + "offset": 1563, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 16000, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16227, + "offset": 2183, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16316, + "offset": 2215, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16354, + "offset": 2359, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16440, + "offset": 2387, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 6984, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16479, + "offset": 7152, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 16566, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7168, + "length": 34, + "value": "\"OPERATIVE_EVENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16607, + "offset": 7209, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7225, + "length": 45, + "value": "\"OPERATIVE_EVENT_TYPE_SPECIFIED_BY_AD_PLAYER\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16696, + "offset": 7277, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 16915, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7293, + "length": 33, + "value": "\"OPERATIVE_EVENT_TYPE_LOAD_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 16976, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7333, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17039, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7349, + "length": 33, + "value": "\"OPERATIVE_EVENT_TYPE_SHOW_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17106, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7543, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17167, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7559, + "length": 40, + "value": "\"OPERATIVE_EVENT_ERROR_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17185, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7606, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17405, - "length": 16, - "value": "\".RequestPolicy\"" + "offset": 7622, + "length": 36, + "value": "\"OPERATIVE_EVENT_ERROR_TYPE_TIMEOUT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7886, + "length": 26, + "value": "\".OperativeEventErrorData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17490, + "offset": 7981, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17510, - "length": 14, - "value": "\"retry_policy\"" + "offset": 8001, + "length": 12, + "value": "\"error_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17531, + "offset": 8020, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17551, - "length": 16, - "value": "\"timeout_policy\"" + "offset": 8036, + "length": 9, + "value": "\"message\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17991, + "offset": 8469, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18081, + "offset": 8553, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18680, + "offset": 8857, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18803, + "offset": 8974, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19004, + "offset": 9185, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19067, + "offset": 9234, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19128, + "offset": 9295, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19146, + "offset": 9313, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19382, - "length": 32, - "value": "\".DiagnosticEventsConfiguration\"" + "offset": 9541, + "length": 24, + "value": "\".OperativeEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19483, + "offset": 9634, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19499, - "length": 9, - "value": "\"enabled\"" + "offset": 9654, + "length": 10, + "value": "\"event_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19515, + "offset": 9671, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19535, - "length": 16, - "value": "\"max_batch_size\"" + "offset": 9691, + "length": 12, + "value": "\"event_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19558, + "offset": 9710, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19578, - "length": 23, - "value": "\"max_batch_interval_ms\"" + "offset": 9730, + "length": 27, + "value": "\"impression_opportunity_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19608, + "offset": 9764, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19628, - "length": 13, - "value": "\"ttm_enabled\"" + "offset": 9784, + "length": 16, + "value": "\"tracking_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19648, + "offset": 9807, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19664, - "length": 10, - "value": "\"severity\"" + "offset": 9827, + "length": 17, + "value": "\"additional_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19681, + "offset": 9851, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19701, - "length": 16, - "value": "\"allowed_events\"" + "offset": 9867, + "length": 5, + "value": "\"sid\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19724, + "offset": 9879, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9899, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9924, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9944, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9971, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9991, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10019, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19744, + "offset": 10040, "length": 16, - "value": "\"blocked_events\"" + "value": "\"campaign_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20184, + "offset": 10480, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20266, + "offset": 10563, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20354, + "offset": 10647, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20448, + "offset": 10746, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20533, + "offset": 10835, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20616, + "offset": 10925, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20704, + "offset": 11005, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 20918, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 11099, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21001, + "offset": 11194, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21038, - "length": 1, - "value": "0" + "offset": 11290, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21123, + "offset": 11889, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21166, + "offset": 12015, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21257, + "offset": 12163, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 21292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21378, + "offset": 12291, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21502, + "offset": 12421, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21627, + "offset": 12530, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21752, + "offset": 12651, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 21971, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22030, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22101, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12777, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22156, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12904, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22207, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13027, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22268, + "offset": 13235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22329, + "offset": 13288, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22390, + "offset": 13369, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22640, - "length": 28, - "value": "\".AdOperationsConfiguration\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 22737, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22757, - "length": 17, - "value": "\"load_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 22781, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22801, - "length": 17, - "value": "\"show_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23242, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23331, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23552, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13493, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23638, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13534, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23676, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13601, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23762, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13670, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 23985, + "offset": 13741, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24046, + "offset": 13804, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24107, + "offset": 13865, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24125, + "offset": 13883, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 24351, - "length": 22, - "value": "\".NativeConfiguration\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1214, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24442, + "offset": 1301, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 24462, - "length": 19, - "value": "\"diagnostic_events\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1395, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24488, + "offset": 1497, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24508, - "length": 13, - "value": "\"init_policy\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 24528, - "length": 1, - "value": "3" + "offset": 1840, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24548, - "length": 11, - "value": "\"ad_policy\"" + "offset": 2074, + "length": 20, + "value": "\".PermanentCounters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24566, + "offset": 2163, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24586, - "length": 24, - "value": "\"operative_event_policy\"" + "offset": 2183, + "length": 27, + "value": "\"total_rewarded_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24617, + "offset": 2217, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24637, - "length": 14, - "value": "\"other_policy\"" + "offset": 2237, + "length": 31, + "value": "\"total_interstitial_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24658, + "offset": 2275, "length": 1, - "value": "6" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24678, - "length": 15, - "value": "\"ad_operations\"" + "offset": 2295, + "length": 35, + "value": "\"total_bidding_rewarded_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24700, + "offset": 2337, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24720, - "length": 15, - "value": "\"feature_flags\"" + "offset": 2357, + "length": 39, + "value": "\"total_bidding_interstitial_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26321, + "offset": 2820, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26422, + "offset": 2919, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26517, + "offset": 3022, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26610, + "offset": 3128, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 26715, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 26811, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26908, + "offset": 3380, "length": 1, - "value": "7" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27613, + "offset": 3476, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27743, + "offset": 3528, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27871, + "offset": 3628, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28011, + "offset": 3683, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28142, + "offset": 3786, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28274, + "offset": 3845, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28406, + "offset": 3952, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 28889, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 28963, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29033, + "offset": 4179, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29127, + "offset": 4268, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29203, + "offset": 4363, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29281, + "offset": 4466, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29359, + "offset": 4527, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29381, + "offset": 4545, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29429, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29496, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 6, + "value": "\".Pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29514, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29733, - "length": 15, - "value": "\".FeatureFlags\"" + "offset": 2037, + "length": 16, + "value": "\"advertising_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 29817, + "offset": 2060, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29837, - "length": 20, - "value": "\"opengl_gpu_enabled\"" + "offset": 2080, + "length": 11, + "value": "\"vendor_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 29864, + "offset": 2098, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29884, - "length": 37, - "value": "\"opportunity_id_placement_validation\"" + "offset": 2118, + "length": 30, + "value": "\"open_advertising_tracking_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30345, + "offset": 2572, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30436, + "offset": 2661, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 30678, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30770, + "offset": 3068, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 30827, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 3186, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30935, + "offset": 3338, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31138, + "offset": 3517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31237, + "offset": 3568, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31298, + "offset": 3653, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3714, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31316, + "offset": 3732, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1207, + "offset": 1168, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1239, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1279, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1309, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1544, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1455, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1781, + "length": 23, + "value": "\".PrivacyUpdateRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1495, + "offset": 1873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1525, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1555, + "offset": 1905, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 2175, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1921, + "length": 9, + "value": "\"content\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2207, + "offset": 2354, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 2351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2379, + "offset": 2437, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 6988, - "length": 12, - "value": "\"gateway.v1\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7148, + "offset": 2646, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7164, - "length": 34, - "value": "\"OPERATIVE_EVENT_TYPE_UNSPECIFIED\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7205, + "offset": 2726, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 45, - "value": "\"OPERATIVE_EVENT_TYPE_SPECIFIED_BY_AD_PLAYER\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7273, + "offset": 2842, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7289, - "length": 33, - "value": "\"OPERATIVE_EVENT_TYPE_LOAD_ERROR\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7329, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3043, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7345, - "length": 33, - "value": "\"OPERATIVE_EVENT_TYPE_SHOW_ERROR\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3092, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7539, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3153, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7555, - "length": 40, - "value": "\"OPERATIVE_EVENT_ERROR_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3171, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7602, + "offset": 1170, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7618, - "length": 36, - "value": "\"OPERATIVE_EVENT_ERROR_TYPE_TIMEOUT\"" + "offset": 1547, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7882, - "length": 26, - "value": "\".OperativeEventErrorData\"" + "offset": 1785, + "length": 24, + "value": "\".PrivacyUpdateResponse\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7977, + "offset": 1878, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7997, - "length": 12, - "value": "\"error_type\"" + "offset": 1894, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8016, + "offset": 1910, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 8032, + "offset": 1926, "length": 9, - "value": "\"message\"" + "value": "\"content\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8465, + "offset": 2359, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8549, + "offset": 2442, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8853, + "offset": 2731, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8970, + "offset": 2847, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9181, + "offset": 3050, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9230, + "offset": 3099, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9291, + "offset": 3160, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9309, + "offset": 3178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9537, - "length": 24, - "value": "\".OperativeEventRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9630, + "offset": 1190, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9650, - "length": 10, - "value": "\"event_id\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9667, + "offset": 1306, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9687, - "length": 12, - "value": "\"event_type\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9706, + "offset": 1393, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9726, - "length": 27, - "value": "\"impression_opportunity_id\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9760, + "offset": 1518, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9780, - "length": 16, - "value": "\"tracking_token\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9803, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "kind": "StringLiteral", + "offset": 1937, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9823, - "length": 17, - "value": "\"additional_data\"" + "offset": 2169, + "length": 18, + "value": "\".SessionCounters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9847, + "offset": 2256, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9863, - "length": 5, - "value": "\"sid\"" + "offset": 2276, + "length": 15, + "value": "\"load_requests\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9875, + "offset": 2298, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9895, - "length": 18, - "value": "\"session_counters\"" + "offset": 2318, + "length": 19, + "value": "\"load_requests_adm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9920, + "offset": 2344, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9940, - "length": 20, - "value": "\"static_device_info\"" + "offset": 2364, + "length": 22, + "value": "\"banner_load_requests\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9967, + "offset": 2393, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9987, + "offset": 2413, "length": 21, - "value": "\"dynamic_device_info\"" + "value": "\"banner_requests_adm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10015, - "length": 2, - "value": "10" + "offset": 2441, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 10036, - "length": 16, - "value": "\"campaign_state\"" + "offset": 2461, + "length": 20, + "value": "\"banner_impressions\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10476, + "offset": 2905, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10559, + "offset": 2993, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10643, + "offset": 3084, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10742, + "offset": 3178, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10831, + "offset": 3271, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 10921, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11001, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11095, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 11190, + "offset": 3495, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11286, - "length": 2, - "value": "10" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 11885, + "offset": 3580, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12011, + "offset": 3620, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12159, + "offset": 3708, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12287, + "offset": 3751, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12417, + "offset": 3842, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12526, + "offset": 3884, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12647, + "offset": 3974, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12773, + "offset": 4016, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12900, + "offset": 4106, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13023, - "length": 2, - "value": "10" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13231, + "offset": 4307, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13284, + "offset": 4372, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13365, + "offset": 4443, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13426, + "offset": 4512, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13489, + "offset": 4581, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13530, + "offset": 4642, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13597, - "length": 5, - "value": "false" + "offset": 4660, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13666, + "offset": 2061, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13737, + "offset": 2491, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 13800, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 4567, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5005, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5431, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5860, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 6392, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 6842, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10360, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10779, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 17364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 17834, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 19075, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13861, + "offset": 19488, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "Array", + "offset": 20287, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 20355, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13879, - "length": 4, - "value": "true" + "offset": 20759, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1714, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 23518, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1926, - "length": 6, - "value": "\".Pii\"" + "offset": 23751, + "length": 19, + "value": "\".StaticDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2001, + "offset": 23839, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2021, - "length": 16, - "value": "\"advertising_id\"" + "offset": 23859, + "length": 11, + "value": "\"bundle_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2044, + "offset": 23877, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2064, - "length": 11, - "value": "\"vendor_id\"" + "offset": 23897, + "length": 16, + "value": "\"bundle_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2082, + "offset": 23920, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2102, - "length": 30, - "value": "\"open_advertising_tracking_id\"" + "offset": 23940, + "length": 16, + "value": "\"app_debuggable\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2556, + "offset": 23963, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 23979, + "length": 8, + "value": "\"rooted\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2645, + "offset": 23994, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24014, + "length": 12, + "value": "\"os_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2729, + "offset": 24033, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24053, + "length": 13, + "value": "\"device_make\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3052, + "offset": 24073, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24093, + "length": 14, + "value": "\"device_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3170, + "offset": 24114, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24134, + "length": 12, + "value": "\"webview_ua\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3322, + "offset": 24153, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3501, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24173, + "length": 16, + "value": "\"screen_density\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3552, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24196, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3637, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24217, + "length": 14, + "value": "\"screen_width\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3698, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24238, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3716, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24259, + "length": 15, + "value": "\"screen_height\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1160, - "length": 1, - "value": "0" + "offset": 24281, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1536, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 24302, + "length": 13, + "value": "\"screen_size\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24322, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1765, - "length": 23, - "value": "\".PrivacyUpdateRequest\"" + "offset": 24339, + "length": 8, + "value": "\"stores\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1857, - "length": 1, - "value": "1" + "offset": 24354, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1873, - "length": 9, - "value": "\"version\"" + "offset": 24375, + "length": 18, + "value": "\"total_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1889, - "length": 1, - "value": "2" + "offset": 24400, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24421, + "length": 18, + "value": "\"total_ram_memory\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24446, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24467, + "length": 11, + "value": "\"cpu_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24485, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24506, + "length": 11, + "value": "\"cpu_count\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24524, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24545, + "length": 11, + "value": "\"gpu_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24563, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24580, + "length": 9, + "value": "\"android\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24596, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1905, - "length": 9, - "value": "\"content\"" + "offset": 24613, + "length": 5, + "value": "\"ios\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "Array", + "offset": 25111, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2338, + "offset": 27417, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2421, + "offset": 27509, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2630, + "offset": 27606, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2710, + "offset": 27701, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2826, + "offset": 27789, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3027, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3076, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3137, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 27882, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3155, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 27976, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1162, + "offset": 28071, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1539, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28164, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1769, - "length": 24, - "value": "\".PrivacyUpdateResponse\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28261, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1862, - "length": 1, - "value": "1" + "offset": 28357, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1878, - "length": 9, - "value": "\"version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28454, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1894, - "length": 1, - "value": "2" + "offset": 28549, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1910, - "length": 9, - "value": "\"content\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28640, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2343, - "length": 1, - "value": "1" + "offset": 28738, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2426, - "length": 1, - "value": "2" + "offset": 28836, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2635, - "length": 1, - "value": "0" + "offset": 28929, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2715, - "length": 1, - "value": "1" + "offset": 29021, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2831, - "length": 1, - "value": "2" + "offset": 29114, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3034, + "offset": 29204, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3083, - "length": 5, - "value": "false" + "offset": 29294, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 29608, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3144, + "offset": 29694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3162, + "offset": 29784, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1182, + "offset": 30689, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1298, + "offset": 30821, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1385, + "offset": 30951, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1510, + "offset": 31074, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1588, + "offset": 31202, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 1929, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 18, - "value": "\".SessionCounters\"" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2240, + "offset": 31331, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 15, - "value": "\"load_requests\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2282, + "offset": 31461, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2302, - "length": 19, - "value": "\"load_requests_adm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31589, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2328, + "offset": 31721, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2348, - "length": 22, - "value": "\"banner_load_requests\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31851, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2377, - "length": 1, - "value": "4" + "offset": 31983, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2397, - "length": 21, - "value": "\"banner_requests_adm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32113, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2425, - "length": 1, - "value": "5" + "offset": 32249, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2445, - "length": 20, - "value": "\"banner_impressions\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32378, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2889, - "length": 1, - "value": "1" + "offset": 32511, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2977, - "length": 1, - "value": "2" + "offset": 32639, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3068, - "length": 1, - "value": "3" + "offset": 32766, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3162, - "length": 1, - "value": "4" + "offset": 32894, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3255, - "length": 1, - "value": "5" + "offset": 33145, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3479, - "length": 1, - "value": "0" + "offset": 33344, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3564, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33834, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3604, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33914, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3692, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33994, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3735, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3826, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34132, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3868, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34206, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3958, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34282, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 4000, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34354, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 4090, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34434, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4291, + "offset": 34510, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4356, + "offset": 34588, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4427, + "offset": 34662, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4496, + "offset": 34728, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4565, + "offset": 34810, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4626, + "offset": 34892, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4644, - "length": 4, - "value": "true" + "offset": 34962, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2053, + "offset": 35032, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2483, + "offset": 35102, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 4559, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35188, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 4997, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35210, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 5423, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35258, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 5852, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35325, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 6384, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35343, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 6834, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35597, + "length": 10, + "value": "\".Android\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7676, + "offset": 35676, "length": 1, - "value": "0" + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 10343, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35696, + "length": 11, + "value": "\"api_level\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 10720, + "offset": 35714, "length": 1, - "value": "0" + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 16717, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35734, + "length": 14, + "value": "\"version_code\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 18272, + "offset": 35755, "length": 1, - "value": "0" + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 18685, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 35775, + "length": 21, + "value": "\"android_fingerprint\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "Array", - "offset": 19484, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 35803, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 35823, + "length": 15, + "value": "\"app_installer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 19552, + "offset": 35845, "length": 1, - "value": "0" + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 20710, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 35865, + "length": 40, + "value": "\"apk_developer_signing_certificate_hash\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 35912, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 20935, - "length": 19, - "value": "\".StaticDeviceInfo\"" + "offset": 35932, + "length": 13, + "value": "\"build_board\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21023, + "offset": 35952, "length": 1, - "value": "1" + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21043, - "length": 11, - "value": "\"bundle_id\"" + "offset": 35972, + "length": 13, + "value": "\"build_brand\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21061, + "offset": 35992, "length": 1, - "value": "2" + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21081, - "length": 16, - "value": "\"bundle_version\"" + "offset": 36012, + "length": 14, + "value": "\"build_device\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21104, + "offset": 36033, "length": 1, - "value": "3" + "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21124, - "length": 16, - "value": "\"app_debuggable\"" + "offset": 36053, + "length": 15, + "value": "\"build_display\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21147, - "length": 1, - "value": "4" + "offset": 36075, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21163, - "length": 8, - "value": "\"rooted\"" + "offset": 36096, + "length": 19, + "value": "\"build_fingerprint\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21178, - "length": 1, - "value": "5" + "offset": 36122, + "length": 2, + "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21198, - "length": 12, - "value": "\"os_version\"" + "offset": 36143, + "length": 16, + "value": "\"build_hardware\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21217, - "length": 1, - "value": "6" + "offset": 36166, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21237, - "length": 13, - "value": "\"device_make\"" + "offset": 36187, + "length": 12, + "value": "\"build_host\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21257, - "length": 1, - "value": "7" + "offset": 36206, + "length": 2, + "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21277, - "length": 14, - "value": "\"device_model\"" + "offset": 36227, + "length": 18, + "value": "\"build_bootloader\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21298, - "length": 1, - "value": "8" + "offset": 36252, + "length": 2, + "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21318, - "length": 12, - "value": "\"webview_ua\"" + "offset": 36273, + "length": 15, + "value": "\"build_product\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21337, - "length": 1, - "value": "9" + "offset": 36295, + "length": 2, + "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21357, - "length": 16, - "value": "\"screen_density\"" + "offset": 36316, + "length": 10, + "value": "\"build_id\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21380, + "offset": 36333, "length": 2, - "value": "10" + "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21401, - "length": 14, - "value": "\"screen_width\"" + "offset": 36354, + "length": 19, + "value": "\"extension_version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21422, + "offset": 36380, "length": 2, - "value": "11" + "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21443, - "length": 15, - "value": "\"screen_height\"" + "offset": 36401, + "length": 12, + "value": "\"phone_type\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21465, + "offset": 36420, "length": 2, - "value": "12" + "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21486, - "length": 13, - "value": "\"screen_size\"" + "offset": 36441, + "length": 14, + "value": "\"sim_operator\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21506, - "length": 2, - "value": "13" + "offset": 39287, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21523, - "length": 8, - "value": "\"stores\"" + "kind": "IntegerLiteral", + "offset": 39379, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21538, - "length": 2, - "value": "14" + "offset": 39474, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21559, - "length": 18, - "value": "\"total_disk_space\"" + "kind": "IntegerLiteral", + "offset": 39576, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21584, - "length": 2, - "value": "15" + "offset": 39672, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21605, - "length": 18, - "value": "\"total_ram_memory\"" + "kind": "IntegerLiteral", + "offset": 39790, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21630, - "length": 2, - "value": "16" + "offset": 39884, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21651, - "length": 11, - "value": "\"cpu_model\"" + "kind": "IntegerLiteral", + "offset": 39978, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21669, + "offset": 40073, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 40169, "length": 2, - "value": "17" + "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21690, - "length": 11, - "value": "\"cpu_count\"" + "kind": "IntegerLiteral", + "offset": 40270, + "length": 2, + "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21708, + "offset": 40368, "length": 2, - "value": "18" + "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21729, - "length": 11, - "value": "\"gpu_model\"" + "kind": "IntegerLiteral", + "offset": 40462, + "length": 2, + "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21747, + "offset": 40562, "length": 2, - "value": "19" + "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21764, - "length": 9, - "value": "\"android\"" + "kind": "IntegerLiteral", + "offset": 40659, + "length": 2, + "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21780, + "offset": 40751, "length": 2, - "value": "20" + "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21797, - "length": 5, - "value": "\"ios\"" + "kind": "IntegerLiteral", + "offset": 40852, + "length": 2, + "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "Array", - "offset": 22295, + "kind": "IntegerLiteral", + "offset": 40945, "length": 2, - "value": "[]" + "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24148, + "offset": 41640, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24240, + "offset": 41770, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24337, + "offset": 41907, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24432, + "offset": 42038, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24520, + "offset": 42191, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24613, + "offset": 42320, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24707, + "offset": 42449, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24802, + "offset": 42579, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24895, + "offset": 42710, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24992, + "offset": 42845, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25088, + "offset": 42978, "length": 2, "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25185, + "offset": 43107, "length": 2, "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25280, + "offset": 43242, "length": 2, "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25371, + "offset": 43374, "length": 2, "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25469, + "offset": 43501, "length": 2, "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25567, + "offset": 43637, "length": 2, "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25660, + "offset": 43765, "length": 2, "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25752, + "offset": 43896, "length": 2, "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 25845, - "length": 2, - "value": "19" + "kind": "BooleanLiteral", + "offset": 44374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44450, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44540, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44618, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44740, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44814, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44964, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45042, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45128, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45208, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45280, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45364, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45442, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 25935, + "offset": 45510, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26025, + "offset": 45596, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45668, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45766, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 26339, - "length": 2, - "value": "20" + "kind": "BooleanLiteral", + "offset": 45814, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26425, + "offset": 45881, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26515, + "offset": 45899, "length": 4, "value": "true" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46149, + "length": 6, + "value": "\".Ios\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27420, + "offset": 46224, "length": 1, "value": "1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46244, + "length": 18, + "value": "\"system_boot_time\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27552, + "offset": 46269, "length": 1, "value": "2" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46285, + "length": 11, + "value": "\"simulator\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27682, + "offset": 46303, "length": 1, "value": "3" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46323, + "length": 19, + "value": "\"built_sdk_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27805, + "offset": 46349, "length": 1, "value": "4" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 16, + "value": "\"skadnetwork_id\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27933, + "offset": 46392, "length": 1, "value": "5" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46412, + "length": 14, + "value": "\"screen_scale\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28062, + "offset": 46433, "length": 1, "value": "6" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46453, + "length": 19, + "value": "\"can_make_payments\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28192, + "offset": 46479, "length": 1, "value": "7" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46499, + "length": 15, + "value": "\"xcode_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28320, + "offset": 46521, "length": 1, "value": "8" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46541, + "length": 21, + "value": "\"xcode_build_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28452, + "offset": 46569, "length": 1, "value": "9" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46589, + "length": 25, + "value": "\"xcode_sdk_build_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28582, - "length": 2, - "value": "10" + "offset": 47038, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28714, - "length": 2, - "value": "11" + "offset": 47129, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28844, - "length": 2, - "value": "12" + "offset": 47214, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28980, - "length": 2, - "value": "13" + "offset": 47307, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29109, - "length": 2, - "value": "14" + "offset": 47397, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29242, - "length": 2, - "value": "15" + "offset": 47486, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29370, - "length": 2, - "value": "16" + "offset": 47577, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29497, - "length": 2, - "value": "17" + "offset": 47667, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29625, - "length": 2, - "value": "18" + "offset": 47762, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29876, - "length": 2, - "value": "19" + "offset": 48368, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 30075, - "length": 2, - "value": "20" + "offset": 48484, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48608, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48741, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48857, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48979, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49100, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49226, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49355, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49576, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49698, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49818, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30565, + "offset": 49885, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30645, + "offset": 49946, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30725, + "offset": 50017, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30791, + "offset": 50094, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30863, + "offset": 50155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 50173, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3152, + "length": 11, + "value": "\".TestData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3232, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3252, + "length": 19, + "value": "\"force_campaign_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3298, + "length": 15, + "value": "\"force_country\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3340, + "length": 27, + "value": "\"force_country_subdivision\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3974, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4585, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4706, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4838, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 30937, + "offset": 5037, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31013, + "offset": 5098, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31085, + "offset": 5181, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31165, + "offset": 5242, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31241, - "length": 5, - "value": "false" + "offset": 5260, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31319, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 1775, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31393, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2194, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31459, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2421, + "length": 13, + "value": "\".Timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31541, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 2503, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31623, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2519, + "length": 11, + "value": "\"timestamp\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31693, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 2537, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31763, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2557, + "length": 19, + "value": "\"session_timestamp\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31833, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3000, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31919, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3088, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3685, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3730, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3819, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 31941, - "length": 4, - "value": "true" + "offset": 4006, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 31989, + "offset": 4073, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 32056, + "offset": 4134, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 32074, + "offset": 4152, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32328, - "length": 10, - "value": "\".Android\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1243, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32407, + "offset": 1275, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32427, - "length": 11, - "value": "\"api_level\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32445, + "offset": 1302, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32465, - "length": 14, - "value": "\"version_code\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32486, + "offset": 1336, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32506, - "length": 21, - "value": "\"android_fingerprint\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1483, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32534, + "offset": 1510, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32554, - "length": 15, - "value": "\"app_installer\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1544, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32576, + "offset": 1575, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32596, - "length": 40, - "value": "\"apk_developer_signing_certificate_hash\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2253, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32643, + "offset": 2285, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32663, - "length": 13, - "value": "\"build_board\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2313, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32683, + "offset": 2343, "length": 1, - "value": "7" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32703, - "length": 13, - "value": "\"build_brand\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2370, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32723, + "offset": 2399, "length": 1, - "value": "8" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32743, - "length": 14, - "value": "\"build_device\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2544, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32764, + "offset": 2572, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32784, - "length": 15, - "value": "\"build_display\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2602, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32806, - "length": 2, - "value": "10" + "offset": 2629, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32827, - "length": 19, - "value": "\"build_fingerprint\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2658, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32853, + "offset": 2687, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "Array", + "offset": 6333, "length": 2, - "value": "11" + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32874, - "length": 16, - "value": "\"build_hardware\"" + "offset": 6988, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32897, - "length": 2, - "value": "12" + "offset": 7147, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32918, - "length": 12, - "value": "\"build_host\"" + "offset": 7163, + "length": 24, + "value": "\"STORE_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32937, - "length": 2, - "value": "13" + "offset": 7194, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32958, - "length": 18, - "value": "\"build_bootloader\"" + "offset": 7210, + "length": 19, + "value": "\"STORE_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32983, - "length": 2, - "value": "14" + "offset": 7236, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33004, - "length": 15, - "value": "\"build_product\"" + "offset": 7252, + "length": 28, + "value": "\"STORE_TYPE_APPLE_APP_STORE\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33026, - "length": 2, - "value": "15" + "offset": 7287, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33047, - "length": 10, - "value": "\"build_id\"" + "offset": 7303, + "length": 24, + "value": "\"STORE_TYPE_GOOGLE_PLAY\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33064, - "length": 2, - "value": "16" + "offset": 7481, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33085, - "length": 19, - "value": "\"extension_version\"" + "offset": 7497, + "length": 31, + "value": "\"TRANSACTION_STATE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33528, + "offset": 7535, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7551, + "length": 27, + "value": "\"TRANSACTION_STATE_PENDING\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33614, + "offset": 7585, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7601, + "length": 29, + "value": "\"TRANSACTION_STATE_PURCHASED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33703, + "offset": 7637, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7653, + "length": 26, + "value": "\"TRANSACTION_STATE_FAILED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33799, + "offset": 7686, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7702, + "length": 28, + "value": "\"TRANSACTION_STATE_RESTORED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33889, + "offset": 7737, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7753, + "length": 28, + "value": "\"TRANSACTION_STATE_DEFERRED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8001, + "length": 18, + "value": "\".TransactionData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34001, + "offset": 8088, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8104, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34089, + "offset": 8122, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8142, + "length": 12, + "value": "\"product_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34177, + "offset": 8161, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8181, + "length": 10, + "value": "\"event_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34266, + "offset": 8198, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34356, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8218, + "length": 16, + "value": "\"transaction_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34451, - "length": 2, - "value": "11" + "offset": 8241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34543, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8257, + "length": 9, + "value": "\"product\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34631, - "length": 2, - "value": "13" + "offset": 8273, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34725, - "length": 2, - "value": "14" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8289, + "length": 13, + "value": "\"transaction\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34816, - "length": 2, - "value": "15" + "offset": 8309, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8325, + "length": 9, + "value": "\"receipt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34902, - "length": 2, - "value": "16" + "offset": 8341, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8361, + "length": 19, + "value": "\"transaction_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35500, + "offset": 8804, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35620, + "offset": 8892, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35747, + "offset": 8978, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35868, + "offset": 9061, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36011, + "offset": 9151, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36130, + "offset": 9235, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36249, + "offset": 9323, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36369, + "offset": 9408, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36490, + "offset": 10004, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36615, - "length": 2, - "value": "10" + "offset": 10129, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36738, - "length": 2, - "value": "11" + "offset": 10245, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36857, - "length": 2, - "value": "12" + "offset": 10374, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36982, - "length": 2, - "value": "13" + "offset": 10491, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37104, - "length": 2, - "value": "14" + "offset": 10616, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37221, - "length": 2, - "value": "15" + "offset": 10728, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37347, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37624, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37863, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37920, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38036, - "length": 5, - "value": "false" + "offset": 10872, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38097, + "offset": 11069, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38166, + "offset": 11122, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38229, + "offset": 11171, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38284, + "offset": 11232, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38351, + "offset": 11281, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38412, + "offset": 11338, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38463, + "offset": 11389, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38532, + "offset": 11456, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38593, + "offset": 11517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38611, + "offset": 11535, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38861, - "length": 6, - "value": "\".Ios\"" + "offset": 11765, + "length": 26, + "value": "\".TransactionEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 38936, + "offset": 11860, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38956, - "length": 18, - "value": "\"system_boot_time\"" + "offset": 11880, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 38981, + "offset": 11907, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38997, - "length": 11, - "value": "\"simulator\"" + "offset": 11927, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39015, + "offset": 11955, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39035, - "length": 19, - "value": "\"built_sdk_version\"" + "offset": 11975, + "length": 11, + "value": "\"app_store\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39061, + "offset": 11993, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39081, - "length": 16, - "value": "\"skadnetwork_id\"" + "offset": 12013, + "length": 14, + "value": "\"custom_store\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39104, + "offset": 12034, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39124, - "length": 14, - "value": "\"screen_scale\"" + "offset": 12054, + "length": 18, + "value": "\"transaction_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39562, + "offset": 12496, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39653, + "offset": 12591, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39738, + "offset": 12687, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39831, + "offset": 12770, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39921, + "offset": 12858, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40518, + "offset": 13463, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40634, + "offset": 13590, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40758, + "offset": 13718, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40891, + "offset": 13843, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 41007, + "offset": 13977, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41228, + "offset": 14204, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41283, + "offset": 14275, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41350, + "offset": 14326, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41411, + "offset": 14383, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41470, + "offset": 14448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41531, + "offset": 14509, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41549, + "offset": 14527, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1553, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7323, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2919, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 18876, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3136, - "length": 11, - "value": "\".TestData\"" + "offset": 19112, + "length": 22, + "value": "\".LimitedSessionToken\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3216, + "offset": 19203, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3236, - "length": 19, - "value": "\"force_campaign_id\"" + "offset": 19223, + "length": 13, + "value": "\"device_make\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3262, + "offset": 19243, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3282, - "length": 15, - "value": "\"force_country\"" + "offset": 19263, + "length": 14, + "value": "\"device_model\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3304, + "offset": 19284, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3324, - "length": 27, - "value": "\"force_country_subdivision\"" + "offset": 19304, + "length": 12, + "value": "\"os_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3775, + "offset": 19323, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 3868, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19339, + "length": 6, + "value": "\"idfi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3958, + "offset": 19352, "length": 1, - "value": "3" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19372, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4569, + "offset": 19392, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19412, + "length": 18, + "value": "\"sdk_version_name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4690, + "offset": 19437, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19457, + "length": 9, + "value": "\"game_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4822, + "offset": 19473, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5021, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19489, + "length": 10, + "value": "\"platform\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5082, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19506, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5165, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19527, + "length": 20, + "value": "\"mediation_provider\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5226, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19554, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5244, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19575, + "length": 23, + "value": "\"custom_mediation_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1767, - "length": 1, - "value": "0" + "offset": 19605, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2186, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 19626, + "length": 19, + "value": "\"mediation_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19652, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2405, - "length": 13, - "value": "\".Timestamps\"" + "offset": 19673, + "length": 12, + "value": "\"session_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2487, + "offset": 20109, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", - "kind": "StringLiteral", - "offset": 2503, - "length": 11, - "value": "\"timestamp\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20196, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2521, + "offset": 20284, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", - "kind": "StringLiteral", - "offset": 2541, - "length": 19, - "value": "\"session_timestamp\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20370, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2984, + "offset": 20451, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20538, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20629, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20712, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20795, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20986, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 21081, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 21681, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3072, + "offset": 21806, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3669, + "offset": 21927, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3714, + "offset": 22038, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22073, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3803, + "offset": 22157, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22288, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22403, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22527, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22669, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22794, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22920, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 23038, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 3990, + "offset": 23248, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4057, + "offset": 23305, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4118, + "offset": 23358, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4136, - "length": 4, - "value": "true" + "offset": 23401, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 4601, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 23456, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", - "kind": "StringLiteral", - "offset": 14824, - "length": 12, - "value": "\"gateway.v1\"" + "kind": "BooleanLiteral", + "offset": 23519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23566, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23686, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23761, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23830, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23885, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23946, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23964, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15049, + "offset": 24187, "length": 19, "value": "\".UniversalRequest\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15137, + "offset": 24275, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15157, + "offset": 24295, "length": 13, "value": "\"shared_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15177, + "offset": 24315, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15193, + "offset": 24331, "length": 9, "value": "\"payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15626, + "offset": 24764, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15715, + "offset": 24853, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16307, + "offset": 25445, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16424, + "offset": 25562, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16629, + "offset": 25767, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16680, + "offset": 25818, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16741, + "offset": 25879, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16759, + "offset": 25897, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17016, + "offset": 26154, "length": 13, "value": "\".SharedData\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17098, + "offset": 26236, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17118, + "offset": 26256, "length": 15, "value": "\"session_token\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17140, + "offset": 26278, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17156, + "offset": 26294, "length": 12, "value": "\"timestamps\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17175, + "offset": 26313, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17191, + "offset": 26329, "length": 5, "value": "\"pii\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17203, + "offset": 26341, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17223, + "offset": 26361, "length": 19, "value": "\"developer_consent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17249, + "offset": 26387, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17269, + "offset": 26407, "length": 17, "value": "\"webview_version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17293, + "offset": 26431, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17313, + "offset": 26451, "length": 15, "value": "\"current_state\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17335, + "offset": 26473, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17355, + "offset": 26493, "length": 11, "value": "\"test_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17373, + "offset": 26511, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17393, + "offset": 26531, "length": 16, "value": "\"app_start_time\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17416, + "offset": 26554, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17436, + "offset": 26574, "length": 16, "value": "\"sdk_start_time\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19143, + "offset": 26597, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 26618, + "length": 23, + "value": "\"limited_session_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 28906, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19238, + "offset": 29001, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19333, + "offset": 29096, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19421, + "offset": 29184, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19522, + "offset": 29285, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19619, + "offset": 29382, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19714, + "offset": 29477, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19807, + "offset": 29570, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19904, + "offset": 29667, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20603, + "offset": 29764, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 30471, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20733, + "offset": 30601, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20856, + "offset": 30724, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20992, + "offset": 30860, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21124, + "offset": 30992, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21254, + "offset": 31122, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21382, + "offset": 31250, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21514, + "offset": 31382, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21646, + "offset": 31514, "length": 1, "value": "9" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 31653, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 32145, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22137, + "offset": 32219, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22211, + "offset": 32279, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22271, + "offset": 32365, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22357, + "offset": 32447, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22439, + "offset": 32525, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22517, + "offset": 32595, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22587, + "offset": 32673, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22665, + "offset": 32751, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22743, + "offset": 32843, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22765, + "offset": 32865, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22813, + "offset": 32913, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22880, + "offset": 32980, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22898, + "offset": 32998, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23152, + "offset": 33252, "length": 10, "value": "\".Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23231, + "offset": 33331, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23251, + "offset": 33351, "length": 24, "value": "\"initialization_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23282, + "offset": 33382, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23302, + "offset": 33402, "length": 12, "value": "\"ad_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23321, + "offset": 33421, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23341, + "offset": 33441, "length": 17, "value": "\"operative_event\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23365, + "offset": 33465, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23385, + "offset": 33485, "length": 26, "value": "\"diagnostic_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23418, + "offset": 33518, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23438, + "offset": 33538, "length": 26, "value": "\"ad_player_config_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23471, + "offset": 33571, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23491, + "offset": 33591, "length": 25, "value": "\"get_token_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23523, + "offset": 33623, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23543, + "offset": 33643, "length": 24, "value": "\"privacy_update_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23574, + "offset": 33674, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23594, + "offset": 33694, "length": 25, "value": "\"ad_data_refresh_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23626, + "offset": 33726, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23647, + "offset": 33747, "length": 40, "value": "\"initialization_completed_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24111, + "offset": 33794, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 33815, + "length": 27, + "value": "\"transaction_event_request\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 34266, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24193, + "offset": 34348, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24263, + "offset": 34418, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24571, + "offset": 34726, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24641, + "offset": 34796, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24711, + "offset": 34866, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24995, + "offset": 35150, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25077, + "offset": 35232, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25147, + "offset": 35302, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25441, + "offset": 35596, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25524, + "offset": 35679, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25594, + "offset": 35749, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25904, + "offset": 36059, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25986, + "offset": 36141, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26056, + "offset": 36211, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26364, + "offset": 36519, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26445, + "offset": 36600, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26515, + "offset": 36670, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26821, + "offset": 36976, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26902, + "offset": 37057, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26972, + "offset": 37127, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27278, + "offset": 37433, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27359, + "offset": 37514, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27429, + "offset": 37584, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27735, + "offset": 37890, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27832, + "offset": 37987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 38057, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 38393, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 38478, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27902, + "offset": 38548, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 28860, + "offset": 39482, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29046, + "offset": 39668, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29242, + "offset": 39864, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29454, + "offset": 40076, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29664, + "offset": 40286, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29872, + "offset": 40494, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30080, + "offset": 40702, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30288, + "offset": 40910, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30526, + "offset": 41148, "length": 2, "value": "10" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 41363, + "length": 2, + "value": "11" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30760, + "offset": 41597, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30821, + "offset": 41658, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30839, + "offset": 41676, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7212, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 7220, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7438, + "offset": 7454, "length": 20, "value": "\".UniversalResponse\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7527, + "offset": 7543, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7543, + "offset": 7559, "length": 9, "value": "\"payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7559, + "offset": 7575, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7579, + "offset": 7595, "length": 14, "value": "\"mutable_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 7616, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7616, + "offset": 7632, "length": 7, "value": "\"error\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8754, + "offset": 9223, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8846, + "offset": 9315, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8942, + "offset": 9411, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9631, + "offset": 10100, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9762, + "offset": 10231, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9887, + "offset": 10356, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10348, + "offset": 10817, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10424, + "offset": 10893, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10488, + "offset": 10957, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10510, + "offset": 10979, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10558, + "offset": 11027, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10625, + "offset": 11094, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10643, + "offset": 11112, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 10899, + "offset": 11368, "length": 10, "value": "\".Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 10978, + "offset": 11447, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 10998, + "offset": 11467, "length": 25, "value": "\"initialization_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11030, + "offset": 11499, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11050, + "offset": 11519, "length": 13, "value": "\"ad_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11070, + "offset": 11539, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11090, + "offset": 11559, "length": 27, "value": "\"ad_player_config_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11124, + "offset": 11593, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11144, + "offset": 11613, "length": 26, "value": "\"ad_data_refresh_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11177, + "offset": 11646, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11197, + "offset": 11666, "length": 25, "value": "\"privacy_update_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11646, + "offset": 12115, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 11729, + "offset": 12198, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 11799, + "offset": 12268, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12109, + "offset": 12578, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12180, + "offset": 12649, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12250, + "offset": 12719, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12536, + "offset": 13005, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12619, + "offset": 13088, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12689, + "offset": 13158, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12999, + "offset": 13468, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13081, + "offset": 13550, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13151, + "offset": 13620, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 13459, + "offset": 13928, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13541, + "offset": 14010, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13611, + "offset": 14080, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14543, + "offset": 15012, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14731, + "offset": 15200, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14943, + "offset": 15412, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 15153, + "offset": 15622, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 15363, + "offset": 15832, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15598, + "offset": 16067, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15659, + "offset": 16128, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15677, + "offset": 16146, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1218, + "offset": 1226, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "Array", - "offset": 1380, + "offset": 1388, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 1727, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 1735, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 1956, + "offset": 1972, "length": 23, "value": "\".WebViewConfiguration\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2048, + "offset": 2064, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2064, + "offset": 2080, "length": 9, "value": "\"version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2080, + "offset": 2096, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2100, + "offset": 2116, "length": 13, "value": "\"entry_point\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2120, + "offset": 2136, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2140, + "offset": 2156, "length": 18, "value": "\"additional_files\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2582, + "offset": 2598, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2665, + "offset": 2681, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2752, + "offset": 2768, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2970, + "offset": 2986, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3050, + "offset": 3066, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3173, + "offset": 3189, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3306, + "offset": 3322, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3507, + "offset": 3523, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3562, + "offset": 3578, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3627, + "offset": 3643, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3688, + "offset": 3704, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3706, + "offset": 3722, "length": 4, "value": "true" } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index b2e6ef5..c2c7e14 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,6 +1,6 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio import AVFoundation @@ -25,24 +25,19 @@ import _Concurrency import _StringProcessing import _SwiftConcurrencyShims import zlib -@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : ObjectiveC.NSObject { - @objc final public var configDictionary: [Swift.String : Any] { +@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : NSObject { + @objc final public var configDictionary: [String : Any] { @objc get } - @objc final public func saveSDKConfig(from dictionary: [Swift.String : Any]) + @objc final public func saveSDKConfig(from dictionary: [String : Any]) @objc deinit } -public struct SDKInitializerConfig { - public let gameID: Swift.String - public let isTestModeEnabled: Swift.Bool - public init(gameID: Swift.String, isTestModeEnabled: Swift.Bool) -} -extension Foundation.Data { - public var isGzipped: Swift.Bool { +extension Data { + public var isGzipped: Bool { get } } -extension Swift.Dictionary where Key == Swift.String, Value == Any { +extension Dictionary where Key == Swift.String, Value == Any { @inlinable public func compactMapKeys(_ transform: (Key) throws -> T?) rethrows -> [T : Value] where T : Swift.Hashable { try reduce(into: [:]) { partialResult, element in let newKey = try transform(element.key) @@ -51,35 +46,35 @@ extension Swift.Dictionary where Key == Swift.String, Value == Any { } } } -extension Swift.Optional { - public func filter(if predicate: (Wrapped) -> Swift.Bool) -> Wrapped? - public func filter(if predicate: (Wrapped) -> Swift.Bool, default: Wrapped) -> Wrapped? +extension Optional { + public func filter(if predicate: (Wrapped) -> Bool) -> Wrapped? + public func filter(if predicate: (Wrapped) -> Bool, default: Wrapped) -> Wrapped? @discardableResult - public func `do`(_ work: (Wrapped) -> Swift.Void) -> Wrapped? + public func `do`(_ work: (Wrapped) -> Void) -> Wrapped? @discardableResult - public func onNone(_ work: () -> Swift.Void) -> Wrapped? + public func onNone(_ work: () -> Void) -> Wrapped? @discardableResult - public func debug(message: Swift.String? = nil) -> Wrapped? + public func debug(message: String? = nil) -> Wrapped? } -extension Swift.Result { +extension Result { @discardableResult - @inlinable public func `do`(_ work: (Success) -> Swift.Void) -> Swift.Result { + @inlinable public func `do`(_ work: (Success) -> Void) -> Swift.Result { if case .success(let val) = self { work(val) } return self } @discardableResult - @inlinable public func onFailure(_ work: (Failure) -> Swift.Void) -> Swift.Result { + @inlinable public func onFailure(_ work: (Failure) -> Void) -> Swift.Result { if case .failure(let err) = self { work(err) } return self } - @inlinable public func sink(_ completion: @escaping (Swift.Result) -> Swift.Void) { + @inlinable public func sink(_ completion: @escaping (`Self`) -> Void) { completion(self) } - @inlinable public func sink(_ completion: ((Swift.Result) -> Swift.Void)?) { + @inlinable public func sink(_ completion: ((`Self`) -> Void)?) { completion?(self) } @inlinable public func recover(_ transform: (Failure) -> Success) -> Swift.Result { @@ -95,8 +90,8 @@ extension Swift.Result { } } } -extension Swift.Result where Failure == any Swift.Error { - @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Swift.Result { +extension Result where Failure == any Swift.Error { + @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Result { switch self { case let .success(val): do { @@ -109,7 +104,7 @@ extension Swift.Result where Failure == any Swift.Error { return .failure(err) } } - @inlinable public func tryFlatMap(_ transform: (Success) throws -> Swift.Result) -> Swift.Result { + @inlinable public func tryFlatMap(_ transform: (Success) throws -> Result) -> Result { switch self { case let .success(val): do { @@ -123,13 +118,32 @@ extension Swift.Result where Failure == any Swift.Error { } } } -@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : ObjectiveC.NSObject { - @objc final public func log(_ message: Swift.String) +@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : NSObject { + @objc final public func log(_ message: String) @objc override dynamic public init() @objc deinit } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class UnityAds : NSObject { + @objc public static func initialize(_ gameId: String) + @objc public static func initialize(_ gameId: String, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func initialize(_ gameId: String, testMode: Bool) + @objc public static func initialize(_ gameId: String, testMode: Bool, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func load(_ placementId: String) + @objc public static func load(_ placementId: String, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func load(_ placementId: String, options: UADSLoadOptions, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, showDelegate: UnityAdsShowDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, options: UADSShowOptions, showDelegate: UnityAdsShowDelegate?) + @objc public static func getDebugMode() -> Bool + @objc public static func setDebugMode(_ enableDebugMode: Bool) + @objc public static func isSupported() -> Bool + @objc public static func getVersion() -> String + @objc public static func isInitialized() -> Bool + @objc public static func getToken() -> String? + @objc public static func getToken(_ completion: @escaping (String?) -> Void) + @objc deinit +} public protocol UnityError : Swift.Error { - var code: Swift.Int { get } - var message: Swift.String { get } - var description: Swift.String? { get } + var code: Int { get } + var message: String { get } + var description: String? { get } } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc index ac29517..4c48682 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface index b2e6ef5..c2c7e14 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,6 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio import AVFoundation @@ -25,24 +25,19 @@ import _Concurrency import _StringProcessing import _SwiftConcurrencyShims import zlib -@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : ObjectiveC.NSObject { - @objc final public var configDictionary: [Swift.String : Any] { +@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : NSObject { + @objc final public var configDictionary: [String : Any] { @objc get } - @objc final public func saveSDKConfig(from dictionary: [Swift.String : Any]) + @objc final public func saveSDKConfig(from dictionary: [String : Any]) @objc deinit } -public struct SDKInitializerConfig { - public let gameID: Swift.String - public let isTestModeEnabled: Swift.Bool - public init(gameID: Swift.String, isTestModeEnabled: Swift.Bool) -} -extension Foundation.Data { - public var isGzipped: Swift.Bool { +extension Data { + public var isGzipped: Bool { get } } -extension Swift.Dictionary where Key == Swift.String, Value == Any { +extension Dictionary where Key == Swift.String, Value == Any { @inlinable public func compactMapKeys(_ transform: (Key) throws -> T?) rethrows -> [T : Value] where T : Swift.Hashable { try reduce(into: [:]) { partialResult, element in let newKey = try transform(element.key) @@ -51,35 +46,35 @@ extension Swift.Dictionary where Key == Swift.String, Value == Any { } } } -extension Swift.Optional { - public func filter(if predicate: (Wrapped) -> Swift.Bool) -> Wrapped? - public func filter(if predicate: (Wrapped) -> Swift.Bool, default: Wrapped) -> Wrapped? +extension Optional { + public func filter(if predicate: (Wrapped) -> Bool) -> Wrapped? + public func filter(if predicate: (Wrapped) -> Bool, default: Wrapped) -> Wrapped? @discardableResult - public func `do`(_ work: (Wrapped) -> Swift.Void) -> Wrapped? + public func `do`(_ work: (Wrapped) -> Void) -> Wrapped? @discardableResult - public func onNone(_ work: () -> Swift.Void) -> Wrapped? + public func onNone(_ work: () -> Void) -> Wrapped? @discardableResult - public func debug(message: Swift.String? = nil) -> Wrapped? + public func debug(message: String? = nil) -> Wrapped? } -extension Swift.Result { +extension Result { @discardableResult - @inlinable public func `do`(_ work: (Success) -> Swift.Void) -> Swift.Result { + @inlinable public func `do`(_ work: (Success) -> Void) -> Swift.Result { if case .success(let val) = self { work(val) } return self } @discardableResult - @inlinable public func onFailure(_ work: (Failure) -> Swift.Void) -> Swift.Result { + @inlinable public func onFailure(_ work: (Failure) -> Void) -> Swift.Result { if case .failure(let err) = self { work(err) } return self } - @inlinable public func sink(_ completion: @escaping (Swift.Result) -> Swift.Void) { + @inlinable public func sink(_ completion: @escaping (`Self`) -> Void) { completion(self) } - @inlinable public func sink(_ completion: ((Swift.Result) -> Swift.Void)?) { + @inlinable public func sink(_ completion: ((`Self`) -> Void)?) { completion?(self) } @inlinable public func recover(_ transform: (Failure) -> Success) -> Swift.Result { @@ -95,8 +90,8 @@ extension Swift.Result { } } } -extension Swift.Result where Failure == any Swift.Error { - @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Swift.Result { +extension Result where Failure == any Swift.Error { + @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Result { switch self { case let .success(val): do { @@ -109,7 +104,7 @@ extension Swift.Result where Failure == any Swift.Error { return .failure(err) } } - @inlinable public func tryFlatMap(_ transform: (Success) throws -> Swift.Result) -> Swift.Result { + @inlinable public func tryFlatMap(_ transform: (Success) throws -> Result) -> Result { switch self { case let .success(val): do { @@ -123,13 +118,32 @@ extension Swift.Result where Failure == any Swift.Error { } } } -@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : ObjectiveC.NSObject { - @objc final public func log(_ message: Swift.String) +@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : NSObject { + @objc final public func log(_ message: String) @objc override dynamic public init() @objc deinit } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class UnityAds : NSObject { + @objc public static func initialize(_ gameId: String) + @objc public static func initialize(_ gameId: String, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func initialize(_ gameId: String, testMode: Bool) + @objc public static func initialize(_ gameId: String, testMode: Bool, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func load(_ placementId: String) + @objc public static func load(_ placementId: String, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func load(_ placementId: String, options: UADSLoadOptions, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, showDelegate: UnityAdsShowDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, options: UADSShowOptions, showDelegate: UnityAdsShowDelegate?) + @objc public static func getDebugMode() -> Bool + @objc public static func setDebugMode(_ enableDebugMode: Bool) + @objc public static func isSupported() -> Bool + @objc public static func getVersion() -> String + @objc public static func isInitialized() -> Bool + @objc public static func getToken() -> String? + @objc public static func getToken(_ completion: @escaping (String?) -> Void) + @objc deinit +} public protocol UnityError : Swift.Error { - var code: Swift.Int { get } - var message: Swift.String { get } - var description: Swift.String? { get } + var code: Int { get } + var message: String { get } + var description: String? { get } } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json index a80fd2c..469e8b2 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -179,6 +179,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -263,6 +270,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -319,6 +333,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UnitySwiftProtobuf", @@ -527,6 +548,27 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UIKit", @@ -730,6 +772,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CoreTelephony", @@ -800,6 +849,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "zlib", @@ -947,13 +1003,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "UIKit", @@ -1174,20 +1223,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -1197,8 +1232,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1356,13 +1391,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -1391,16 +1419,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1410,8 +1428,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1445,10 +1463,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1534,16 +1555,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1602,31 +1613,13 @@ }, { "kind": "Import", - "name": "zlib", - "printedName": "zlib", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1686,8 +1679,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "zlib", + "printedName": "zlib", "declKind": "Import", "moduleName": "UnityAds" }, @@ -1740,16 +1733,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1757,16 +1740,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -1937,10 +1910,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -1951,10 +1927,13 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", "declKind": "Import", - "moduleName": "UnityAds" + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -2068,13 +2047,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2152,13 +2124,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "CoreMotion", - "printedName": "CoreMotion", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2222,13 +2187,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2287,8 +2245,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2371,8 +2329,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreMotion", + "printedName": "CoreMotion", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2418,16 +2376,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, { "kind": "Import", "name": "Foundation", @@ -2451,8 +2399,8 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -2463,13 +2411,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2484,13 +2425,6 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, { "kind": "Import", "name": "Foundation", @@ -2659,13 +2593,317 @@ "declKind": "Import", "moduleName": "UnityAds" }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -2956,139 +3194,25 @@ "moduleName": "UnityAds" }, { - "kind": "TypeDecl", - "name": "SDKInitializerConfig", - "printedName": "SDKInitializerConfig", - "children": [ - { - "kind": "Var", - "name": "gameID", - "printedName": "gameID", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameIDSSvp", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameIDSSvp", - "moduleName": "UnityAds", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameIDSSvg", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameIDSSvg", - "moduleName": "UnityAds", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isTestModeEnabled", - "printedName": "isTestModeEnabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvp", - "mangledName": "$s8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvp", - "moduleName": "UnityAds", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvg", - "mangledName": "$s8UnityAds20SDKInitializerConfigV17isTestModeEnabledSbvg", - "moduleName": "UnityAds", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(gameID:isTestModeEnabled:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKInitializerConfig", - "printedName": "UnityAds.SDKInitializerConfig", - "usr": "s:8UnityAds20SDKInitializerConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:8UnityAds20SDKInitializerConfigV6gameID17isTestModeEnabledACSS_Sbtcfc", - "mangledName": "$s8UnityAds20SDKInitializerConfigV6gameID17isTestModeEnabledACSS_Sbtcfc", - "moduleName": "UnityAds", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:8UnityAds20SDKInitializerConfigV", - "mangledName": "$s8UnityAds20SDKInitializerConfigV", - "moduleName": "UnityAds", - "declAttributes": [ - "AccessControl" - ] + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" }, { "kind": "Import", @@ -3195,6 +3319,48 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "UnitySwiftProtobuf", @@ -3341,6 +3507,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "StoreKit", @@ -3376,6 +3549,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CommonCrypto", @@ -3453,6 +3633,20 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "TypeDecl", "name": "LoggerWrapper", @@ -3614,6 +3808,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "CoreTelephony", @@ -3710,8 +3911,8 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3724,85 +3925,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "AdSupport", - "printedName": "AdSupport", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3815,8 +3939,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3850,25 +3974,15 @@ }, { "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", - "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "AdSupport", + "printedName": "AdSupport", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3881,8 +3995,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3895,8 +4009,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3909,8 +4023,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -3951,250 +4065,681 @@ }, { "kind": "TypeDecl", - "name": "UnityError", - "printedName": "UnityError", + "name": "UnityAds", + "printedName": "UnityAds", "children": [ { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP4codeSivp", - "mangledName": "$s8UnityAds0A5ErrorP4codeSivp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:", + "mangledName": "$s8UnityAdsAAC10initializeyySSFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:initializationDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsInitializationDelegate?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UnityAdsInitializationDelegate", + "printedName": "UnityAds.UnityAdsInitializationDelegate", + "usr": "c:objc(pl)UnityAdsInitializationDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP4codeSivg", - "mangledName": "$s8UnityAds0A5ErrorP4codeSivg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:initializationDelegate:", + "mangledName": "$s8UnityAdsAAC10initialize_22initializationDelegateySS_So0ab14InitializationE0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "message", - "printedName": "message", + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:testMode:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP7messageSSvp", - "mangledName": "$s8UnityAds0A5ErrorP7messageSSvp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:testMode:", + "mangledName": "$s8UnityAdsAAC10initialize_8testModeySS_SbtFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(_:testMode:initializationDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsInitializationDelegate?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnityAdsInitializationDelegate", + "printedName": "UnityAds.UnityAdsInitializationDelegate", + "usr": "c:objc(pl)UnityAdsInitializationDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP7messageSSvg", - "mangledName": "$s8UnityAds0A5ErrorP7messageSSvg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)initialize:testMode:initializationDelegate:", + "mangledName": "$s8UnityAdsAAC10initialize_8testMode22initializationDelegateySS_SbSo0ab14InitializationG0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Function", + "name": "load", + "printedName": "load(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:", + "mangledName": "$s8UnityAdsAAC4loadyySSFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(_:loadDelegate:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "UnityAds.UnityAdsLoadDelegate?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnityAdsLoadDelegate", + "printedName": "UnityAds.UnityAdsLoadDelegate", + "usr": "c:objc(pl)UnityAdsLoadDelegate" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvp", - "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvp", + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:loadDelegate:", + "mangledName": "$s8UnityAdsAAC4load_0C8DelegateySS_So0ab4LoadD0_pSgtFZ", "moduleName": "UnityAds", - "protocolReq": true, - "accessors": [ + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(_:options:loadDelegate:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UADSLoadOptions", + "printedName": "UnityAds.UADSLoadOptions", + "usr": "c:objc(cs)UADSLoadOptions" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsLoadDelegate?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UnityAdsLoadDelegate", + "printedName": "UnityAds.UnityAdsLoadDelegate", + "usr": "c:objc(pl)UnityAdsLoadDelegate" } ], - "declKind": "Accessor", - "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvg", - "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvg", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] - } - ], - "declKind": "Protocol", - "usr": "s:8UnityAds0A5ErrorP", - "mangledName": "$s8UnityAds0A5ErrorP", - "moduleName": "UnityAds", - "genericSig": "<τ_0_0 : Swift.Error>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)load:options:loadDelegate:", + "mangledName": "$s8UnityAdsAAC4load_7options0C8DelegateySS_So15UADSLoadOptionsCSo0ab4LoadE0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "Function", + "name": "show", + "printedName": "show(_:placementId:showDelegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsShowDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnityAdsShowDelegate", + "printedName": "UnityAds.UnityAdsShowDelegate", + "usr": "c:objc(pl)UnityAdsShowDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)show:placementId:showDelegate:", + "mangledName": "$s8UnityAdsAAC4show_11placementId0C8DelegateySo16UIViewControllerC_SSSo0ab4ShowF0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "UnityAds" - }, - { - "kind": "Import", + "kind": "Function", + "name": "show", + "printedName": "show(_:placementId:options:showDelegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UADSShowOptions", + "printedName": "UnityAds.UADSShowOptions", + "usr": "c:objc(cs)UADSShowOptions" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UnityAds.UnityAdsShowDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnityAdsShowDelegate", + "printedName": "UnityAds.UnityAdsShowDelegate", + "usr": "c:objc(pl)UnityAdsShowDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)show:placementId:options:showDelegate:", + "mangledName": "$s8UnityAdsAAC4show_11placementId7options0C8DelegateySo16UIViewControllerC_SSSo15UADSShowOptionsCSo0ab4ShowG0_pSgtFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDebugMode", + "printedName": "getDebugMode()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getDebugMode", + "mangledName": "$s8UnityAdsAAC12getDebugModeSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDebugMode", + "printedName": "setDebugMode(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)setDebugMode:", + "mangledName": "$s8UnityAdsAAC12setDebugModeyySbFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSupported", + "printedName": "isSupported()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)isSupported", + "mangledName": "$s8UnityAdsAAC11isSupportedSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVersion", + "printedName": "getVersion()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getVersion", + "mangledName": "$s8UnityAdsAAC10getVersionSSyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isInitialized", + "printedName": "isInitialized()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)isInitialized", + "mangledName": "$s8UnityAdsAAC13isInitializedSbyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getToken", + "printedName": "getToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getToken", + "mangledName": "$s8UnityAdsAAC8getTokenSSSgyFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getToken", + "printedName": "getToken(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@UnityAds@objc(cs)UnityAds(cm)getToken:", + "mangledName": "$s8UnityAdsAAC8getTokenyyySSSgcFZ", + "moduleName": "UnityAds", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@UnityAds@objc(cs)UnityAds", + "mangledName": "$s8UnityAdsAAC", + "moduleName": "UnityAds", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", "name": "Foundation", "printedName": "Foundation", "declKind": "Import", @@ -4209,13 +4754,17 @@ }, { "kind": "Import", - "name": "UnitySwiftProtobuf", - "printedName": "UnitySwiftProtobuf", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", - "moduleName": "UnityAds", - "declAttributes": [ - "ImplementationOnly" - ] + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" }, { "kind": "Import", @@ -4292,8 +4841,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4306,8 +4855,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4320,11 +4869,185 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "TypeDecl", + "name": "UnityError", + "printedName": "UnityError", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP4codeSivp", + "mangledName": "$s8UnityAds0A5ErrorP4codeSivp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP4codeSivg", + "mangledName": "$s8UnityAds0A5ErrorP4codeSivg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP7messageSSvp", + "mangledName": "$s8UnityAds0A5ErrorP7messageSSvp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP7messageSSvg", + "mangledName": "$s8UnityAds0A5ErrorP7messageSSvg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvp", + "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvp", + "moduleName": "UnityAds", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8UnityAds0A5ErrorP11descriptionSSSgvg", + "mangledName": "$s8UnityAds0A5ErrorP11descriptionSSSgvg", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 where τ_0_0 : UnityAds.UnityError>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8UnityAds0A5ErrorP", + "mangledName": "$s8UnityAds0A5ErrorP", + "moduleName": "UnityAds", + "genericSig": "<τ_0_0 : Swift.Error>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { "kind": "Import", "name": "Foundation", @@ -4334,8 +5057,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4348,8 +5071,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4362,8 +5085,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4374,6 +5097,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4390,8 +5120,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4411,8 +5141,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4432,11 +5162,31 @@ }, { "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, { "kind": "Import", "name": "Foundation", @@ -4486,6 +5236,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4500,6 +5257,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4516,8 +5280,29 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4528,6 +5313,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4542,6 +5334,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4558,8 +5357,92 @@ }, { "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4628,8 +5511,15 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4642,8 +5532,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4656,8 +5546,85 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4675,6 +5642,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4696,6 +5670,20 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4703,6 +5691,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "WebKit", @@ -4717,6 +5712,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "WebKit", @@ -4738,6 +5740,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4745,6 +5754,13 @@ "declKind": "Import", "moduleName": "UnityAds" }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "UnityAds" + }, { "kind": "Import", "name": "Foundation", @@ -4845,8 +5861,8 @@ }, { "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "UnityAds" }, @@ -4908,8 +5924,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "WebKit", + "printedName": "WebKit", "declKind": "Import", "moduleName": "UnityAds" }, @@ -5623,6 +6639,66 @@ "ImplementationOnly" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UnitySwiftProtobuf", + "printedName": "UnitySwiftProtobuf", + "declKind": "Import", + "moduleName": "UnityAds", + "declAttributes": [ + "ImplementationOnly" + ] + }, { "kind": "TypeDecl", "name": "AVAudioSession", @@ -6686,6 +7762,81 @@ } ] }, + { + "kind": "TypeDecl", + "name": "UIScreen", + "printedName": "UIScreen", + "declKind": "Class", + "usr": "c:objc(cs)UIScreen", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIScreen", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, { "kind": "TypeDecl", "name": "FileManager", @@ -7592,29 +8743,35 @@ }, { "kind": "TypeDecl", - "name": "SKStoreProductViewController", - "printedName": "SKStoreProductViewController", + "name": "SKPaymentTransaction", + "printedName": "SKPaymentTransaction", "declKind": "Class", - "usr": "c:objc(cs)SKStoreProductViewController", + "usr": "c:objc(cs)SKPaymentTransaction", "moduleName": "StoreKit", "isOpen": true, - "intro_iOS": "6.0", - "objc_name": "SKStoreProductViewController", + "intro_iOS": "3.0", + "objc_name": "SKPaymentTransaction", "declAttributes": [ - "Custom", "Available", "ObjC", + "SynthesizedProtocol", + "Sendable", "Dynamic" ], - "superclassUsr": "c:objc(cs)UIViewController", + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UIViewController", - "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -7663,44 +8820,195 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKPayment", + "printedName": "SKPayment", + "declKind": "Class", + "usr": "c:objc(cs)SKPayment", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "SKPayment", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKProduct", + "printedName": "SKProduct", + "declKind": "Class", + "usr": "c:objc(cs)SKProduct", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "SKProduct", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { "kind": "Conformance", "name": "Sendable", "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, { "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "name": "SKProductDiscount", + "printedName": "SKProductDiscount", + "declKind": "Class", + "usr": "c:objc(cs)SKProductDiscount", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "11.2", + "objc_name": "SKProductDiscount", "declAttributes": [ - "Frozen" + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" ], + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -7711,188 +9019,433 @@ }, { "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKProductSubscriptionPeriod", + "printedName": "SKProductSubscriptionPeriod", + "declKind": "Class", + "usr": "c:objc(cs)SKProductSubscriptionPeriod", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "11.2", + "objc_name": "SKProductSubscriptionPeriod", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SKStoreProductViewController", + "printedName": "SKStoreProductViewController", + "declKind": "Class", + "usr": "c:objc(cs)SKStoreProductViewController", + "moduleName": "StoreKit", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "SKStoreProductViewController", + "declAttributes": [ + "Custom", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", "usr": "s:Si" } ] @@ -8944,81 +10497,6 @@ } ] }, - { - "kind": "TypeDecl", - "name": "UIScreen", - "printedName": "UIScreen", - "declKind": "Class", - "usr": "c:objc(cs)UIScreen", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIScreen", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, { "kind": "TypeDecl", "name": "WKScriptMessage", @@ -9219,6 +10697,20 @@ "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdCampaignStorage.swift", + "kind": "BooleanLiteral", + "offset": 1073, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/AdContextReader.swift", + "kind": "StringLiteral", + "offset": 3369, + "length": 3, + "value": "\".\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/AdDataRefreshReceiver.swift", "kind": "StringLiteral", @@ -9229,24 +10721,31 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "StringLiteral", - "offset": 663, + "offset": 676, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "StringLiteral", - "offset": 704, + "offset": 717, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", "kind": "BooleanLiteral", - "offset": 754, + "offset": 767, "length": 5, "value": "false" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdLoadParams.swift", + "kind": "StringLiteral", + "offset": 797, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderError.swift", "kind": "StringLiteral", @@ -9341,49 +10840,91 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 956, - "length": 37, - "value": "\"objectID is required in the options\"" + "offset": 1310, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "BooleanLiteral", + "offset": 1386, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 4585, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 1311, + "offset": 5790, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "BooleanLiteral", - "offset": 1387, - "length": 4, - "value": "true" + "offset": 5852, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 2694, + "offset": 5894, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6227, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6334, + "length": 19, + "value": "\"no_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", + "kind": "StringLiteral", + "offset": 6368, "length": 37, "value": "\"objectID is required in the options\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 3021, - "length": 45, - "value": "\"possibly deallocated object or wrong obj id\"" + "offset": 6479, + "length": 21, + "value": "\"ad_object_not_found\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/AdLoader\/AdLoaderObjcBridge.swift", "kind": "StringLiteral", - "offset": 3815, - "length": 2, - "value": "\"\"" + "offset": 6515, + "length": 45, + "value": "\"possibly deallocated object or wrong obj id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 372, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/AdLoaderWithMetrics.swift", "kind": "StringLiteral", - "offset": 31, + "offset": 393, "length": 19, "value": "\"UnityAds.AdLoaderWithMetrics\"" }, @@ -9402,9 +10943,16 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObject.swift", + "kind": "IntegerLiteral", + "offset": 2365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObject.swift", "kind": "BooleanLiteral", - "offset": 2564, + "offset": 3066, "length": 4, "value": "true" }, @@ -9437,14 +10985,14 @@ "value": "-1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectConstants.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Constants\/AdObjectConstants.swift", "kind": "IntegerLiteral", "offset": 99, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectConstants.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Constants\/AdObjectConstants.swift", "kind": "StringLiteral", "offset": 134, "length": 19, @@ -9460,7 +11008,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/AdObjectCreateParams.swift", "kind": "StringLiteral", - "offset": 695, + "offset": 819, "length": 7, "value": "\"empty\"" }, @@ -9479,124 +11027,138 @@ "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1003, "length": 9, "value": "\"timeout\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1027, "length": 50, "value": "\"Show Failed after \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1056, "length": 7, "value": "\" seconds due timeout\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1165, "length": 16, "value": "\"params_not_set\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1196, "length": 26, "value": "\"Show params were not set\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1312, "length": 17, "value": "\"already_showing\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1344, "length": 57, "value": "\"Cannot show the ad while another is already being shown\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1515, "length": 10, "value": "\"adviewer\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1645, "length": 18, "value": "\"no_compaign_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1678, "length": 38, "value": "\"No Campaign Data Passed From WebView\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectError.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/AdObjectError.swift", "kind": "StringLiteral", "offset": 1780, "length": 60, "value": "\"Trying to send a message to an AdObject that is not active\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObject\/AdObjectSettings.swift", + "kind": "IntegerLiteral", + "offset": 176, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 184, + "offset": 204, "length": 11, "value": "\"COMPLETED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 215, + "offset": 235, "length": 9, "value": "\"SKIPPED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 184, + "offset": 204, "length": 11, "value": "\"COMPLETED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "StringLiteral", - "offset": 215, + "offset": 235, "length": 9, "value": "\"SKIPPED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "BooleanLiteral", - "offset": 595, + "offset": 615, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", "kind": "Array", - "offset": 691, + "offset": 711, "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/AdObjects\/AdObjectStateStorageBase.swift", + "kind": "BooleanLiteral", + "offset": 1198, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/Decorators\/AdObjectWithMetrics.swift", "kind": "StringLiteral", @@ -9628,14 +11190,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdType.swift", "kind": "BooleanLiteral", - "offset": 811, + "offset": 800, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/AdType.swift", "kind": "BooleanLiteral", - "offset": 841, + "offset": 830, "length": 5, "value": "false" }, @@ -9656,35 +11218,35 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "Array", - "offset": 1438, + "offset": 1555, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "Array", - "offset": 1588, + "offset": 1705, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1882, + "offset": 2037, "length": 9, "value": "\"webview\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1893, + "offset": 2048, "length": 6, "value": "\"show\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ShowService\/AdsShowService.swift", "kind": "StringLiteral", - "offset": 1901, + "offset": 2056, "length": 13, "value": "\"callback:_2\"" }, @@ -9817,56 +11379,98 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 1012, + "offset": 1127, "length": 39, "value": "\"init(coder:) has not been implemented\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 444, + "offset": 538, "length": 15, "value": "\"UnityAds.BannerContainer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/BannerContainer\/BannerContainer.swift", "kind": "StringLiteral", - "offset": 2555, + "offset": 2668, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", "kind": "StringLiteral", - "offset": 398, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 378, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "BooleanLiteral", + "offset": 469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "IntegerLiteral", + "offset": 509, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/AdLoader\/LoadParams\/BannerLoadParams.swift", + "kind": "StringLiteral", + "offset": 547, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 594, + "offset": 624, "length": 13, "value": "\"placementID\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 654, + "offset": 684, "length": 9, "value": "\"options\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "StringLiteral", - "offset": 932, + "offset": 863, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 1096, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", "kind": "BooleanLiteral", - "offset": 1006, + "offset": 1170, "length": 4, "value": "true" }, @@ -9877,6 +11481,20 @@ "length": 16, "value": "\"UnityAds.BannerObjCBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 2425, + "length": 16, + "value": "\"placement_null\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Banner\/BannerObjCBridge.swift", + "kind": "StringLiteral", + "offset": 2456, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/PropertyWrappers\/Base64StringDecodable.swift", "kind": "StringLiteral", @@ -9901,59 +11519,122 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 241, + "offset": 243, + "length": 9, + "value": "\"DTXcode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 14, + "value": "\"DTXcodeBuild\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 355, + "length": 12, + "value": "\"DTSDKBuild\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 412, "length": 11, "value": "\"DTSDKName\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 294, + "offset": 465, "length": 18, "value": "\"SKAdNetworkItems\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 366, + "offset": 537, "length": 34, "value": "\"UISupportedInterfaceOrientations\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "Array", - "offset": 975, + "offset": 1229, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1295, + "offset": 1667, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 1779, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1407, + "offset": 1895, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "StringLiteral", - "offset": 1524, + "offset": 2007, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", + "kind": "StringLiteral", + "offset": 2241, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Bundle.Convenience.swift", "kind": "Array", - "offset": 1765, + "offset": 2482, "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 97, + "length": 4, + "value": "\"js\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 130, + "length": 8, + "value": "\"bundle\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/Bundle.swift", + "kind": "StringLiteral", + "offset": 205, + "length": 19, + "value": "\"UnityAdsResources\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/CTTelephonyNetworkInfo.Convenience.swift", "kind": "StringLiteral", @@ -9975,6 +11656,13 @@ "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/CacheDefaultWebviewFilesTask.swift", + "kind": "StringLiteral", + "offset": 1130, + "length": 3, + "value": "\".\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/CacheDownloadReader.swift", "kind": "BooleanLiteral", @@ -10010,6 +11698,41 @@ "length": 40, "value": "\"Could not parse configuration response\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 109, + "length": 17, + "value": "\"UADSApiAdViewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 247, + "length": 18, + "value": "\"omidStartSession\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 19, + "value": "\"omidFinishSession\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 388, + "length": 16, + "value": "\"omidImpression\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.AdValidator.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 13, + "value": "\"omidGetData\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Cache.swift", "kind": "StringLiteral", @@ -10031,6 +11754,34 @@ "length": 14, "value": "\"isFileCached\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 130, + "length": 21, + "value": "\"USRVApiNotification\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 281, + "length": 25, + "value": "\"addNotificationObserver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 8, + "value": "\"ACTION\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/Constants\/Constants.Receivers.Notifications.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 14, + "value": "\"NOTIFICATION\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/CoreNetworkServicesBuilder.swift", "kind": "IntegerLiteral", @@ -10059,20 +11810,6 @@ "length": 2, "value": "[]" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/CoreServicesBuilder.swift", - "kind": "StringLiteral", - "offset": 9662, - "length": 10, - "value": "\"Requests\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/CoreServicesBuilder.swift", - "kind": "StringLiteral", - "offset": 10014, - "length": 8, - "value": "\"Assets\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/CreateWebViewFolderTask.swift", "kind": "BooleanLiteral", @@ -10322,7 +12059,7 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", "offset": 2540, - "length": 200, + "length": 276, "value": "\" ___________________\n 🔎 Diagnostic:\n Name: \"" }, { @@ -10357,153 +12094,181 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", "offset": 2681, + "length": 5, + "value": "\"\n ImpId: \"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2716, + "length": 31, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", + "kind": "StringLiteral", + "offset": 2757, "length": 4, "value": "\"\n tags: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2728, + "offset": 2804, "length": 94, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2828, + "offset": 2904, "length": 296, "value": "\"\n ___________________\n 📩 Incoming Message:\n ID: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2921, + "offset": 2997, "length": 4, "value": "\"\n Name: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2947, + "offset": 3023, "length": 5, "value": "\"\n Topic: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 2975, + "offset": 3051, "length": 7, "value": "\"\n Payload: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3025, + "offset": 3101, "length": 16, "value": "\"\n ResponseCallback: \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3084, + "offset": 3160, "length": 10, "value": "\"Attached\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3097, + "offset": 3173, "length": 14, "value": "\"Non attached\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3112, + "offset": 3188, "length": 970, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3348, + "offset": 3424, "length": 8, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3355, + "offset": 3431, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3384, + "offset": 3460, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3575, + "offset": 3651, "length": 7, "value": "\"[:]\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3619, + "offset": 3695, "length": 4, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3675, + "offset": 3751, "length": 36, "value": "\" \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3693, + "offset": 3769, "length": 1, "value": "\": \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3708, + "offset": 3784, "length": 1, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3849, + "offset": 3925, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3886, + "offset": 3962, "length": 4, "value": "\"\n\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3939, + "offset": 4015, "length": 29, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/LogsFormatting\/CustomDebugConvertibleModels.swift", "kind": "StringLiteral", - "offset": 3967, + "offset": 4043, "length": 1, "value": "\"\"" }, @@ -10514,272 +12279,6 @@ "length": 3, "value": "[]" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 589, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 6, - "value": "\"sTkn\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 655, - "length": 13, - "value": "\"deviceModel\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 695, - "length": 12, - "value": "\"deviceMake\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 733, - "length": 7, - "value": "\"shSid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 763, - "length": 8, - "value": "\"gameId\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 589, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 6, - "value": "\"sTkn\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 655, - "length": 13, - "value": "\"deviceModel\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 695, - "length": 12, - "value": "\"deviceMake\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 733, - "length": 7, - "value": "\"shSid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 763, - "length": 8, - "value": "\"gameId\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "Dictionary", - "offset": 1608, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1853, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 1933, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2005, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2265, - "length": 16, - "value": "\"native_\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2280, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2411, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2419, - "length": 5, - "value": "\"_time\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2559, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2583, - "length": 3, - "value": "\"n\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2608, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2559, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2583, - "length": 3, - "value": "\"n\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 2608, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "Dictionary", - "offset": 3342, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3928, - "length": 5, - "value": "\"iso\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3958, - "length": 5, - "value": "\"plt\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3990, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 4025, - "length": 8, - "value": "\"system\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3928, - "length": 5, - "value": "\"iso\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3958, - "length": 5, - "value": "\"plt\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 3990, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/DatadogMetricContainer.swift", - "kind": "StringLiteral", - "offset": 4025, - "length": 8, - "value": "\"system\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Send\/Decorators\/DefaultRetryCondition.swift", "kind": "IntegerLiteral", @@ -10909,21 +12408,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "BooleanLiteral", - "offset": 859, + "offset": 1558, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "StringLiteral", - "offset": 3012, + "offset": 4140, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/Requests\/DeviceInfoAdapter.swift", "kind": "Array", - "offset": 3197, + "offset": 4325, "length": 2, "value": "[]" }, @@ -11049,7 +12548,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DeviceInfoReader.swift", "kind": "BooleanLiteral", - "offset": 3174, + "offset": 3312, "length": 5, "value": "false" }, @@ -11070,7 +12569,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/DynamicDeviceInfo.swift", "kind": "BooleanLiteral", - "offset": 2924, + "offset": 2547, "length": 5, "value": "false" }, @@ -11098,70 +12597,70 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 264, + "offset": 330, "length": 65, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 288, + "offset": 354, "length": 1, "value": "\".\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 328, + "offset": 394, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1187, + "offset": 1404, "length": 87, "value": "\"https:\/\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1203, + "offset": 1420, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1218, + "offset": 1435, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1239, + "offset": 1456, "length": 1, "value": "\"\/\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1261, + "offset": 1478, "length": 1, "value": "\"\/config.json\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1500, + "offset": 1717, "length": 10, "value": "\"configv2\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/Endpoint\/EndpointBuilder.swift", "kind": "StringLiteral", - "offset": 1543, + "offset": 1760, "length": 9, "value": "\"webview\"" }, @@ -11316,7 +12815,7 @@ "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", "kind": "StringLiteral", "offset": 1859, - "length": 995, + "length": 1744, "value": "\"\"" }, { @@ -11396,6 +12895,76 @@ "length": 13, "value": "\"Empty token\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 2955, + "length": 17, + "value": "\"not_initialized\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 2987, + "length": 17, + "value": "\"Not initialized\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3087, + "length": 9, + "value": "\"timeout\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3111, + "length": 9, + "value": "\"Timeout\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3265, + "length": 12, + "value": "\"No Session\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3292, + "length": 36, + "value": "\"No session present at time of call\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3413, + "length": 19, + "value": "\"No Partner Object\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3447, + "length": 29, + "value": "\"No partner object available\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3561, + "length": 14, + "value": "\"No WKWebView\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.Extensions.swift", + "kind": "StringLiteral", + "offset": 3590, + "length": 24, + "value": "\"No WKWebView available\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/ErrorHandling\/ErrorConstants.RequestFactory.swift", "kind": "StringLiteral", @@ -11473,6 +13042,13 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/FeatureFlags.swift", + "kind": "BooleanLiteral", + "offset": 176, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FileDownloadParamsFactory.swift", "kind": "StringLiteral", @@ -11511,7 +13087,7 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FileDownloaderTask.swift", "kind": "Dictionary", - "offset": 795, + "offset": 865, "length": 3, "value": "[]" }, @@ -11613,6 +13189,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/FilePathsStorage.swift", + "kind": "StringLiteral", + "offset": 585, + "length": 10, + "value": "\"Requests\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/FilePathsStorage.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 8, + "value": "\"Assets\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Download\/FilesDownloader\/FilesDownloaderBase.swift", "kind": "Dictionary", @@ -11679,21 +13269,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 968, + "offset": 1014, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 1039, + "offset": 1085, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/GatewayHeaderBiddingTokenReader.swift", "kind": "IntegerLiteral", - "offset": 1137, + "offset": 1183, "length": 1, "value": "1" }, @@ -11714,21 +13304,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewaySDKServicesProvider.swift", "kind": "Array", - "offset": 2549, + "offset": 3466, "length": 3, "value": "[1]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewayServiceBuilder.swift", "kind": "BooleanLiteral", - "offset": 501, + "offset": 664, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/GatewayServiceBuilder.swift", "kind": "BooleanLiteral", - "offset": 706, + "offset": 869, "length": 4, "value": "true" }, @@ -11816,6 +13406,34 @@ "length": 2, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "StringLiteral", + "offset": 171, + "length": 34, + "value": "\"GenericMediatorWithTimeout.Queue\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "StringLiteral", + "offset": 257, + "length": 40, + "value": "\"GenericMediatorWithTimeout.Block.Queue\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "Dictionary", + "offset": 1419, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Mediator\/GenericMediatorWithTimeout.swift", + "kind": "IntegerLiteral", + "offset": 2330, + "length": 1, + "value": "0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/Generic\/GenericNetwork.swift", "kind": "Array", @@ -11900,13 +13518,34 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "Dictionary", + "offset": 1377, + "length": 3, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", "kind": "Dictionary", - "offset": 1281, + "offset": 1612, "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/GenericPerformanceMetricsDecorator.swift", + "kind": "BooleanLiteral", + "offset": 1695, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/RequestStorage\/GenericRequestStorage.swift", "kind": "Array", @@ -12047,6 +13686,13 @@ "length": 4, "value": "\"2:\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/HeaderBidding.swift", + "kind": "FloatLiteral", + "offset": 142, + "length": 3, + "value": "5.0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/HeaderBiddingAdMarkup.swift", "kind": "IntegerLiteral", @@ -12124,41 +13770,20 @@ "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Token\/HeaderBiddingTokenReaderBase.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 5, - "value": "\"tid\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "BooleanLiteral", - "offset": 663, + "offset": 787, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "BooleanLiteral", - "offset": 1075, + "offset": 1275, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", - "kind": "StringLiteral", - "offset": 1720, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", - "kind": "StringLiteral", - "offset": 1729, - "length": 7, - "value": "\"false\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithMetrics.swift", "kind": "StringLiteral", @@ -12167,16 +13792,16 @@ "value": "\"UnityAds.HeaderBiddingTokenReaderWithMetrics\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithTimeout.swift", "kind": "BooleanLiteral", - "offset": 984, + "offset": 1262, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/HeaderBiddingToken\/HeaderBiddingTokenReaderWithTimeout.swift", "kind": "BooleanLiteral", - "offset": 1037, + "offset": 1315, "length": 4, "value": "true" }, @@ -12208,6 +13833,13 @@ "length": 34, "value": "\"dW5pdHlhZHMudW5pdHljaGluYS5jbg==\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Store\/TransactionSender\/Deduplication\/IAPTransactionDeduplicator.swift", + "kind": "BooleanLiteral", + "offset": 743, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/IdentifiersGenerator\/IdentifiersGenerator.swift", "kind": "StringLiteral", @@ -12244,74 +13876,46 @@ "value": "\"init.completed.event.request.queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", "kind": "StringLiteral", - "offset": 835, - "length": 43, - "value": "\"Legacy doesnt have \"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", - "kind": "StringLiteral", - "offset": 862, - "length": 14, - "value": "\" implementation\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationSequenceProvider.swift", - "kind": "BooleanLiteral", - "offset": 375, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationSequenceProvider.swift", - "kind": "BooleanLiteral", - "offset": 504, + "offset": 173, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 2736, - "length": 4, - "value": "true" + "value": "\"api\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 2843, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", + "kind": "StringLiteral", + "offset": 218, + "length": 6, + "value": "\"load\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6139, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", + "kind": "StringLiteral", + "offset": 268, + "length": 11, + "value": "\"get_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/InitInfo.swift", "kind": "BooleanLiteral", - "offset": 6173, + "offset": 651, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6751, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "kind": "StringLiteral", + "offset": 835, + "length": 43, + "value": "\"Legacy doesnt have \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitializationTaskFactoryBase.swift", - "kind": "BooleanLiteral", - "offset": 6878, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Legacy\/InitTaskState.swift", + "kind": "StringLiteral", + "offset": 862, + "length": 14, + "value": "\" implementation\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/JSONSerialization.Object.swift", @@ -13135,238 +14739,196 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4216, - "length": 7, - "value": "\"s_nrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4262, - "length": 6, - "value": "\"s_wd\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 8, - "value": "\"s_wvrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4359, + "offset": 4069, "length": 7, "value": "\"s_ntf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4409, + "offset": 4119, "length": 7, "value": "\"s_pte\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4455, + "offset": 4165, "length": 8, "value": "\"s_init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4500, + "offset": 4210, "length": 9, "value": "\"tsi_prw\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4553, + "offset": 4263, "length": 5, "value": "\"nwc\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4309, "length": 5, "value": "\"wac\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4645, + "offset": 4355, "length": 7, "value": "\"s_din\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4683, + "offset": 4393, "length": 9, "value": "\"scar_bm\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4735, + "offset": 4445, "length": 9, "value": "\"scar_bn\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4216, - "length": 7, - "value": "\"s_nrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4262, - "length": 6, - "value": "\"s_wd\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 8, - "value": "\"s_wvrq\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", - "kind": "StringLiteral", - "offset": 4359, + "offset": 4069, "length": 7, "value": "\"s_ntf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4409, + "offset": 4119, "length": 7, "value": "\"s_pte\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4455, + "offset": 4165, "length": 8, "value": "\"s_init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4500, + "offset": 4210, "length": 9, "value": "\"tsi_prw\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4553, + "offset": 4263, "length": 5, "value": "\"nwc\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4309, "length": 5, "value": "\"wac\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4645, + "offset": 4355, "length": 7, "value": "\"s_din\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4683, + "offset": 4393, "length": 9, "value": "\"scar_bm\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 4735, + "offset": 4445, "length": 9, "value": "\"scar_bn\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 6030, + "offset": 5390, "length": 5, "value": "\"dis\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "BooleanLiteral", - "offset": 7579, + "offset": 6939, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 7892, + "offset": 7252, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 7926, + "offset": 7286, "length": 6, "value": "\"next\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "BooleanLiteral", - "offset": 8057, + "offset": 7417, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8184, + "offset": 7544, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8206, + "offset": 7566, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/LegacySDKConfig.swift", "kind": "StringLiteral", - "offset": 8229, + "offset": 7589, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/LocalNativeConfigurationStorage.swift", "kind": "BooleanLiteral", - "offset": 218, + "offset": 324, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/LocalNativeConfigurationStorage.swift", "kind": "BooleanLiteral", - "offset": 586, + "offset": 692, "length": 4, "value": "true" }, @@ -13646,22 +15208,8 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", "kind": "StringLiteral", - "offset": 1745, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", - "kind": "Dictionary", - "offset": 1787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/LoggableWebViewMessage.swift", - "kind": "StringLiteral", - "offset": 1791, - "length": 1, + "offset": 1790, + "length": 2, "value": "\"\"" }, { @@ -13776,6 +15324,20 @@ "length": 3, "value": "[]" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSender.swift", + "kind": "FloatLiteral", + "offset": 743, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSender.swift", + "kind": "Dictionary", + "offset": 782, + "length": 3, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/MetricSenderCondition.swift", "kind": "BooleanLiteral", @@ -13884,119 +15446,133 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 789, - "length": 7, - "value": "\"cache\"" + "offset": 839, + "length": 12, + "value": "\"load_cache\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 889, + "offset": 944, "length": 18, "value": "\"create_ad_object\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 993, + "offset": 1048, "length": 9, "value": "\"webview\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1039, + "offset": 1094, "length": 24, "value": "\"load_started_ad_viewer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1106, + "offset": 1161, "length": 20, "value": "\"webview_terminated\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1207, + "offset": 1274, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", + "kind": "StringLiteral", + "offset": 1368, "length": 16, "value": "\"memory_warning\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1315, + "offset": 1476, "length": 15, "value": "\"gateway_token\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1370, + "offset": 1531, "length": 23, "value": "\"gateway_token_started\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1456, + "offset": 1617, "length": 7, "value": "\"state\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1509, - "length": 4, - "value": "\"hb\"" + "offset": 1661, + "length": 6, + "value": "\"sync\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1569, - "length": 5, - "value": "\"imp\"" + "offset": 1706, + "length": 8, + "value": "\"reason\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1613, - "length": 9, - "value": "\"ad_type\"" + "offset": 1758, + "length": 14, + "value": "\"reason_debug\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1659, - "length": 6, - "value": "\"sync\"" + "offset": 1810, + "length": 7, + "value": "\"cache\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1704, - "length": 8, - "value": "\"reason\"" + "offset": 1855, + "length": 7, + "value": "\"first\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "StringLiteral", - "offset": 1756, - "length": 14, - "value": "\"reason_debug\"" + "offset": 1902, + "length": 10, + "value": "\"is_retry\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", + "kind": "StringLiteral", + "offset": 1951, + "length": 8, + "value": "\"source\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "IntegerLiteral", - "offset": 1812, + "offset": 2001, "length": 2, "value": "-1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Constants\/Metrics.swift", "kind": "Array", - "offset": 1856, + "offset": 2045, "length": 102, "value": "[\"load_success\", \"load_failure\", \"show_success\", \"show_failure\"]" }, @@ -14024,87 +15600,136 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2205, + "offset": 2531, "length": 5, "value": "\"iso\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2236, + "offset": 2562, "length": 5, "value": "\"plt\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2280, + "offset": 2606, "length": 5, "value": "\"sdk\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2320, + "offset": 2646, "length": 8, "value": "\"system\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 4, + "value": "\"tm\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "Dictionary", - "offset": 2517, + "offset": 2911, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2813, + "offset": 3207, "length": 7, "value": "\"value\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2848, + "offset": 3242, "length": 15, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2862, + "offset": 3256, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2889, + "offset": 3283, "length": 10, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 2898, + "offset": 3292, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "Dictionary", - "offset": 3047, + "offset": 3441, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", "kind": "StringLiteral", - "offset": 3533, + "offset": 3927, "length": 7, "value": "\"Apple\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4283, + "length": 16, + "value": "\"mediation.name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4331, + "length": 8, + "value": "\"m_name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 19, + "value": "\"mediation.version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4450, + "length": 7, + "value": "\"m_ver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4522, + "length": 27, + "value": "\"mediation.adapter_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/UnityAdsDiagnostics\/Adapters\/MetricsContainerAdapter.swift", + "kind": "StringLiteral", + "offset": 4581, + "length": 10, + "value": "\"m_ad_ver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/MetricsNames.swift", "kind": "StringLiteral", @@ -14430,84 +16055,98 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "FloatLiteral", - "offset": 907, + "offset": 938, "length": 4, - "value": "10.0" + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 933, + "offset": 964, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 957, + "offset": 988, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 1225, + "offset": 1256, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1287, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 1285, + "offset": 1316, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1323, + "offset": 1354, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "Array", - "offset": 1354, + "offset": 1385, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1933, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1963, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1631, + "length": 4, + "value": "30.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 1993, - "length": 1, - "value": "0" + "kind": "FloatLiteral", + "offset": 1643, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", "kind": "BooleanLiteral", - "offset": 2191, + "offset": 2364, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 2395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Config\/NativeConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 2593, "length": 5, "value": "false" }, @@ -15253,6 +16892,34 @@ "length": 7, "value": "1000.0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 126, + "length": 9, + "value": "\"Unity3d\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 168, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 10, + "value": "\"omsdk-v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/Constants\/OMSDK.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 24, + "value": "\"omid-session-client-v1\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventBuilder.swift", "kind": "StringLiteral", @@ -15263,21 +16930,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1692, + "offset": 1552, "length": 11, "value": "\"operative\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1740, + "offset": 1600, "length": 22, "value": "\"operative_event_sent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/OperativeEvent\/OperativeEventSenderWithMetrics.swift", "kind": "StringLiteral", - "offset": 1804, + "offset": 1664, "length": 28, "value": "\"saved_operative_event_sent\"" }, @@ -15387,9 +17054,9 @@ "value": "\"MuteSwitchDetection.aiff\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/PaymentTransactionObserverFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/Observer\/PaymentTransactionObserverFactory.swift", "kind": "StringLiteral", - "offset": 455, + "offset": 533, "length": 15, "value": "\"UnityAds.PaymentObserver\"" }, @@ -15407,6 +17074,13 @@ "length": 33, "value": "\"performance.measurer.sync.queue\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/Performance\/PerformanceMeasurer.swift", + "kind": "BooleanLiteral", + "offset": 861, + "length": 4, + "value": "true" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Network\/RequestStorage\/PersistentRequestStorage.swift", "kind": "StringLiteral", @@ -15498,136 +17172,136 @@ "length": 18, "value": "\"UnityAds.PrivacyAPIReceiver\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "StringLiteral", - "offset": 1602, - "length": 17, - "value": "\"GameId disabled\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Initialization\/Tasks\/PrivacyFetchTask.swift", - "kind": "IntegerLiteral", - "offset": 1490, - "length": 3, - "value": "423" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 294, + "offset": 321, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 431, + "offset": 458, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 520, + "offset": 547, "length": 5, "value": "\"pas\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 552, + "offset": 579, "length": 5, "value": "\"url\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 585, + "offset": 612, "length": 6, "value": "\"hash\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 632, + "offset": 659, "length": 5, "value": "\"snb\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 520, + "offset": 691, + "length": 4, + "value": "\"nl\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 547, "length": 5, "value": "\"pas\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 552, + "offset": 579, "length": 5, "value": "\"url\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 585, + "offset": 612, "length": 6, "value": "\"hash\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 632, + "offset": 659, "length": 5, "value": "\"snb\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 4, + "value": "\"nl\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "BooleanLiteral", - "offset": 1127, + "offset": 1185, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 1227, + "offset": 1268, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "StringLiteral", - "offset": 1256, + "offset": 1365, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 1394, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", "kind": "BooleanLiteral", - "offset": 1299, + "offset": 1437, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/ProductInfoReader.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/DataModels\/PrivacyResponse.swift", + "kind": "StringLiteral", + "offset": 1469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Products\/Reader\/ProductInfoReaderSK1.swift", "kind": "Dictionary", - "offset": 394, + "offset": 200, "length": 3, "value": "[]" }, @@ -16353,86 +18027,114 @@ "value": "\"UnityAds.SDKConfigurationStorageObjcBridge\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 889, + "offset": 635, "length": 22, "value": "\"SDKInitializer.queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "Array", - "offset": 1070, + "offset": 816, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 1629, + "offset": 1375, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "Array", - "offset": 3843, + "offset": 3693, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 4119, + "offset": 3969, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "BooleanLiteral", - "offset": 4272, + "offset": 4259, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4481, + "offset": 4490, "length": 17, "value": "\"not_initialized\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4543, + "offset": 4552, "length": 14, "value": "\"initializing\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4599, + "offset": 4608, "length": 8, "value": "\"failed\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4654, + "offset": 4663, "length": 13, "value": "\"initialized\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 4835, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 4897, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 5033, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", + "kind": "BooleanLiteral", + "offset": 5189, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4780, + "offset": 5556, "length": 22, "value": "\"game_id_not_a_number\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/SDKInitializer.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializer.swift", "kind": "StringLiteral", - "offset": 4817, + "offset": 5593, "length": 27, "value": "\"GameId should be a number\"" }, @@ -16443,6 +18145,27 @@ "length": 23, "value": "\"UnityAds.SDKInitializerOBJBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 142, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithCounter.swift", + "kind": "IntegerLiteral", + "offset": 526, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/Decorators\/SDKInitializerWithFirstInit.swift", "kind": "BooleanLiteral", @@ -16450,6 +18173,27 @@ "length": 4, "value": "true" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1360, + "length": 12, + "value": "\"initialize\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1415, + "length": 25, + "value": "\"initialize_game_id_same\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/SDKInitializer\/SDKInitializerWithMetrics.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 28, + "value": "\"initialize_game_id_changed\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Settings\/SDKSettingsStorage.swift", "kind": "IntegerLiteral", @@ -16569,17 +18313,241 @@ "length": 24, "value": "\"UnityAds.SKOverlayDelegateWrapper\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 23, + "value": "\"transactionIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 259, + "length": 17, + "value": "\"transactionDate\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 18, + "value": "\"transactionState\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 405, + "length": 21, + "value": "\"originalTransaction\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 478, + "length": 9, + "value": "\"payment\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 698, + "length": 19, + "value": "\"productIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 10, + "value": "\"quantity\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKPaymentTransaction.JsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 21, + "value": "\"applicationUsername\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 180, + "length": 19, + "value": "\"productIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 240, + "length": 16, + "value": "\"localizedTitle\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 22, + "value": "\"localizedDescription\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 14, + "value": "\"downloadable\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 7, + "value": "\"price\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 13, + "value": "\"priceLocale\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 556, + "length": 20, + "value": "\"subscriptionPeriod\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 642, + "length": 19, + "value": "\"introductoryPrice\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 29, + "value": "\"subscriptionGroupIdentifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 904, + "length": 11, + "value": "\"discounts\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1029, + "length": 16, + "value": "\"familySharable\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1330, + "length": 12, + "value": "\"identifier\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1380, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1433, + "length": 20, + "value": "\"subscriptionPeriod\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1514, + "length": 13, + "value": "\"priceLocale\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1581, + "length": 7, + "value": "\"price\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1617, + "length": 13, + "value": "\"paymentMode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1674, + "length": 17, + "value": "\"numberOfPeriods\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 15, + "value": "\"numberOfUnits\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2186, + "length": 16, + "value": "\"currencySymbol\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 14, + "value": "\"currencyCode\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Extensions\/SKProductJsonRepresentable.swift", + "kind": "StringLiteral", + "offset": 2341, + "length": 13, + "value": "\"countryCode\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", "kind": "IntegerLiteral", - "offset": 967, + "offset": 924, "length": 2, "value": "-1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2402, + "length": 1, + "value": "0" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/Adapters\/SdkConfiguration.swift", "kind": "FloatLiteral", - "offset": 1994, + "offset": 2553, "length": 6, "value": "1000.0" }, @@ -16593,126 +18561,189 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 950, + "offset": 962, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 995, + "offset": 1007, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "IntegerLiteral", - "offset": 1045, + "offset": 1057, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 1947, + "offset": 1959, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "BooleanLiteral", - "offset": 2094, + "offset": 2106, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 5507, + "offset": 5573, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "Dictionary", + "offset": 5746, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "Dictionary", + "offset": 5784, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 5858, + "offset": 5989, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 6106, + "offset": 6237, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 6135, + "offset": 6266, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 1978, + "offset": 1990, "length": 25, "value": "\"UnityAds.ServiceProviderObjCBridge\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6885, + "offset": 7466, "length": 3, "value": "\"0\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6933, + "offset": 7514, "length": 3, "value": "\"1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 6978, + "offset": 7559, "length": 3, "value": "\"3\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7028, + "offset": 7609, "length": 3, "value": "\"2\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7823, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7871, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "IntegerLiteral", + "offset": 7921, + "length": 1, + "value": "3" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7135, + "offset": 7974, + "length": 7, + "value": "\"Error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "StringLiteral", + "offset": 7998, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "BooleanLiteral", + "offset": 8021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", + "kind": "StringLiteral", + "offset": 8230, "length": 53, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "StringLiteral", - "offset": 7187, + "offset": 8282, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 7488, + "offset": 8583, "length": 3, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/ServiceProvider\/ServiceProviderObjCBridge.swift", "kind": "Dictionary", - "offset": 8382, + "offset": 9477, "length": 3, "value": "[]" }, @@ -16803,42 +18834,42 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "BooleanLiteral", - "offset": 1938, + "offset": 1893, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "BooleanLiteral", - "offset": 2116, + "offset": 2071, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "Array", - "offset": 2285, + "offset": 2240, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 2646, + "offset": 2601, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 2984, + "offset": 2939, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Storages\/SessionInfoStorage.swift", "kind": "StringLiteral", - "offset": 3089, + "offset": 3044, "length": 2, "value": "\"\"" }, @@ -16892,63 +18923,56 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Audio\/SoundPlayer.swift", - "kind": "IntegerLiteral", - "offset": 991, - "length": 5, - "value": "1000" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 475, "length": 133, "value": "\"Initializing Unity Ads \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 513, "length": 1, "value": "\" \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 530, "length": 4, "value": "\" with game id \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 569, "length": 2, "value": "\" in \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 580, "length": 4, "value": "\" mode, session \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 607, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 814, "length": 6, "value": "\"test\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Initialization\/Tasks\/StartInitTaskMessageBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Initialization\/Tasks\/LogMessage\/StartInitTaskMessageBuilder.swift", "kind": "StringLiteral", "offset": 823, "length": 12, @@ -16957,28 +18981,28 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "Array", - "offset": 630, + "offset": 675, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 1665, + "offset": 1373, "length": 7, "value": "\"apple\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 1743, + "offset": 1451, "length": 3, "value": "\",\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/DataModels\/StaticDeviceInfo.swift", "kind": "StringLiteral", - "offset": 2096, + "offset": 1804, "length": 5, "value": "\"ios\"" }, @@ -17080,10 +19104,24 @@ "length": 3, "value": "\".\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", + "kind": "BooleanLiteral", + "offset": 1529, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/StoreProductViewController.swift", "kind": "StringLiteral", - "offset": 1097, + "offset": 1273, "length": 27, "value": "\"UnityAds.StoreProductDelegateWrapper\"" }, @@ -17094,6 +19132,20 @@ "length": 41, "value": "\"Could not create Data string using utf8\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Bool.swift", + "kind": "StringLiteral", + "offset": 78, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Bool.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 7, + "value": "\"false\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Data.swift", "kind": "StringLiteral", @@ -17185,6 +19237,20 @@ "length": 30, "value": "\"Cannot retrieve base address\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Extension\/Swift.Dictionary.Options.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 10, + "value": "\"objectId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/ObjBridges\/Extension\/Swift.Dictionary.Options.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 10, + "value": "\"adMarkup\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/Swift.Dictionary.swift", "kind": "StringLiteral", @@ -17472,6 +19538,13 @@ "length": 10, "value": "\"UnityAds\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/ServiceProvider\/TCFStringProvider.swift", + "kind": "StringLiteral", + "offset": 351, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/TaskMetricsNames.swift", "kind": "StringLiteral", @@ -18098,49 +20171,49 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1072, + "offset": 1168, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1122, + "offset": 1218, "length": 5, "value": "1000" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1543, + "offset": 1639, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "StringLiteral", - "offset": 1775, + "offset": 2032, "length": 15, "value": "\"kern.boottime\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "IntegerLiteral", - "offset": 1813, + "offset": 2070, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "FloatLiteral", - "offset": 1914, + "offset": 2171, "length": 11, "value": "1000000.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Measurement\/TimeReader\/TimeReader.swift", "kind": "StringLiteral", - "offset": 2583, + "offset": 2885, "length": 5, "value": "\"ZZZ\"" }, @@ -18193,6 +20266,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Store\/TransactionConstants.swift", + "kind": "StringLiteral", + "offset": 101, + "length": 28, + "value": "\"lastSentIAPTransactionDate\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/History\/TransactionHistoryReader.swift", + "kind": "Array", + "offset": 687, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/PropertyWrappers\/TupleArrayDecodable.swift", "kind": "IntegerLiteral", @@ -18224,161 +20311,161 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 916, + "offset": 943, "length": 38, "value": "\"00000000-0000-0000-0000-000000000000\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 2027, + "offset": 2200, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 2299, + "offset": 2472, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 2391, + "offset": 2564, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 2870, + "offset": 3043, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "Array", - "offset": 3035, + "offset": 3208, "length": 52, "value": "[\"x86_64\", \"i386\"]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3181, + "offset": 3354, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "Array", - "offset": 3224, + "offset": 3397, "length": 190, "value": "[\"\/Applications\/Cydia.app\", \"\/Library\/MobileSubstrate\/MobileSubstrate.dylib\", \"\/bin\/bash\", \"\/usr\/sbin\/sshd\", \"\/etc\/apt\"]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3519, + "offset": 3692, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 3571, + "offset": 3744, "length": 24, "value": "\"\/private\/jailbreak.txt\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "StringLiteral", - "offset": 3612, + "offset": 3785, "length": 33, "value": "\"Check if a device is jailbroken\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3730, + "offset": 3903, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3903, + "offset": 4076, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "BooleanLiteral", - "offset": 3934, + "offset": 4107, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4068, + "offset": 4241, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4239, + "offset": 4412, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4382, + "offset": 4555, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4524, + "offset": 4697, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4617, + "offset": 4790, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "IntegerLiteral", - "offset": 4853, + "offset": 5026, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 4893, + "offset": 5066, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIDevice.Convenience.swift", "kind": "FloatLiteral", - "offset": 5004, + "offset": 5177, "length": 7, "value": "1024.0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/UIScreen.Convenience.swift", "kind": "IntegerLiteral", - "offset": 857, + "offset": 990, "length": 1, "value": "1" }, @@ -18634,6 +20721,20 @@ "length": 1, "value": "0" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAds.swift", + "kind": "BooleanLiteral", + "offset": 483, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAds.swift", + "kind": "BooleanLiteral", + "offset": 968, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/UnityAdsConfig.swift", "kind": "IntegerLiteral", @@ -18662,97 +20763,370 @@ "length": 2, "value": "-1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 3, + "value": "\"m\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 589, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 6, + "value": "\"sTkn\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 695, + "length": 12, + "value": "\"deviceMake\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 7, + "value": "\"shSid\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 8, + "value": "\"gameId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 3, + "value": "\"m\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 589, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 6, + "value": "\"sTkn\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 695, + "length": 12, + "value": "\"deviceMake\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 7, + "value": "\"shSid\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 8, + "value": "\"gameId\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "Dictionary", + "offset": 1608, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1771, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1853, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2303, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2279, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2303, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "Dictionary", + "offset": 3490, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3647, + "length": 16, + "value": "\"native_\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 66, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3793, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 3801, + "length": 5, + "value": "\"_time\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4407, + "length": 5, + "value": "\"iso\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4437, + "length": 5, + "value": "\"plt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4469, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4504, + "length": 8, + "value": "\"system\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4407, + "length": 5, + "value": "\"iso\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4437, + "length": 5, + "value": "\"plt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4469, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Diagnostics\/Metrics\/DataModels\/UnityAdsDiagnosticMetricContainer.swift", + "kind": "StringLiteral", + "offset": 4504, + "length": 8, + "value": "\"system\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "Array", - "offset": 3090, + "offset": 3180, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "IntegerLiteral", - "offset": 4142, + "offset": 4280, "length": 3, "value": "200" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsEventsNetworkServicesFactory.swift", "kind": "IntegerLiteral", - "offset": 4148, + "offset": 4286, "length": 3, "value": "299" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 1551, + "offset": 1593, "length": 24, "value": "\"application\/x-protobuf\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "BooleanLiteral", - "offset": 1705, + "offset": 1747, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2223, + "offset": 2265, "length": 6, "value": "\"init\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2271, + "offset": 2313, "length": 11, "value": "\"adRequest\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2337, + "offset": 2379, "length": 10, "value": "\"adPlayer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2397, + "offset": 2439, "length": 11, "value": "\"operative\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2461, + "offset": 2503, "length": 15, "value": "\"initCompleted\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2519, + "offset": 2561, "length": 12, "value": "\"diagnostic\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2580, + "offset": 2622, "length": 9, "value": "\"refresh\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", "kind": "StringLiteral", - "offset": 2638, + "offset": 2680, "length": 15, "value": "\"privacyUpdate\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/UnityAdsGatewayRequestFactory.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 17, + "value": "\"transactionData\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/UnityAdsMetricsConfig.swift", "kind": "StringLiteral", @@ -19001,28 +21375,28 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4081, + "offset": 3925, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4193, + "offset": 4037, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "Array", - "offset": 4516, + "offset": 4360, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/Network\/UnityAdsNetworkServicesFactory.swift", "kind": "BooleanLiteral", - "offset": 5946, + "offset": 5855, "length": 5, "value": "false" }, @@ -19071,105 +21445,105 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "Dictionary", - "offset": 2584, + "offset": 2619, "length": 98, "value": "[(\"Content-Encoding\", \"gzip\"), (\"Content-Type\", \"application\/json\")]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 2921, + "offset": 2956, "length": 10, "value": "\"callType\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3164, + "offset": 3199, "length": 54, "value": "\"Could not create a request. Metrics url is not ready\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3272, + "offset": 3307, "length": 54, "value": "\"Could not create a request. Webview url is not valid\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3391, + "offset": 3426, "length": 6, "value": "\"POST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3413, + "offset": 3448, "length": 5, "value": "\"GET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3391, + "offset": 3426, "length": 6, "value": "\"POST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3413, + "offset": 3448, "length": 5, "value": "\"GET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3549, + "offset": 3584, "length": 11, "value": "\"token_srr\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Network\/UnityAdsRequestFactory.swift", "kind": "StringLiteral", - "offset": 3603, + "offset": 3638, "length": 9, "value": "\"privacy\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "IntegerLiteral", - "offset": 411, + "offset": 369, "length": 3, "value": "200" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "IntegerLiteral", - "offset": 417, + "offset": 375, "length": 3, "value": "299" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "StringLiteral", - "offset": 1116, + "offset": 1074, "length": 12, "value": "\"Sync.queue\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", - "kind": "StringLiteral", - "offset": 5122, + "kind": "BooleanLiteral", + "offset": 1701, "length": 4, - "value": "\"1:\"" + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/SDK\/Public\/SourceCode\/Swift\/UnityAdsServiceProvider.swift", "kind": "Dictionary", - "offset": 8694, + "offset": 8836, "length": 3, "value": "[]" }, @@ -19285,94 +21659,206 @@ "length": 22, "value": "\"expected destination\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 91, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 134, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 156, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Store\/Transactions\/UnityPaymentTransaction.swift", + "kind": "StringLiteral", + "offset": 809, + "length": 2, + "value": "\"\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2371, + "offset": 2428, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2419, + "offset": 2476, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "BooleanLiteral", - "offset": 2562, + "offset": 2619, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3680, + "offset": 3737, "length": 9, "value": "\"gateway\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3791, + "offset": 3848, "length": 59, "value": "\"No Payload nor error found in the response \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3849, + "offset": 3906, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 3965, + "offset": 4022, "length": 52, "value": "\"Proto value is nil for the response \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4016, + "offset": 4073, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4132, + "offset": 4189, "length": 55, "value": "\"Response type mismatch for the request \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4186, + "offset": 4243, "length": 1, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4323, + "offset": 4380, "length": 65, "value": "\"Payload error \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4356, + "offset": 4413, "length": 3, "value": "\" for the request \"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Network\/Decorators\/UniversalGatewayNetworkWithValidation.swift", "kind": "StringLiteral", - "offset": 4387, + "offset": 4444, "length": 1, "value": "\"\"" }, @@ -19407,14 +21893,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/UniversalResponseStorage.swift", "kind": "StringLiteral", - "offset": 1299, + "offset": 1362, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Storage\/UniversalResponseStorage.swift", "kind": "BooleanLiteral", - "offset": 1360, + "offset": 1423, "length": 5, "value": "false" }, @@ -19435,14 +21921,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", "kind": "StringLiteral", - "offset": 332, + "offset": 290, + "length": 17, + "value": "\"IABTCF_TCString\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", + "kind": "StringLiteral", + "offset": 391, "length": 22, "value": "\"com.unity.ads.\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/UserDefaultsKeys.swift", "kind": "StringLiteral", - "offset": 353, + "offset": 412, "length": 1, "value": "\"\"" }, @@ -19493,7 +21986,7 @@ "kind": "StringLiteral", "offset": 58, "length": 8, - "value": "\"4.10.0\"" + "value": "\"4.12.2\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", @@ -19502,223 +21995,216 @@ "length": 3, "value": "\".\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", - "kind": "StringLiteral", - "offset": 205, - "length": 1, - "value": "\"0\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Config\/DataModels\/Version.swift", "kind": "IntegerLiteral", - "offset": 302, - "length": 1, - "value": "0" + "offset": 131, + "length": 6, + "value": "41202" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapter.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapter.swift", "kind": "StringLiteral", "offset": 45, "length": 22, "value": "\"UnityAds.WKScriptHandlerAdapter\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 591, "length": 15, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 605, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 45, "length": 32, "value": "\"UnityAds.WKScriptHandlerAdapterWithLogger\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 942, "length": 141, "value": "\"\n ___________________\n 📧 Received ScriptMessage:\n Name: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 1045, "length": 4, "value": "\"\n Body: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerAdapterWithLogger.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerAdapterWithLogger.swift", "kind": "StringLiteral", "offset": 1071, "length": 12, "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerBase.swift", "kind": "StringLiteral", - "offset": 2039, + "offset": 2090, "length": 11, "value": "\"not_found\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptHandlerBase.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WKScriptHandlerBase.swift", "kind": "StringLiteral", - "offset": 2065, + "offset": 2116, "length": 19, "value": "\"Webview not found\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 695, - "value": "\"\nfunction stringifySafe(obj) {\n try {\n return JSON.stringify(obj)\n }\n catch (err) {\n return \"Stringify error\"\n }\n}\n\nfunction log(type, args) {\n window.webkit.messageHandlers.\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 510, - "length": 1, - "value": "\".postMessage(\n `${Object.values(args)\n .map(v => typeof(v) === \"undefined\" ? \"undefined\" : typeof(v) === \"object\" ? stringifySafe(v) : v.toString())\n .map(v => v.substring(0, 3000)) \/\/ Limit msg to 3000 chars\n .join(\", \")}`\n )\n}\n\nlet originalLog = console.log\n\nconsole.log = function() { log(\"log\", arguments); originalLog.apply(null, arguments) }\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "BooleanLiteral", - "offset": 1256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1471, - "length": 9, - "value": "\"JS LOGS\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1491, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 1507, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKScriptLogHandler.swift", - "kind": "StringLiteral", - "offset": 45, - "length": 13, - "value": "\"UnityAds.WebLogHandler\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 413, + "offset": 626, "length": 11, "value": "\"userAgent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 558, + "offset": 771, "length": 2, "value": "\"\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "1" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 617, + "offset": 854, "length": 21, "value": "\"navigator.userAgent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "StringLiteral", - "offset": 762, + "offset": 966, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Swift.Extensions\/WKWebView.Convenience.swift", "kind": "FloatLiteral", - "offset": 873, - "length": 4, - "value": "0.01" + "offset": 1070, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 541, + "offset": 596, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 602, + "offset": 657, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 665, + "offset": 720, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 705, + "offset": 760, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "BooleanLiteral", - "offset": 760, + "offset": 815, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "IntegerLiteral", - "offset": 939, + "offset": 994, "length": 3, "value": "768" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WKWebViewFactory.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Factory\/WKWebViewFactory.swift", "kind": "IntegerLiteral", - "offset": 952, + "offset": 1007, "length": 5, "value": "1024" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 695, + "value": "\"\nfunction stringifySafe(obj) {\n try {\n return JSON.stringify(obj)\n }\n catch (err) {\n return \"Stringify error\"\n }\n}\n\nfunction log(type, args) {\n window.webkit.messageHandlers.\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 510, + "length": 1, + "value": "\".postMessage(\n `${Object.values(args)\n .map(v => typeof(v) === \"undefined\" ? \"undefined\" : typeof(v) === \"object\" ? stringifySafe(v) : v.toString())\n .map(v => v.substring(0, 3000)) \/\/ Limit msg to 3000 chars\n .join(\", \")}`\n )\n}\n\nlet originalLog = console.log\n\nconsole.log = function() { log(\"log\", arguments); originalLog.apply(null, arguments) }\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "BooleanLiteral", + "offset": 1256, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1471, + "length": 9, + "value": "\"JS LOGS\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1491, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 1507, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/ScriptHandler\/WebLogHandler.swift", + "kind": "StringLiteral", + "offset": 45, + "length": 13, + "value": "\"UnityAds.WebLogHandler\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WebUserAgentReader.swift", "kind": "StringLiteral", @@ -19761,6 +22247,13 @@ "length": 24, "value": "\"UnityAds.WebViewApiAdUnitReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiAdValidatorReceiver.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 29, + "value": "\"UnityAds.WebViewApiAdValidatorReceiver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiAdViewerReceiver.swift", "kind": "StringLiteral", @@ -19887,20 +22380,6 @@ "length": 1, "value": "0" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", - "kind": "StringLiteral", - "offset": 290, - "length": 21, - "value": "\"USRVApiNotification\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 25, - "value": "\"addNotificationObserver\"" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", "kind": "StringLiteral", @@ -19911,7 +22390,14 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", "kind": "Array", - "offset": 764, + "offset": 746, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiNotificationReceiver.swift", + "kind": "Array", + "offset": 1007, "length": 2, "value": "[]" }, @@ -20062,6 +22548,27 @@ "length": 27, "value": "\"UnityAds.WebViewApiSKOverlayReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 125, + "length": 17, + "value": "\"UADSApiAdViewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 259, + "length": 17, + "value": "\"canMakePayments\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiSKPaymentsReceiver.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 28, + "value": "\"UnityAds.WebViewApiSKPaymentsReceiver\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewApiShowEventsReceiver.swift", "kind": "StringLiteral", @@ -20076,6 +22583,20 @@ "length": 28, "value": "\"UnityAds.WebViewApiShowEventsReceiver\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewAppBuilder.swift", + "kind": "BooleanLiteral", + "offset": 982, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewAppBuilder.swift", + "kind": "Array", + "offset": 1046, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/AppSheet\/WebViewAppSheetPresenter.swift", "kind": "StringLiteral", @@ -20188,17 +22709,31 @@ "length": 21, "value": "\"UnityAds.WebViewDelegateBridge\"" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", + "kind": "BooleanLiteral", + "offset": 1329, + "length": 4, + "value": "true" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", "kind": "StringLiteral", - "offset": 31, + "offset": 351, "length": 26, "value": "\"UnityAds.WebViewDelegateWithMetrics\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DelegateAdaptors\/WebViewDelegateWithMetrics.swift", "kind": "StringLiteral", - "offset": 1564, + "offset": 2114, "length": 17, "value": "\"wkwebview_error\"" }, @@ -20233,21 +22768,21 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1186, + "offset": 1187, "length": 17, "value": "\"getScreenHeight\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1399, + "offset": 1401, "length": 26, "value": "\"getAdvertisingTrackingId\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewDeviceInfoReceiver.swift", "kind": "StringLiteral", - "offset": 1635, + "offset": 1637, "length": 19, "value": "\"getConnectionType\"" }, @@ -20261,189 +22796,175 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 84, - "length": 14, - "value": "\"NOTIFICATION\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", - "kind": "StringLiteral", - "offset": 159, + "offset": 108, "length": 10, "value": "\"ADVIEWER\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 198, - "length": 8, - "value": "\"ACTION\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", - "kind": "StringLiteral", - "offset": 237, + "offset": 149, "length": 10, "value": "\"APPSHEET\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 277, + "offset": 189, "length": 9, "value": "\"REQUEST\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 320, + "offset": 232, "length": 13, "value": "\"SKADNETWORK\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 363, + "offset": 275, "length": 11, "value": "\"SKOVERLAY\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 448, + "offset": 360, "length": 22, "value": "\"ON_VISIBILITY_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 505, + "offset": 417, "length": 16, "value": "\"ON_MUTE_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 558, + "offset": 470, "length": 18, "value": "\"ON_VOLUME_CHANGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 642, + "offset": 554, "length": 19, "value": "\"APPSHEET_PREPARED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 690, + "offset": 602, "length": 17, "value": "\"APPSHEET_OPENED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 736, + "offset": 648, "length": 17, "value": "\"APPSHEET_CLOSED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 782, + "offset": 694, "length": 17, "value": "\"APPSHEET_FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 864, + "offset": 776, "length": 10, "value": "\"COMPLETE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 903, + "offset": 815, "length": 8, "value": "\"FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 987, + "offset": 899, "length": 18, "value": "\"START_IMPRESSION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1041, + "offset": 953, "length": 16, "value": "\"END_IMPRESSION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1093, + "offset": 1005, "length": 10, "value": "\"_SUCCESS\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1138, + "offset": 1050, "length": 9, "value": "\"_FAILED\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1217, + "offset": 1129, "length": 18, "value": "\"DID_FAIL_TO_LOAD\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1279, + "offset": 1191, "length": 25, "value": "\"WILL_START_PRESENTATION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1348, + "offset": 1260, "length": 25, "value": "\"DID_FINISH_PRESENTATION\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1414, + "offset": 1326, "length": 22, "value": "\"WILL_START_DISMISSAL\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1477, + "offset": 1389, "length": 22, "value": "\"DID_FINISH_DISMISSAL\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1606, + "offset": 1518, "length": 9, "value": "\"STORAGE\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/UnityAds\/Constants\/WebViewEventsConstants.swift", "kind": "StringLiteral", - "offset": 1642, + "offset": 1554, "length": 5, "value": "\"SET\"" }, @@ -20455,42 +22976,42 @@ "value": "\"\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "Array", "offset": 555, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 603, "length": 23, "value": "\"WebViewMediator.Queue\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1498, "length": 18, "value": "\"missing_receiver\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1531, "length": 72, "value": "\"Could not found message receiver with name: \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1583, "length": 3, "value": "\" for topic \"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMediator.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Messagehandlers\/WebViewMediator.swift", "kind": "StringLiteral", "offset": 1602, "length": 2, @@ -20755,20 +23276,6 @@ "length": 11, "value": "\"handleLog\"" }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMessageSenderBuilder.swift", - "kind": "BooleanLiteral", - "offset": 951, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/WebViewMessageSenderBuilder.swift", - "kind": "BooleanLiteral", - "offset": 1009, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Decorators\/WebViewMessageSenderWithGate.swift", "kind": "StringLiteral", @@ -20779,51 +23286,58 @@ { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 503, + "offset": 615, "length": 22, "value": "\"WebViewMessageSender\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 557, + "offset": 669, "length": 38, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 594, + "offset": 706, "length": 2, "value": "\"\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 1000, + "offset": 1072, "length": 9, "value": "\"Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/Decorators\/WebViewMessageSenderWithLogger.swift", "kind": "StringLiteral", - "offset": 1039, + "offset": 1111, "length": 18, "value": "\"Outgoing message\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserverPlaceholder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserver.swift", + "kind": "Dictionary", + "offset": 1400, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", "kind": "StringLiteral", - "offset": 296, - "length": 12, - "value": "\"\"" + "offset": 76, + "length": 4, + "value": "\"OK\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewNotificationObserverPlaceholder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", "kind": "StringLiteral", - "offset": 307, - "length": 2, - "value": "\"\"" + "offset": 98, + "length": 7, + "value": "\"ERROR\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", @@ -20840,14310 +23354,17880 @@ "value": "\"ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", - "kind": "StringLiteral", - "offset": 76, - "length": 4, - "value": "\"OK\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Messages\/WebViewRequestMessageBase.swift", + "kind": "StringLiteral", + "offset": 98, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 16, + "value": "\"USRVApiStorage\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 25, + "value": "\"UnityAds.WebViewStorageApiReceiver\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "kind": "IntegerLiteral", + "offset": 2549, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "kind": "StringLiteral", + "offset": 115, + "length": 51, + "value": "\"\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "kind": "StringLiteral", + "offset": 137, + "length": 1, + "value": "\"?platform=ios&mode=ad-viewer\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewUrlOpener.swift", + "kind": "Dictionary", + "offset": 801, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "StringLiteral", + "offset": 1064, + "length": 4, + "value": "\"CN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 5, + "value": "\"CHN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "kind": "Array", + "offset": 1145, + "length": 81, + "value": "[\"Asia\/Kashgar\", \"Asia\/Urumqi\", \"Asia\/Chongqing\", \"Asia\/Shanghai\", \"Asia\/Harbin\"]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4052, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4289, + "length": 23, + "value": "\".AdDataRefreshRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4381, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4401, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4426, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4446, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4473, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4493, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4521, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4541, + "length": 16, + "value": "\"campaign_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4564, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4584, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4618, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "StringLiteral", + "offset": 4638, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5085, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5179, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5274, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5370, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5462, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6166, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6292, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6419, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6542, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6694, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 6832, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7051, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7120, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7191, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7254, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7335, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7406, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 7485, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 24, + "value": "\".AdDataRefreshResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 9, + "value": "\"ad_data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2678, + "length": 17, + "value": "\"ad_data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2702, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2722, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2765, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2795, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "StringLiteral", + "offset": 2811, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3242, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3324, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3413, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3502, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3596, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4222, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4308, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4436, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4574, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4685, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4951, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5083, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5191, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 5209, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1536, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2350, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2588, + "length": 24, + "value": "\".AdPlayerConfigRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2681, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2701, + "length": 21, + "value": "\"configuration_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2729, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2749, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2770, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2790, + "length": 17, + "value": "\"webview_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2814, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "StringLiteral", + "offset": 2834, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3285, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3379, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3467, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3566, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4310, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4458, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 4576, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4927, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5008, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5069, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 5087, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3077, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3316, + "length": 25, + "value": "\".AdPlayerConfigResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3410, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3430, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3453, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3473, + "length": 26, + "value": "\"impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3506, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3526, + "length": 34, + "value": "\"impression_configuration_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3567, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3587, + "length": 23, + "value": "\"webview_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3617, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3637, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3667, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "StringLiteral", + "offset": 3683, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4114, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4203, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4302, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4408, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4507, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4601, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5203, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5351, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5406, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5509, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5635, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5777, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5888, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6190, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6285, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6362, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6433, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6480, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6559, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1193, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1224, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1367, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1398, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2004, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2029, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 5776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 7996, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8159, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8175, + "length": 29, + "value": "\"AD_REQUEST_TYPE_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8211, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8227, + "length": 28, + "value": "\"AD_REQUEST_TYPE_FULLSCREEN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8262, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8278, + "length": 24, + "value": "\"AD_REQUEST_TYPE_BANNER\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8517, + "length": 13, + "value": "\".BannerSize\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8599, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8629, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 8645, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9077, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9158, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9442, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9473, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9552, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9776, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9837, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 9855, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10071, + "length": 12, + "value": "\".AdRequest\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10152, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10172, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10197, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10217, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10244, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10264, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10292, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10312, + "length": 16, + "value": "\"campaign_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10335, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10355, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10389, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10409, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10430, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10450, + "length": 34, + "value": "\"request_impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10491, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10511, + "length": 13, + "value": "\"scar_signal\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10531, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10551, + "length": 17, + "value": "\"webview_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10575, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10592, + "length": 5, + "value": "\"tcf\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10604, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10625, + "length": 17, + "value": "\"ad_request_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10649, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "StringLiteral", + "offset": 10670, + "length": 13, + "value": "\"banner_size\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 11089, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13165, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13265, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13366, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13468, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13566, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13672, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13767, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13879, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13972, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14069, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14156, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14252, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 14955, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15091, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15228, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15361, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15529, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15670, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 15734, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15847, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15985, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16113, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16234, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16365, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16496, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 16958, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17044, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17312, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17576, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17718, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17872, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17894, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 17942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 18009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 18027, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1530, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3413, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3640, + "length": 13, + "value": "\".AdResponse\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3722, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 16, + "value": "\"tracking_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3765, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 26, + "value": "\"impression_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3818, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3838, + "length": 34, + "value": "\"impression_configuration_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3879, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 23, + "value": "\"webview_configuration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3929, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3949, + "length": 23, + "value": "\"ad_data_refresh_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 3979, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 3999, + "length": 9, + "value": "\"ad_data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 4035, + "length": 17, + "value": "\"ad_data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4059, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "StringLiteral", + "offset": 4075, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4694, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4800, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4899, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 4993, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5075, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5164, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5914, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5969, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6072, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6198, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6340, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6454, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6578, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6689, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6886, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 6967, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7062, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7210, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7257, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7318, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7426, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 7444, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 1143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 1169, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1509, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1736, + "length": 13, + "value": "\".AllowedPii\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1834, + "length": 6, + "value": "\"idfa\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "StringLiteral", + "offset": 1863, + "length": 6, + "value": "\"idfv\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2293, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2372, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2574, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2654, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2763, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2938, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 2981, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3042, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3060, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 1188, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "Array", + "offset": 3176, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "Array", + "offset": 3277, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3667, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3892, + "length": 11, + "value": "\".Campaign\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 3972, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 14, + "value": "\"data_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4013, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4029, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4042, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4062, + "length": 14, + "value": "\"placement_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4083, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4103, + "length": 27, + "value": "\"impression_opportunity_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4137, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4157, + "length": 16, + "value": "\"load_timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4180, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 4200, + "length": 16, + "value": "\"show_timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4640, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4727, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4807, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4895, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 4994, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5688, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 5923, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6071, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6190, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 6313, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6870, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 6888, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7108, + "length": 16, + "value": "\".CampaignState\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7193, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7213, + "length": 18, + "value": "\"loaded_campaigns\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7238, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "StringLiteral", + "offset": 7258, + "length": 17, + "value": "\"shown_campaigns\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7699, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 7792, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 8112, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "IntegerLiteral", + "offset": 8244, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8510, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8571, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "kind": "BooleanLiteral", + "offset": 8589, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1151, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1183, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1379, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1403, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2469, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2496, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2522, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2546, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2692, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2719, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2769, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 2799, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 3526, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 3773, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7193, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7351, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/WebView\/DataModel\/WebViewRequestMessage.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 98, - "length": 7, - "value": "\"ERROR\"" + "offset": 7367, + "length": 22, + "value": "\"PLATFORM_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/Messages\/WebViewRequestMessageBase.swift", - "kind": "StringLiteral", - "offset": 98, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7396, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 206, - "length": 16, - "value": "\"USRVApiStorage\"" + "offset": 7412, + "length": 18, + "value": "\"PLATFORM_ANDROID\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7437, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 31, - "length": 25, - "value": "\"UnityAds.WebViewStorageApiReceiver\"" + "offset": 7453, + "length": 14, + "value": "\"PLATFORM_IOS\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2466, + "offset": 7622, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7638, + "length": 32, + "value": "\"MEDIATION_PROVIDER_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Receivers\/WebViewStorageApiReceiver.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2549, + "offset": 7677, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 115, - "length": 51, - "value": "\"\"" + "offset": 7693, + "length": 27, + "value": "\"MEDIATION_PROVIDER_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/AdObjectBuilder\/WebViewURLBuilder.swift", - "kind": "StringLiteral", - "offset": 137, + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7727, "length": 1, - "value": "\"?platform=ios&mode=ad-viewer\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/AdPlayer\/WebView\/AdViewerMode\/Handlers\/WebViewUrlOpener.swift", - "kind": "Dictionary", - "offset": 801, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 7743, + "length": 26, + "value": "\"MEDIATION_PROVIDER_ADMOB\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", - "kind": "StringLiteral", - "offset": 1064, - "length": 4, - "value": "\"CN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7776, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 1106, - "length": 5, - "value": "\"CHN\"" + "offset": 7792, + "length": 24, + "value": "\"MEDIATION_PROVIDER_MAX\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Core\/Device\/WorldZoneReader.swift", - "kind": "Array", - "offset": 1145, - "length": 81, - "value": "[\"Asia\/Kashgar\", \"Asia\/Urumqi\", \"Asia\/Chongqing\", \"Asia\/Shanghai\", \"Asia\/Harbin\"]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7823, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4044, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 7839, + "length": 30, + "value": "\"MEDIATION_PROVIDER_LEVELPLAY\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4273, - "length": 23, - "value": "\".AdDataRefreshRequest\"" + "offset": 8084, + "length": 13, + "value": "\".ClientInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4365, + "offset": 8166, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4385, - "length": 18, - "value": "\"session_counters\"" + "offset": 8186, + "length": 13, + "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4410, + "offset": 8206, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4430, - "length": 20, - "value": "\"static_device_info\"" + "offset": 8226, + "length": 18, + "value": "\"sdk_version_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4457, + "offset": 8251, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4477, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 8271, + "length": 9, + "value": "\"game_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4505, + "offset": 8287, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4525, - "length": 16, - "value": "\"campaign_state\"" + "offset": 8303, + "length": 6, + "value": "\"test\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4548, + "offset": 8316, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4568, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 8332, + "length": 10, + "value": "\"platform\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4602, + "offset": 8349, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "StringLiteral", - "offset": 4622, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 8369, + "length": 20, + "value": "\"mediation_provider\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5069, + "offset": 8396, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 5163, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8416, + "length": 23, + "value": "\"custom_mediation_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5258, + "offset": 8446, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 19, + "value": "\"mediation_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5354, + "offset": 8492, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8512, + "length": 22, + "value": "\"omid_partner_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5446, - "length": 1, - "value": "5" + "offset": 8541, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8562, + "length": 14, + "value": "\"omid_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5545, - "length": 1, - "value": "6" + "offset": 8583, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "StringLiteral", + "offset": 8604, + "length": 26, + "value": "\"sdk_development_platform\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6150, + "offset": 9054, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6276, + "offset": 9141, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6403, + "offset": 9232, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6526, + "offset": 9315, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6678, + "offset": 9394, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6816, + "offset": 9477, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7035, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7104, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7175, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7238, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9569, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7319, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9666, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7390, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9760, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7451, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9856, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 7469, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9946, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1308, + "offset": 10472, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2283, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2513, - "length": 24, - "value": "\".AdDataRefreshResponse\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2606, + "offset": 10556, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2626, - "length": 9, - "value": "\"ad_data\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2642, + "offset": 10687, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2662, - "length": 17, - "value": "\"ad_data_version\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2686, + "offset": 10802, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2706, - "length": 16, - "value": "\"tracking_token\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 10831, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2729, + "offset": 10911, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2749, - "length": 23, - "value": "\"ad_data_refresh_token\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2779, + "offset": 11035, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "StringLiteral", - "offset": 2795, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3226, + "offset": 11177, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3308, + "offset": 11301, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3397, + "offset": 11426, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3486, + "offset": 11553, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3580, - "length": 1, - "value": "5" + "offset": 11673, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4168, - "length": 1, - "value": "1" + "offset": 11805, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4206, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 11997, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4292, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4420, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12107, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4558, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12150, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4669, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12201, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4874, + "offset": 12270, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4935, + "offset": 12345, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4996, + "offset": 12414, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5067, + "offset": 12487, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5114, + "offset": 12546, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5175, + "offset": 12627, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_data_refresh_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", "kind": "BooleanLiteral", - "offset": 5193, + "offset": 12688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 12706, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 1528, + "offset": 1451, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2342, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2572, - "length": 24, - "value": "\".AdPlayerConfigRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2665, + "offset": 1483, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2685, - "length": 21, - "value": "\"configuration_token\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2713, + "offset": 1510, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 14, - "value": "\"placement_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1544, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2754, + "offset": 1576, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2774, - "length": 17, - "value": "\"webview_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1611, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 2798, + "offset": 1643, "length": 1, - "value": "4" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "StringLiteral", - "offset": 2818, - "length": 27, - "value": "\"impression_opportunity_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 1796, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3269, + "offset": 1823, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3363, + "offset": 1857, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3451, + "offset": 1889, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3550, + "offset": 1924, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 1956, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4294, + "offset": 1993, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4442, + "offset": 2692, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4560, + "offset": 2724, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4789, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4846, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4911, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2916, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4992, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 2942, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 5053, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "Array", + "offset": 4859, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 5392, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 1484, + "offset": 5562, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", - "kind": "StringLiteral", - "offset": 3069, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3300, - "length": 25, - "value": "\".AdPlayerConfigResponse\"" + "offset": 5578, + "length": 36, + "value": "\"DEVELOPER_CONSENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3394, + "offset": 5621, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3414, - "length": 16, - "value": "\"tracking_token\"" + "offset": 5637, + "length": 31, + "value": "\"DEVELOPER_CONSENT_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3437, + "offset": 5675, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3457, - "length": 26, - "value": "\"impression_configuration\"" + "offset": 5691, + "length": 39, + "value": "\"DEVELOPER_CONSENT_TYPE_NON_BEHAVIORAL\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3490, + "offset": 5737, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3510, - "length": 34, - "value": "\"impression_configuration_version\"" + "offset": 5753, + "length": 37, + "value": "\"DEVELOPER_CONSENT_TYPE_PIPL_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3551, + "offset": 5797, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3571, - "length": 23, - "value": "\"webview_configuration\"" + "offset": 5813, + "length": 40, + "value": "\"DEVELOPER_CONSENT_TYPE_PRIVACY_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3601, + "offset": 5860, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3621, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 5876, + "length": 37, + "value": "\"DEVELOPER_CONSENT_TYPE_GDPR_CONSENT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 3651, + "offset": 5920, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "StringLiteral", - "offset": 3667, - "length": 7, - "value": "\"error\"" + "offset": 5936, + "length": 44, + "value": "\"DEVELOPER_CONSENT_TYPE_USER_OVER_AGE_LIMIT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4098, + "offset": 6140, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 4187, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6156, + "length": 38, + "value": "\"DEVELOPER_CONSENT_CHOICE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4286, + "offset": 6201, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6217, + "length": 31, + "value": "\"DEVELOPER_CONSENT_CHOICE_TRUE\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4392, + "offset": 6255, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6271, + "length": 32, + "value": "\"DEVELOPER_CONSENT_CHOICE_FALSE\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6530, + "length": 25, + "value": "\".DeveloperConsentOption\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4491, + "offset": 6624, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6640, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 4585, + "offset": 6653, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 13, + "value": "\"custom_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5187, + "offset": 6693, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 6709, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5335, + "offset": 7140, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5390, + "offset": 7219, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5493, + "offset": 7307, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5619, + "offset": 7893, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5761, + "offset": 8008, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "IntegerLiteral", - "offset": 5872, + "offset": 8130, "length": 1, - "value": "6" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6093, + "offset": 8329, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6174, + "offset": 8386, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6269, + "offset": 8431, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6346, + "offset": 8492, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6417, - "length": 5, - "value": "false" + "offset": 8510, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 8733, + "length": 19, + "value": "\".DeveloperConsent\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 8821, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "StringLiteral", + "offset": 8837, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 9270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "kind": "IntegerLiteral", + "offset": 9567, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6464, + "offset": 9760, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6525, + "offset": 9821, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_player_config_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", "kind": "BooleanLiteral", - "offset": 6543, + "offset": 9839, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1153, + "offset": 1156, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1185, + "offset": 1188, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1216, + "offset": 1331, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1359, + "offset": 1358, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1390, + "offset": 1928, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1417, + "offset": 1960, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1996, + "offset": 2103, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2021, + "offset": 2130, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5768, + "offset": 2847, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 7988, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2879, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8143, + "offset": 2905, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8159, - "length": 29, - "value": "\"AD_REQUEST_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2930, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8195, + "offset": 2958, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8211, - "length": 28, - "value": "\"AD_REQUEST_TYPE_FULLSCREEN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2984, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8246, + "offset": 3127, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8262, - "length": 24, - "value": "\"AD_REQUEST_TYPE_BANNER\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3153, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 13, - "value": "\".BannerSize\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3178, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8583, + "offset": 3206, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8599, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3232, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 8613, + "offset": 3259, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 8629, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3912, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9061, + "offset": 3944, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9142, + "offset": 3975, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9348, + "offset": 4118, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9426, + "offset": 4149, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9457, + "offset": 4176, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Array", + "offset": 4883, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 9536, + "offset": 5742, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9713, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8315, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9760, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Dictionary", + "offset": 8714, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9821, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Dictionary", + "offset": 8762, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 9839, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 8918, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "StringLiteral", - "offset": 10055, - "length": 12, - "value": "\".AdRequest\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 10420, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 10136, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "Array", + "offset": 11530, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10156, - "length": 18, - "value": "\"session_counters\"" + "offset": 12302, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10181, + "offset": 12471, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10201, - "length": 20, - "value": "\"static_device_info\"" + "offset": 12487, + "length": 35, + "value": "\"DIAGNOSTIC_EVENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10228, + "offset": 12529, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10248, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 12545, + "length": 30, + "value": "\"DIAGNOSTIC_EVENT_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10276, + "offset": 12730, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10296, - "length": 16, - "value": "\"campaign_state\"" + "offset": 12746, + "length": 33, + "value": "\"DIAGNOSTIC_TAG_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10319, + "offset": 12786, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10339, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 12802, + "length": 28, + "value": "\"DIAGNOSTIC_TAG_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10373, + "offset": 12992, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10393, - "length": 14, - "value": "\"placement_id\"" + "offset": 13008, + "length": 40, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10414, + "offset": 13055, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10434, + "offset": 13071, "length": 34, - "value": "\"request_impression_configuration\"" + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_DEBUG\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10475, + "offset": 13112, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10495, - "length": 13, - "value": "\"scar_signal\"" + "offset": 13128, + "length": 33, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_INFO\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10515, + "offset": 13168, "length": 1, - "value": "9" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10535, - "length": 17, - "value": "\"webview_version\"" + "offset": 13184, + "length": 36, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_WARNING\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10559, - "length": 2, - "value": "10" + "offset": 13227, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10576, - "length": 5, - "value": "\"tcf\"" + "offset": 13243, + "length": 34, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10588, - "length": 2, - "value": "11" + "offset": 13284, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10609, - "length": 17, - "value": "\"ad_request_type\"" + "offset": 13300, + "length": 35, + "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ALWAYS\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 10633, - "length": 2, - "value": "12" + "offset": 13489, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 10654, - "length": 13, - "value": "\"banner_size\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 11073, - "length": 5, - "value": "false" + "offset": 13505, + "length": 32, + "value": "\"DIAGNOSTIC_AD_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 12696, + "offset": 13544, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13560, + "length": 31, + "value": "\"DIAGNOSTIC_AD_TYPE_FULLSCREEN\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 12796, + "offset": 13598, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12897, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13614, + "length": 27, + "value": "\"DIAGNOSTIC_AD_TYPE_BANNER\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12999, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13859, + "length": 16, + "value": "\".DiagnosticTag\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13097, + "offset": 13944, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13203, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 13964, + "length": 10, + "value": "\"tag_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13298, + "offset": 13981, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13410, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14001, + "length": 17, + "value": "\"custom_tag_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13503, + "offset": 14025, "length": 1, - "value": "9" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13600, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14045, + "length": 14, + "value": "\"string_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13687, - "length": 2, - "value": "11" + "offset": 14066, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13783, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 14086, + "length": 11, + "value": "\"int_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14486, + "offset": 14521, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14622, + "offset": 14603, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14759, + "offset": 14694, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14892, + "offset": 14946, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15060, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15201, + "offset": 15696, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15265, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15378, + "offset": 15814, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15516, + "offset": 16029, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15644, + "offset": 16211, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15765, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 15896, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 16027, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16489, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16575, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16663, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16743, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16843, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 16919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17033, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17107, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17189, + "offset": 16426, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17249, + "offset": 16489, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17329, + "offset": 16534, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17403, + "offset": 16595, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 17425, + "offset": 16613, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17473, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16835, + "length": 18, + "value": "\".DiagnosticEvent\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17540, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 16922, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 17558, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16942, + "length": 12, + "value": "\"event_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1522, + "offset": 16961, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 16981, + "length": 19, + "value": "\"custom_event_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2542, + "offset": 17007, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3405, + "offset": 17023, "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", - "kind": "StringLiteral", - "offset": 3624, - "length": 13, - "value": "\".AdResponse\"" + "value": "\"timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3706, + "offset": 17042, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3726, - "length": 16, - "value": "\"tracking_token\"" + "offset": 17062, + "length": 12, + "value": "\"time_value\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3749, + "offset": 17081, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3769, - "length": 26, - "value": "\"impression_configuration\"" + "offset": 17101, + "length": 13, + "value": "\"string_tags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3802, + "offset": 17121, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3822, - "length": 34, - "value": "\"impression_configuration_version\"" + "offset": 17141, + "length": 10, + "value": "\"int_tags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3863, + "offset": 17158, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3883, - "length": 23, - "value": "\"webview_configuration\"" + "offset": 17178, + "length": 10, + "value": "\"event_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3913, + "offset": 17195, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3933, - "length": 23, - "value": "\"ad_data_refresh_token\"" + "offset": 17215, + "length": 27, + "value": "\"impression_opportunity_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3963, + "offset": 17249, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 3983, - "length": 9, - "value": "\"ad_data\"" + "offset": 17269, + "length": 14, + "value": "\"placement_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3999, - "length": 1, - "value": "7" + "offset": 17290, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 4019, - "length": 17, - "value": "\"ad_data_version\"" + "offset": 17311, + "length": 9, + "value": "\"ad_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4043, - "length": 1, - "value": "8" + "offset": 17327, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 4059, - "length": 7, - "value": "\"error\"" + "offset": 17348, + "length": 19, + "value": "\"is_header_bidding\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4490, + "offset": 17791, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4579, + "offset": 17875, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4678, + "offset": 17968, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4784, + "offset": 18057, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4883, + "offset": 18144, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4977, + "offset": 18338, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5059, + "offset": 18529, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5148, + "offset": 18612, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5750, + "offset": 18712, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 18801, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 18884, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5898, + "offset": 19492, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5953, + "offset": 19612, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6056, + "offset": 19732, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6182, + "offset": 19850, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6324, + "offset": 20084, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6438, + "offset": 20308, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6476, + "offset": 20340, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6562, + "offset": 20420, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 6673, + "offset": 20547, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20667, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20780, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20903, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 6870, + "offset": 21103, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 6951, + "offset": 21170, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7046, + "offset": 21227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7123, + "offset": 21282, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7194, + "offset": 21337, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7241, + "offset": 21386, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7302, + "offset": 21435, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7349, + "offset": 21518, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7410, + "offset": 21577, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/ad_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 7428, - "length": 4, - "value": "true" + "offset": 21626, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 1135, + "offset": 21693, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 1161, + "offset": 21754, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", - "kind": "StringLiteral", - "offset": 1501, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21772, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 1720, - "length": 13, - "value": "\".AllowedPii\"" + "offset": 22001, + "length": 25, + "value": "\".DiagnosticEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 22095, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "StringLiteral", - "offset": 1818, - "length": 6, - "value": "\"idfa\"" + "offset": 22111, + "length": 7, + "value": "\"batch\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1831, + "offset": 22542, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22833, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23095, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23113, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1199, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1224, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", - "kind": "StringLiteral", - "offset": 1847, - "length": 6, - "value": "\"idfv\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 1369, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2277, + "offset": 1394, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2356, + "offset": 1423, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 3595, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 4077, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2558, + "offset": 4550, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2638, + "offset": 5461, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2667, + "offset": 5969, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 6502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2747, + "offset": 7022, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2922, + "offset": 8450, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2965, + "offset": 8892, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 9829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10333, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3026, + "offset": 12791, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/allowed_pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 13269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3044, - "length": 4, - "value": "true" + "offset": 13713, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1180, + "offset": 14209, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 14757, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 15194, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 15635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16463, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 16929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 17439, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 17906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 18415, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 19651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 21045, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "Array", - "offset": 3168, + "offset": 21507, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "Array", - "offset": 3269, + "offset": 21542, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3659, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 21615, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3876, - "length": 11, - "value": "\".Campaign\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 22420, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3956, + "offset": 22796, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "StringLiteral", - "offset": 3976, - "length": 14, - "value": "\"data_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 23262, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3997, + "offset": 23755, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4013, - "length": 6, - "value": "\"data\"" + "offset": 25307, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4026, + "offset": 25471, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4046, - "length": 14, - "value": "\"placement_id\"" + "offset": 25487, + "length": 29, + "value": "\"CONNECTION_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4067, + "offset": 25523, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4087, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 25539, + "length": 22, + "value": "\"CONNECTION_TYPE_WIFI\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4121, + "offset": 25568, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4141, - "length": 16, - "value": "\"load_timestamp\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 4164, - "length": 1, - "value": "6" + "offset": 25584, + "length": 26, + "value": "\"CONNECTION_TYPE_CELLULAR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 4184, - "length": 16, - "value": "\"show_timestamp\"" + "offset": 25832, + "length": 20, + "value": "\".DynamicDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4624, + "offset": 25921, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 25937, + "length": 10, + "value": "\"language\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4711, + "offset": 25954, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 25974, + "length": 18, + "value": "\"network_operator\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4791, + "offset": 25999, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 4879, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26019, + "length": 23, + "value": "\"network_operator_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4978, + "offset": 26049, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5070, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 17, + "value": "\"free_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5588, + "offset": 26093, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5672, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26113, + "length": 17, + "value": "\"free_ram_memory\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5782, + "offset": 26137, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 5907, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26157, + "length": 15, + "value": "\"wired_headset\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6055, + "offset": 26179, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 6174, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26199, + "length": 11, + "value": "\"time_zone\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6297, + "offset": 26217, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6486, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26237, + "length": 18, + "value": "\"time_zone_offset\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6529, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26262, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6586, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26283, + "length": 18, + "value": "\"limited_tracking\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6667, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26308, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6730, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26329, + "length": 26, + "value": "\"limited_open_ad_tracking\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6793, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26362, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6854, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26383, + "length": 15, + "value": "\"battery_level\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 6872, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26405, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7092, + "offset": 26426, "length": 16, - "value": "\".CampaignState\"" + "value": "\"battery_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7177, - "length": 1, - "value": "1" + "offset": 26449, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7197, - "length": 18, - "value": "\"loaded_campaigns\"" + "offset": 26470, + "length": 17, + "value": "\"connection_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7222, - "length": 1, - "value": "2" + "offset": 26494, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 7242, - "length": 17, - "value": "\"shown_campaigns\"" + "offset": 26515, + "length": 12, + "value": "\"app_active\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7683, - "length": 1, - "value": "1" + "offset": 26534, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 7776, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26555, + "length": 16, + "value": "\"low_power_mode\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8096, - "length": 1, - "value": "1" + "offset": 26578, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "IntegerLiteral", - "offset": 8228, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26599, + "length": 9, + "value": "\"user_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8431, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26615, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8494, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26636, + "length": 14, + "value": "\"screen_width\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8555, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 26657, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/campaign_state.pb.swift", - "kind": "BooleanLiteral", - "offset": 8573, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26678, + "length": 15, + "value": "\"screen_height\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1143, - "length": 1, - "value": "0" + "offset": 26700, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1175, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26717, + "length": 9, + "value": "\"android\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1203, - "length": 1, - "value": "2" + "offset": 26733, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1343, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 26750, + "length": 5, + "value": "\"ios\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1371, + "offset": 29695, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1395, + "offset": 29787, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2429, + "offset": 29886, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2461, + "offset": 29989, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2488, + "offset": 30085, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2514, + "offset": 30181, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2538, + "offset": 30275, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2684, + "offset": 30367, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2711, - "length": 1, - "value": "1" + "offset": 30464, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2737, - "length": 1, - "value": "2" + "offset": 30562, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2761, - "length": 1, - "value": "3" + "offset": 30666, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 2791, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 30757, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 30847, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3518, - "length": 1, - "value": "0" + "offset": 31161, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3765, + "offset": 31248, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5570, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 31338, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5720, - "length": 1, - "value": "0" + "offset": 31644, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5736, - "length": 22, - "value": "\"PLATFORM_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31741, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5765, - "length": 1, - "value": "1" + "offset": 31838, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 18, - "value": "\"PLATFORM_ANDROID\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31935, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5806, - "length": 1, - "value": "2" + "offset": 32027, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 5822, - "length": 14, - "value": "\"PLATFORM_IOS\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32122, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5991, - "length": 1, - "value": "0" + "offset": 32213, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6007, - "length": 32, - "value": "\"MEDIATION_PROVIDER_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32309, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6046, + "offset": 33005, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6062, - "length": 27, - "value": "\"MEDIATION_PROVIDER_CUSTOM\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6096, + "offset": 33139, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6112, - "length": 26, - "value": "\"MEDIATION_PROVIDER_ADMOB\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6145, + "offset": 33277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6161, - "length": 24, - "value": "\"MEDIATION_PROVIDER_MAX\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6192, + "offset": 33408, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6208, - "length": 30, - "value": "\"MEDIATION_PROVIDER_LEVELPLAY\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6453, - "length": 13, - "value": "\".ClientInfo\"" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6535, + "offset": 33539, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6555, - "length": 13, - "value": "\"sdk_version\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6575, + "offset": 33668, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6595, - "length": 18, - "value": "\"sdk_version_name\"" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6620, + "offset": 33795, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6640, - "length": 9, - "value": "\"game_id\"" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6656, + "offset": 33927, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6672, - "length": 6, - "value": "\"test\"" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6685, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6701, - "length": 10, - "value": "\"platform\"" + "offset": 34059, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6718, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6738, - "length": 20, - "value": "\"mediation_provider\"" + "offset": 34198, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6765, - "length": 1, - "value": "7" + "offset": 34449, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6785, - "length": 23, - "value": "\"custom_mediation_name\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 34648, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6815, - "length": 1, - "value": "8" + "offset": 34808, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "StringLiteral", - "offset": 6835, - "length": 19, - "value": "\"mediation_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 34940, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7278, - "length": 1, - "value": "1" + "offset": 35072, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7365, - "length": 1, - "value": "2" + "offset": 35199, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7456, - "length": 1, - "value": "3" + "offset": 35329, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7539, - "length": 1, - "value": "4" + "offset": 35455, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7618, - "length": 1, - "value": "5" + "offset": 35586, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7701, - "length": 1, - "value": "6" + "offset": 35718, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 7793, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36182, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 7890, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36266, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8409, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36358, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8493, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36438, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8624, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36518, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8739, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36596, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8768, + "offset": 36666, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8848, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36748, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 8972, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36832, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9114, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 36928, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9238, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37006, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 9363, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37086, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9554, + "offset": 37168, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9617, + "offset": 37240, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9664, + "offset": 37318, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9707, + "offset": 37384, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9758, + "offset": 37460, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9827, + "offset": 37538, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9902, + "offset": 37624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 9971, + "offset": 37646, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 37694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10032, + "offset": 37761, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/client_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10050, + "offset": 37779, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1443, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38035, + "length": 10, + "value": "\".Android\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1475, + "offset": 38114, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38134, + "length": 19, + "value": "\"network_connected\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1502, + "offset": 38160, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38180, + "length": 14, + "value": "\"network_type\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1536, + "offset": 38201, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38221, + "length": 17, + "value": "\"network_metered\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1568, + "offset": 38245, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1603, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38265, + "length": 32, + "value": "\"telephony_manager_network_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1635, + "offset": 38304, "length": 1, - "value": "6" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1788, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38324, + "length": 13, + "value": "\"adb_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1815, + "offset": 38344, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1849, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38364, + "length": 15, + "value": "\"usb_connected\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1881, + "offset": 38386, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1916, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38402, + "length": 8, + "value": "\"volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1948, + "offset": 38417, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 1985, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38437, + "length": 12, + "value": "\"max_volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2684, + "offset": 38456, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2716, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38476, + "length": 16, + "value": "\"device_up_time\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2741, - "length": 1, - "value": "2" + "offset": 38499, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2883, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38520, + "length": 25, + "value": "\"device_elapsed_realtime\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2908, - "length": 1, - "value": "1" + "offset": 38552, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 38573, + "length": 15, + "value": "\"airplane_mode\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "Array", - "offset": 4851, + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 38595, "length": 2, - "value": "[]" + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5384, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 38616, + "length": 26, + "value": "\"stay_on_while_plugged_in\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5546, - "length": 1, - "value": "0" + "offset": 38649, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5562, - "length": 36, - "value": "\"DEVELOPER_CONSENT_TYPE_UNSPECIFIED\"" + "offset": 38670, + "length": 17, + "value": "\"sd_card_present\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5605, - "length": 1, - "value": "1" + "offset": 38694, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5621, + "offset": 38715, "length": 31, - "value": "\"DEVELOPER_CONSENT_TYPE_CUSTOM\"" + "value": "\"network_capability_transports\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5659, - "length": 1, - "value": "2" + "offset": 38753, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 5675, - "length": 39, - "value": "\"DEVELOPER_CONSENT_TYPE_NON_BEHAVIORAL\"" + "offset": 38774, + "length": 15, + "value": "\"charging_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5721, + "offset": 41463, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5737, - "length": 37, - "value": "\"DEVELOPER_CONSENT_TYPE_PIPL_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41561, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5781, + "offset": 41655, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5797, - "length": 40, - "value": "\"DEVELOPER_CONSENT_TYPE_PRIVACY_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41751, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5844, + "offset": 41861, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5860, - "length": 37, - "value": "\"DEVELOPER_CONSENT_TYPE_GDPR_CONSENT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 41953, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 5904, + "offset": 42047, "length": 1, - "value": "6" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 5920, - "length": 44, - "value": "\"DEVELOPER_CONSENT_TYPE_USER_OVER_AGE_LIMIT\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42137, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6124, + "offset": 42230, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 38, - "value": "\"DEVELOPER_CONSENT_CHOICE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42325, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6185, - "length": 1, - "value": "1" + "offset": 42430, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 31, - "value": "\"DEVELOPER_CONSENT_CHOICE_TRUE\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42525, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6239, - "length": 1, - "value": "2" + "offset": 42628, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6255, - "length": 32, - "value": "\"DEVELOPER_CONSENT_CHOICE_FALSE\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42724, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6514, - "length": 25, - "value": "\".DeveloperConsentOption\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 42837, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6608, + "offset": 43538, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6624, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6637, + "offset": 43667, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6657, - "length": 13, - "value": "\"custom_type\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 6677, + "offset": 43798, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "StringLiteral", - "offset": 6693, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 43943, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7124, + "offset": 44070, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7203, + "offset": 44199, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7291, + "offset": 44324, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7877, + "offset": 44452, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7992, + "offset": 44582, "length": 1, - "value": "2" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8114, - "length": 1, - "value": "3" + "offset": 44721, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 44851, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 44989, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45120, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45268, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 45399, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8313, + "offset": 45895, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8370, + "offset": 45971, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8415, + "offset": 46053, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8476, + "offset": 46161, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46235, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46313, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46379, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46451, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46625, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46703, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46877, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 46985, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47063, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47085, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 8494, + "offset": 47133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47200, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 47218, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47470, + "length": 6, + "value": "\".Ios\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47545, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47565, + "length": 33, + "value": "\"current_radio_access_technology\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47605, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 8717, - "length": 19, - "value": "\".DeveloperConsent\"" + "offset": 47625, + "length": 28, + "value": "\"network_reachability_flags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 8805, + "offset": 47660, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "StringLiteral", - "offset": 8821, - "length": 9, - "value": "\"options\"" + "offset": 47680, + "length": 20, + "value": "\"nw_path_interfaces\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 9254, + "offset": 47707, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47727, + "length": 13, + "value": "\"locale_list\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 9551, + "offset": 47747, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9744, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47767, + "length": 18, + "value": "\"current_ui_theme\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9805, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 47792, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/developer_consent.pb.swift", - "kind": "BooleanLiteral", - "offset": 9823, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47812, + "length": 13, + "value": "\"device_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1148, + "offset": 47832, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1180, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47848, + "length": 8, + "value": "\"volume\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1323, + "offset": 47863, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47883, + "length": 22, + "value": "\"tracking_auth_status\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1350, + "offset": 47912, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47932, + "length": 27, + "value": "\"device_up_time_with_sleep\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1920, - "length": 1, - "value": "0" + "offset": 47966, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 47987, + "length": 30, + "value": "\"device_up_time_without_sleep\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1952, + "offset": 48441, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2095, + "offset": 48547, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2122, + "offset": 48649, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2839, + "offset": 48742, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2871, + "offset": 48829, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2897, + "offset": 48920, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2922, + "offset": 49008, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2950, + "offset": 49092, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2976, + "offset": 49187, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3119, - "length": 1, - "value": "0" + "offset": 49285, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3145, + "offset": 49910, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3170, + "offset": 50043, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 50182, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3224, + "offset": 50305, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3251, + "offset": 50423, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3904, + "offset": 50542, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3936, + "offset": 50657, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3967, + "offset": 50783, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4110, + "offset": 50912, "length": 1, - "value": "0" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 4141, - "length": 1, - "value": "1" + "offset": 51044, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 4168, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51296, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Array", - "offset": 4875, - "length": 2, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51381, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 5734, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51448, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 8307, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51503, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Dictionary", - "offset": 8706, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51568, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Dictionary", - "offset": 8754, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51625, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 8910, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51674, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 10412, + "offset": 51747, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "Array", - "offset": 11522, - "length": 2, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51826, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12294, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51911, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12455, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51972, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12471, - "length": 35, - "value": "\"DIAGNOSTIC_EVENT_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 51990, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 12513, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "StringLiteral", - "offset": 12529, - "length": 30, - "value": "\"DIAGNOSTIC_EVENT_TYPE_CUSTOM\"" + "offset": 1996, + "length": 8, + "value": "\".Error\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12714, + "offset": 2073, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "StringLiteral", - "offset": 12730, - "length": 33, - "value": "\"DIAGNOSTIC_TAG_TYPE_UNSPECIFIED\"" + "offset": 2093, + "length": 12, + "value": "\"error_text\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12770, + "offset": 2529, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12786, - "length": 28, - "value": "\"DIAGNOSTIC_TAG_TYPE_CUSTOM\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", "kind": "IntegerLiteral", - "offset": 12976, + "offset": 2830, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 12992, - "length": 40, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3005, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13039, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3066, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13055, - "length": 34, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_DEBUG\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "kind": "BooleanLiteral", + "offset": 3084, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13096, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 2444, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13112, - "length": 33, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_INFO\"" + "offset": 2681, + "length": 23, + "value": "\".GetTokenEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13152, + "offset": 2773, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13168, - "length": 36, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_WARNING\"" + "offset": 2789, + "length": 10, + "value": "\"rewarded\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13211, + "offset": 2806, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "StringLiteral", - "offset": 13227, - "length": 34, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ERROR\"" + "offset": 2822, + "length": 14, + "value": "\"interstitial\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13268, + "offset": 3260, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13284, - "length": 35, - "value": "\"DIAGNOSTIC_EVENTS_SEVERITY_ALWAYS\"" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13473, + "offset": 3345, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13489, - "length": 32, - "value": "\"DIAGNOSTIC_AD_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 3936, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13528, + "offset": 4056, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 13544, - "length": 31, - "value": "\"DIAGNOSTIC_AD_TYPE_FULLSCREEN\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4265, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4326, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4387, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 4405, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13582, + "offset": 1506, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13598, - "length": 27, - "value": "\"DIAGNOSTIC_AD_TYPE_BANNER\"" + "offset": 1972, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13843, - "length": 16, - "value": "\".DiagnosticTag\"" + "offset": 2210, + "length": 24, + "value": "\".HeaderBiddingAdMarkup\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13928, + "offset": 2303, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13948, - "length": 10, - "value": "\"tag_type\"" + "offset": 2323, + "length": 9, + "value": "\"ad_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 13965, + "offset": 2339, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 13985, + "offset": 2359, "length": 17, - "value": "\"custom_tag_type\"" + "value": "\"ad_data_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14009, + "offset": 2383, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 14029, - "length": 14, - "value": "\"string_value\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 14050, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "StringLiteral", - "offset": 14070, - "length": 11, - "value": "\"int_value\"" + "offset": 2403, + "length": 21, + "value": "\"configuration_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14505, + "offset": 2848, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14587, + "offset": 2930, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14678, + "offset": 3019, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 14930, + "offset": 3321, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 15680, + "offset": 3359, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 15798, + "offset": 3445, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "IntegerLiteral", - "offset": 16013, + "offset": 3583, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 16195, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16410, + "offset": 3784, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16473, + "offset": 3845, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16518, + "offset": 3916, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16579, + "offset": 3977, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_ad_markup.pb.swift", "kind": "BooleanLiteral", - "offset": 16597, + "offset": 3995, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16819, - "length": 18, - "value": "\".DiagnosticEvent\"" + "offset": 5514, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "StringLiteral", + "offset": 5749, + "length": 21, + "value": "\".HeaderBiddingToken\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16906, + "offset": 5839, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16926, - "length": 12, - "value": "\"event_type\"" + "offset": 5859, + "length": 10, + "value": "\"token_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16945, + "offset": 5876, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 16965, - "length": 19, - "value": "\"custom_event_type\"" + "offset": 5896, + "length": 14, + "value": "\"token_number\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 16991, + "offset": 5917, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17007, - "length": 12, - "value": "\"timestamps\"" + "offset": 5937, + "length": 15, + "value": "\"session_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17026, + "offset": 5959, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17046, - "length": 12, - "value": "\"time_value\"" + "offset": 5979, + "length": 13, + "value": "\"client_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17065, + "offset": 5999, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17085, - "length": 13, - "value": "\"string_tags\"" + "offset": 6015, + "length": 12, + "value": "\"timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17105, + "offset": 6034, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17125, - "length": 10, - "value": "\"int_tags\"" + "offset": 6054, + "length": 18, + "value": "\"session_counters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17142, + "offset": 6079, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17162, - "length": 10, - "value": "\"event_id\"" + "offset": 6099, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17179, + "offset": 6126, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17199, - "length": 27, - "value": "\"impression_opportunity_id\"" + "offset": 6146, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17233, + "offset": 6174, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17253, - "length": 14, - "value": "\"placement_id\"" + "offset": 6190, + "length": 5, + "value": "\"pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17274, + "offset": 6202, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17295, - "length": 9, - "value": "\"ad_type\"" + "offset": 6223, + "length": 16, + "value": "\"campaign_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17311, + "offset": 6246, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "StringLiteral", - "offset": 17332, - "length": 19, - "value": "\"is_header_bidding\"" + "offset": 6263, + "length": 5, + "value": "\"tcf\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "IntegerLiteral", + "offset": 6374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17775, + "offset": 8527, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17859, + "offset": 8617, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 17952, + "offset": 8711, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18041, + "offset": 8806, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18128, + "offset": 8901, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18322, + "offset": 8996, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18513, + "offset": 9096, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18596, + "offset": 9197, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18696, + "offset": 9299, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18785, + "offset": 9387, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 18868, + "offset": 9486, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19476, + "offset": 10181, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", + "kind": "IntegerLiteral", + "offset": 10226, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19596, + "offset": 10317, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19716, + "offset": 10459, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 19834, + "offset": 10585, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20068, + "offset": 10715, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20292, + "offset": 10850, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 20324, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20404, + "offset": 10986, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20531, + "offset": 11123, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20651, + "offset": 11246, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20764, + "offset": 11379, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "IntegerLiteral", - "offset": 20887, + "offset": 11501, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 21087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21154, + "offset": 11965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21211, + "offset": 12041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21266, + "offset": 12119, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21321, + "offset": 12193, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21370, + "offset": 12267, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21419, + "offset": 12351, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21502, + "offset": 12437, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21561, + "offset": 12525, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21610, + "offset": 12585, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21677, + "offset": 12665, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21738, + "offset": 12725, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 21756, + "offset": 12747, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 21985, - "length": 25, - "value": "\".DiagnosticEventRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22079, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 22095, - "length": 7, - "value": "\"batch\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22526, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23018, + "offset": 12795, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23079, + "offset": 12862, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/diagnostic_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/header_bidding_token.pb.swift", "kind": "BooleanLiteral", - "offset": 23097, + "offset": 12880, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1191, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 2768, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1216, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3020, + "length": 38, + "value": "\".InitializationCompletedEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1361, + "offset": 3127, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 1386, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3147, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1415, + "offset": 3174, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 3194, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4069, + "offset": 3639, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 4542, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 5453, + "offset": 3734, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 5961, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 6494, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7014, + "offset": 4342, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7469, + "offset": 4469, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 8442, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 10874, + "offset": 4724, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 11310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 11712, + "offset": 4795, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 12166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 12672, + "offset": 4856, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 13067, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 13466, - "length": 1, - "value": "0" + "offset": 4874, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 13825, + "offset": 1506, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14210, + "offset": 1907, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 14634, + "offset": 1940, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16493, + "offset": 2016, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "Array", - "offset": 16955, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "Array", - "offset": 16990, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17063, + "offset": 2090, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17868, + "offset": 2122, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18244, + "offset": 2155, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19637, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 19793, - "length": 1, - "value": "0" + "offset": 8086, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19809, - "length": 29, - "value": "\"CONNECTION_TYPE_UNSPECIFIED\"" + "offset": 8327, + "length": 27, + "value": "\".InitializationDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19845, + "offset": 8423, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 19861, - "length": 22, - "value": "\"CONNECTION_TYPE_WIFI\"" + "offset": 8443, + "length": 11, + "value": "\"bundle_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19890, + "offset": 8461, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 26, - "value": "\"CONNECTION_TYPE_CELLULAR\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 20154, - "length": 20, - "value": "\".DynamicDeviceInfo\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 20243, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20259, - "length": 10, - "value": "\"language\"" + "offset": 8481, + "length": 13, + "value": "\"device_make\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20276, + "offset": 8501, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20296, - "length": 18, - "value": "\"network_operator\"" + "offset": 8521, + "length": 14, + "value": "\"device_model\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20321, + "offset": 8542, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20341, - "length": 23, - "value": "\"network_operator_name\"" + "offset": 8562, + "length": 12, + "value": "\"os_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20371, + "offset": 8581, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20391, - "length": 17, - "value": "\"free_disk_space\"" + "offset": 8601, + "length": 22, + "value": "\"tracking_auth_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20415, + "offset": 8630, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20435, - "length": 17, - "value": "\"free_ram_memory\"" + "offset": 8650, + "length": 18, + "value": "\"total_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20459, + "offset": 8675, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20479, - "length": 15, - "value": "\"wired_headset\"" + "offset": 8695, + "length": 18, + "value": "\"total_ram_memory\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20501, + "offset": 8720, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20521, - "length": 11, - "value": "\"time_zone\"" + "offset": 8740, + "length": 20, + "value": "\"hashed_device_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20539, + "offset": 8767, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20559, + "offset": 8787, "length": 18, - "value": "\"time_zone_offset\"" + "value": "\"current_ui_theme\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20584, + "offset": 8812, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20605, + "offset": 8833, "length": 18, - "value": "\"limited_tracking\"" + "value": "\"network_operator\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20630, + "offset": 8858, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 26, - "value": "\"limited_open_ad_tracking\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 20684, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20705, + "offset": 8879, "length": 15, "value": "\"battery_level\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20727, + "offset": 8901, "length": 2, - "value": "15" + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20748, + "offset": 8922, "length": 16, "value": "\"battery_status\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20771, + "offset": 8945, "length": 2, - "value": "16" + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20792, - "length": 17, - "value": "\"connection_type\"" + "offset": 8966, + "length": 18, + "value": "\"system_boot_time\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20816, + "offset": 8991, "length": 2, - "value": "17" + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20837, - "length": 12, - "value": "\"app_active\"" + "offset": 9008, + "length": 10, + "value": "\"language\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20856, + "offset": 9025, "length": 2, - "value": "12" + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20873, - "length": 9, - "value": "\"android\"" + "offset": 9046, + "length": 12, + "value": "\"local_list\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20889, + "offset": 9065, "length": 2, - "value": "13" + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 20906, - "length": 5, - "value": "\"ios\"" + "offset": 9086, + "length": 17, + "value": "\"connection_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23101, + "offset": 9527, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23193, + "offset": 9612, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23292, + "offset": 9699, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9787, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23395, + "offset": 9873, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23491, + "offset": 9968, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23587, + "offset": 10058, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23681, + "offset": 10148, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23773, + "offset": 10241, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23870, + "offset": 10331, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23968, + "offset": 10424, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24072, + "offset": 10514, "length": 2, "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24163, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24253, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24567, + "offset": 10604, "length": 2, "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 24744, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25050, + "offset": 10695, "length": 2, "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25147, + "offset": 10781, "length": 2, "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25244, + "offset": 10868, "length": 2, "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 25341, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26032, + "offset": 11469, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26166, + "offset": 11592, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26304, + "offset": 11717, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 11838, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26435, + "offset": 11960, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12003, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26566, + "offset": 12090, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26695, + "offset": 12216, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26822, + "offset": 12351, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12390, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26954, + "offset": 12477, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27086, + "offset": 12610, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27225, + "offset": 12734, "length": 2, "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27476, + "offset": 12859, "length": 2, "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12899, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27675, + "offset": 12986, "length": 2, "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27835, + "offset": 13106, "length": 2, "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27967, + "offset": 13228, "length": 2, "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 28099, + "offset": 13360, "length": 2, "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 28226, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28690, + "offset": 13572, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28774, + "offset": 13627, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28866, + "offset": 13684, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 28946, + "offset": 13737, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29026, + "offset": 13810, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29104, + "offset": 13873, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29174, + "offset": 13936, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29256, + "offset": 14003, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29340, + "offset": 14066, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29436, + "offset": 14131, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29514, + "offset": 14190, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29594, + "offset": 14251, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29676, + "offset": 14314, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29748, + "offset": 14365, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29834, + "offset": 14418, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 29856, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29904, + "offset": 14481, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29971, + "offset": 14542, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "BooleanLiteral", - "offset": 29989, + "offset": 14560, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30245, - "length": 10, - "value": "\".Android\"" + "offset": 14788, + "length": 24, + "value": "\".InitializationRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30324, + "offset": 14881, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30344, - "length": 19, - "value": "\"network_connected\"" + "offset": 14901, + "length": 13, + "value": "\"client_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30370, + "offset": 14921, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30390, - "length": 14, - "value": "\"network_type\"" + "offset": 14937, + "length": 9, + "value": "\"privacy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30411, + "offset": 14953, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30431, - "length": 17, - "value": "\"network_metered\"" + "offset": 14969, + "length": 6, + "value": "\"idfi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30455, + "offset": 14982, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30475, - "length": 32, - "value": "\"telephony_manager_network_type\"" + "offset": 15002, + "length": 12, + "value": "\"session_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30514, + "offset": 15021, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30534, - "length": 13, - "value": "\"adb_enabled\"" + "offset": 15037, + "length": 7, + "value": "\"cache\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30554, + "offset": 15051, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30574, - "length": 15, - "value": "\"usb_connected\"" + "offset": 15071, + "length": 26, + "value": "\"legacy_flow_user_consent\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30596, + "offset": 15104, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30612, - "length": 8, - "value": "\"volume\"" + "offset": 15120, + "length": 6, + "value": "\"auid\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30627, + "offset": 15133, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30647, - "length": 12, - "value": "\"max_volume\"" + "offset": 15153, + "length": 19, + "value": "\"analytics_user_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30666, + "offset": 15179, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30686, - "length": 16, - "value": "\"device_up_time\"" + "offset": 15199, + "length": 13, + "value": "\"device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30709, + "offset": 15219, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "StringLiteral", - "offset": 30730, - "length": 25, - "value": "\"device_elapsed_realtime\"" + "offset": 15240, + "length": 15, + "value": "\"is_first_init\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 15262, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "StringLiteral", + "offset": 15283, + "length": 13, + "value": "\"auid_string\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 15713, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31179, + "offset": 17470, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31271, + "offset": 17565, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31359, + "offset": 17655, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31449, + "offset": 17743, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31553, + "offset": 17835, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31639, + "offset": 17923, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31727, + "offset": 18028, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31811, + "offset": 18115, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31898, + "offset": 18214, "length": 1, "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 31987, + "offset": 18309, "length": 2, "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32595, + "offset": 18403, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32714, + "offset": 19225, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32835, + "offset": 19356, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32970, + "offset": 19492, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19611, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19751, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19873, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20007, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20137, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20186, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20280, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20406, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 20950, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21148, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21306, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21390, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21464, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21540, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21614, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21636, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21684, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21751, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 21769, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1194, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1226, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1259, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1464, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1493, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 1520, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 4118, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33087, + "offset": 4259, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33206, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "Dictionary", + "offset": 4377, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33321, - "length": 1, - "value": "7" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5003, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33439, + "offset": 5161, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5177, + "length": 23, + "value": "\"AD_FORMAT_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 33559, + "offset": 5207, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 33688, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5223, + "length": 24, + "value": "\"AD_FORMAT_INTERSTITIAL\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 33924, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5254, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 33983, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5270, + "length": 20, + "value": "\"AD_FORMAT_REWARDED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34048, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5297, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34139, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5313, + "length": 18, + "value": "\"AD_FORMAT_BANNER\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34196, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5545, + "length": 12, + "value": "\".Placement\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34257, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 5626, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34306, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "StringLiteral", + "offset": 5646, + "length": 11, + "value": "\"ad_format\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34361, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6081, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 34422, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 6382, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34501, + "offset": 6563, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34562, + "offset": 6624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 34580, + "offset": 6642, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34832, - "length": 6, - "value": "\".Ios\"" + "offset": 6871, + "length": 25, + "value": "\".InitializationResponse\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 34907, + "offset": 6965, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34927, - "length": 33, - "value": "\"current_radio_access_technology\"" + "offset": 6985, + "length": 22, + "value": "\"native_configuration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 34967, + "offset": 7014, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 34987, - "length": 28, - "value": "\"network_reachability_flags\"" + "offset": 7034, + "length": 23, + "value": "\"universal_request_url\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35022, + "offset": 7064, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35042, - "length": 20, - "value": "\"nw_path_interfaces\"" + "offset": 7080, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35069, + "offset": 7094, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35089, - "length": 13, - "value": "\"locale_list\"" + "offset": 7114, + "length": 42, + "value": "\"trigger_initialization_completed_request\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35109, + "offset": 7163, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35129, - "length": 18, - "value": "\"current_ui_theme\"" + "offset": 7183, + "length": 31, + "value": "\"count_of_last_shown_campaigns\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35154, + "offset": 7221, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 35174, - "length": 13, - "value": "\"device_name\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 35194, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 35210, - "length": 8, - "value": "\"volume\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 35225, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "StringLiteral", - "offset": 35245, - "length": 22, - "value": "\"tracking_auth_status\"" + "offset": 7241, + "length": 17, + "value": "\"scar_placements\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35691, + "offset": 7682, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35797, + "offset": 7780, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35899, + "offset": 7877, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 35992, + "offset": 7961, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36079, + "offset": 8073, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36170, + "offset": 8174, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 36258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 36342, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 36960, + "offset": 8877, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37093, + "offset": 9005, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37232, + "offset": 9120, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 37355, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "kind": "BooleanLiteral", + "offset": 9186, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37473, + "offset": 9299, "length": 1, - "value": "5" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37592, + "offset": 9349, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37707, + "offset": 9447, "length": 1, - "value": "7" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "IntegerLiteral", - "offset": 37833, + "offset": 9675, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38084, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38169, - "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38236, + "offset": 9906, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38291, + "offset": 9981, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38356, + "offset": 10028, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38413, + "offset": 10137, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38462, + "offset": 10222, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38535, + "offset": 10285, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38596, + "offset": 10346, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/dynamic_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", "kind": "BooleanLiteral", - "offset": 38614, + "offset": 10364, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 1766, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 5626, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 1980, - "length": 8, - "value": "\".Error\"" + "offset": 5854, + "length": 14, + "value": "\".MutableData\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2057, + "offset": 5937, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2077, - "length": 12, - "value": "\"error_text\"" + "offset": 5957, + "length": 15, + "value": "\"current_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2513, - "length": 1, - "value": "2" + "offset": 5979, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "IntegerLiteral", - "offset": 2814, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "StringLiteral", + "offset": 6000, + "length": 15, + "value": "\"session_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 2989, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 3050, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "StringLiteral", + "offset": 6039, + "length": 9, + "value": "\"privacy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/error.pb.swift", - "kind": "BooleanLiteral", - "offset": 3068, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6055, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2436, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 6076, + "length": 18, + "value": "\"session_counters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6101, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2665, - "length": 23, - "value": "\".GetTokenEventRequest\"" + "offset": 6122, + "length": 13, + "value": "\"allowed_pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2757, - "length": 1, - "value": "1" + "offset": 6142, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2773, - "length": 10, - "value": "\"rewarded\"" + "offset": 6159, + "length": 7, + "value": "\"cache\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 2790, - "length": 1, - "value": "2" + "offset": 6173, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "StringLiteral", - "offset": 2806, - "length": 14, - "value": "\"interstitial\"" + "offset": 6194, + "length": 13, + "value": "\"privacy_fsm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3244, + "offset": 6631, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3329, - "length": 1, - "value": "2" + "offset": 6720, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6810, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6895, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 6990, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7080, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7163, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 3920, + "offset": 7757, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "IntegerLiteral", - "offset": 4040, - "length": 1, - "value": "2" + "offset": 7877, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 7993, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8119, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8240, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8354, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 8473, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4249, + "offset": 8673, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8734, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8785, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8852, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8909, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "kind": "BooleanLiteral", + "offset": 8956, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4310, + "offset": 9013, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4371, + "offset": 9074, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/get_token_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", "kind": "BooleanLiteral", - "offset": 4389, + "offset": 9092, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1510, + "offset": 1488, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 1982, - "length": 18, - "value": "\"headerbidding.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2224, - "length": 24, - "value": "\".HeaderBiddingAdMarkup\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 1574, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2317, + "offset": 1752, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2337, - "length": 9, - "value": "\"ad_data\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2353, + "offset": 2007, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2373, - "length": 17, - "value": "\"ad_data_version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 2177, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2397, + "offset": 2694, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "StringLiteral", - "offset": 2417, - "length": 21, - "value": "\"configuration_token\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2862, + "offset": 2814, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2944, + "offset": 2919, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3033, + "offset": 3087, "length": 1, - "value": "3" + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 4888, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3335, + "offset": 4962, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3373, + "offset": 5125, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 5248, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 5530, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 5673, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3459, + "offset": 6146, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3597, + "offset": 6237, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "BooleanLiteral", - "offset": 3810, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6401, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3871, + "offset": 11655, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3942, + "offset": 11820, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 4003, + "offset": 11949, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_ad_markup.pb.swift", - "kind": "BooleanLiteral", - "offset": 4021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5524, - "length": 18, - "value": "\"headerbidding.v1\"" + "offset": 12667, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5763, + "offset": 12902, "length": 21, - "value": "\".HeaderBiddingToken\"" + "value": "\".RequestRetryPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5853, + "offset": 12992, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5873, - "length": 10, - "value": "\"token_id\"" + "offset": 13012, + "length": 14, + "value": "\"max_duration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5890, + "offset": 13033, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5910, - "length": 14, - "value": "\"token_number\"" + "offset": 13053, + "length": 17, + "value": "\"retry_wait_base\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5931, + "offset": 13077, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5951, - "length": 15, - "value": "\"session_token\"" + "offset": 13097, + "length": 20, + "value": "\"retry_max_interval\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5973, + "offset": 13124, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5993, - "length": 13, - "value": "\"client_info\"" + "offset": 13144, + "length": 18, + "value": "\"retry_jitter_pct\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6013, + "offset": 13169, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6029, - "length": 12, - "value": "\"timestamps\"" + "offset": 13189, + "length": 22, + "value": "\"retry_scaling_factor\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6048, + "offset": 13218, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6068, - "length": 18, - "value": "\"session_counters\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6093, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6113, - "length": 20, - "value": "\"static_device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6140, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6160, - "length": 21, - "value": "\"dynamic_device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6188, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6204, - "length": 5, - "value": "\"pii\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6216, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "StringLiteral", - "offset": 6237, - "length": 16, - "value": "\"campaign_state\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6260, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6277, - "length": 5, - "value": "\"tcf\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 6388, - "length": 1, - "value": "0" + "offset": 13238, + "length": 22, + "value": "\"should_store_locally\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8088, + "offset": 13684, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8178, + "offset": 13771, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8272, + "offset": 13860, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8367, + "offset": 13952, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8462, + "offset": 14042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8557, + "offset": 14136, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8657, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8758, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8860, + "offset": 14359, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 8948, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 9047, - "length": 2, - "value": "11" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9742, + "offset": 14443, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9787, + "offset": 14481, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9878, + "offset": 14567, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 10020, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10146, + "offset": 14608, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10276, + "offset": 14697, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10411, + "offset": 14736, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10547, + "offset": 14823, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10684, + "offset": 14866, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 10807, + "offset": 14957, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 10940, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "IntegerLiteral", - "offset": 11062, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11538, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11614, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11692, + "offset": 15000, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 11766, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 15094, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11840, + "offset": 15299, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 11924, + "offset": 15360, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12010, + "offset": 15427, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12098, + "offset": 15490, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12158, + "offset": 15561, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12238, + "offset": 15632, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12298, + "offset": 15693, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 12320, + "offset": 15711, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12368, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 15938, + "length": 23, + "value": "\".RequestTimeoutPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12435, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 16030, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/headerbidding\/v1\/header_bidding_token.pb.swift", - "kind": "BooleanLiteral", - "offset": 12453, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 16050, + "length": 20, + "value": "\"connect_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 2760, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 16077, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3004, - "length": 38, - "value": "\".InitializationCompletedEventRequest\"" + "offset": 16097, + "length": 17, + "value": "\"read_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3111, + "offset": 16121, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3131, - "length": 20, - "value": "\"static_device_info\"" + "offset": 16141, + "length": 18, + "value": "\"write_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3158, + "offset": 16166, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 3178, - "length": 21, - "value": "\"dynamic_device_info\"" + "offset": 16186, + "length": 20, + "value": "\"overall_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3623, + "offset": 16630, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3718, + "offset": 16722, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4326, + "offset": 16811, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4453, + "offset": 16901, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4708, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4779, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4840, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_completed_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 4858, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 6706, - "length": 12, - "value": "\"gateway.v1\"" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 6939, - "length": 27, - "value": "\".InitializationDeviceInfo\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17128, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7035, + "offset": 17217, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7055, - "length": 11, - "value": "\"bundle_id\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17255, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7073, + "offset": 17341, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7093, - "length": 13, - "value": "\"device_make\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17380, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7113, + "offset": 17467, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 7133, - "length": 14, - "value": "\"device_model\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 17508, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7154, + "offset": 17597, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17816, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17877, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 17940, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18007, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18068, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 18086, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 7174, - "length": 12, - "value": "\"os_version\"" + "offset": 18306, + "length": 16, + "value": "\".RequestPolicy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7610, + "offset": 18391, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7695, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 18411, + "length": 14, + "value": "\"retry_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7782, + "offset": 18432, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7870, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 18452, + "length": 16, + "value": "\"timeout_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8169, + "offset": 18892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8292, + "offset": 18982, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8417, + "offset": 19581, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8538, + "offset": 19704, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 8749, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 8804, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8861, + "offset": 19905, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8914, + "offset": 19968, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8975, + "offset": 20029, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 8993, + "offset": 20047, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9221, - "length": 24, - "value": "\".InitializationRequest\"" + "offset": 20283, + "length": 32, + "value": "\".DiagnosticEventsConfiguration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9314, + "offset": 20384, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9334, - "length": 13, - "value": "\"client_info\"" + "offset": 20400, + "length": 9, + "value": "\"enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9354, + "offset": 20416, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9370, - "length": 9, - "value": "\"privacy\"" + "offset": 20436, + "length": 16, + "value": "\"max_batch_size\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9386, + "offset": 20459, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9402, - "length": 6, - "value": "\"idfi\"" + "offset": 20479, + "length": 23, + "value": "\"max_batch_interval_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9415, + "offset": 20509, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9435, - "length": 12, - "value": "\"session_id\"" + "offset": 20529, + "length": 13, + "value": "\"ttm_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9454, + "offset": 20549, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9470, - "length": 7, - "value": "\"cache\"" + "offset": 20565, + "length": 10, + "value": "\"severity\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9484, + "offset": 20582, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9504, - "length": 26, - "value": "\"legacy_flow_user_consent\"" + "offset": 20602, + "length": 16, + "value": "\"allowed_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9537, + "offset": 20625, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9553, - "length": 6, - "value": "\"auid\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9566, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9586, - "length": 19, - "value": "\"analytics_user_id\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9612, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "StringLiteral", - "offset": 9632, - "length": 13, - "value": "\"device_info\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9652, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 9673, - "length": 15, - "value": "\"is_first_init\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 10105, - "length": 5, - "value": "false" + "offset": 20645, + "length": 16, + "value": "\"blocked_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11335, + "offset": 21085, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11430, + "offset": 21167, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11520, + "offset": 21255, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11608, + "offset": 21349, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11700, + "offset": 21434, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11788, + "offset": 21517, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 11893, + "offset": 21605, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11980, - "length": 1, - "value": "8" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 21819, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12079, + "offset": 21902, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12174, - "length": 2, - "value": "10" + "offset": 21939, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12870, + "offset": 22024, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 12995, + "offset": 22067, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13126, + "offset": 22158, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 22193, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13262, + "offset": 22279, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13381, + "offset": 22403, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13521, + "offset": 22528, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 13643, + "offset": 22653, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13777, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13907, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 13956, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 14050, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14522, + "offset": 22872, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14590, + "offset": 22931, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14652, + "offset": 23002, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14724, + "offset": 23057, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14788, + "offset": 23108, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14884, + "offset": 23169, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 14946, + "offset": 23230, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 15030, + "offset": 23291, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 15104, - "length": 5, - "value": "false" + "offset": 23309, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15180, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23541, + "length": 28, + "value": "\".AdOperationsConfiguration\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15202, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 23638, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15250, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23658, + "length": 17, + "value": "\"load_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15317, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 23682, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 15335, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23702, + "length": 17, + "value": "\"show_timeout_ms\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1186, + "offset": 23726, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 23746, + "length": 22, + "value": "\"get_token_timeout_ms\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1218, + "offset": 24192, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 24281, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1280, + "offset": 24370, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1423, + "offset": 24595, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1456, + "offset": 24681, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1485, + "offset": 24719, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 24805, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1512, + "offset": 24847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 24937, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 4110, + "offset": 25160, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25221, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25290, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25351, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 25369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 25595, + "length": 22, + "value": "\".NativeConfiguration\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 4251, + "offset": 25686, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "Dictionary", - "offset": 4369, - "length": 3, - "value": "[]" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 25706, + "length": 19, + "value": "\"diagnostic_events\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 25732, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 4995, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 25752, + "length": 13, + "value": "\"init_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5145, + "offset": 25772, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5161, - "length": 23, - "value": "\"AD_FORMAT_UNSPECIFIED\"" + "offset": 25792, + "length": 11, + "value": "\"ad_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5191, + "offset": 25810, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5207, + "offset": 25830, "length": 24, - "value": "\"AD_FORMAT_INTERSTITIAL\"" + "value": "\"operative_event_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5238, + "offset": 25861, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5254, - "length": 20, - "value": "\"AD_FORMAT_REWARDED\"" + "offset": 25881, + "length": 14, + "value": "\"other_policy\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5281, + "offset": 25902, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5297, - "length": 18, - "value": "\"AD_FORMAT_BANNER\"" + "offset": 25922, + "length": 15, + "value": "\"ad_operations\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 25944, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5529, - "length": 12, - "value": "\".Placement\"" + "offset": 25964, + "length": 15, + "value": "\"feature_flags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5610, + "offset": 25986, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5630, - "length": 11, - "value": "\"ad_format\"" + "offset": 26006, + "length": 18, + "value": "\"enable_iap_event\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6065, + "offset": 26031, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 26051, + "length": 11, + "value": "\"enable_om\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6366, - "length": 1, - "value": "1" + "offset": 26069, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "BooleanLiteral", - "offset": 6547, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "StringLiteral", + "offset": 26090, + "length": 27, + "value": "\"additional_store_packages\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 6608, + "offset": 26582, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 6626, - "length": 4, - "value": "true" + "offset": 26614, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 6855, - "length": 25, - "value": "\".InitializationResponse\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "Array", + "offset": 26665, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6949, + "offset": 28421, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 6969, - "length": 22, - "value": "\"native_configuration\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6998, + "offset": 28522, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7018, - "length": 23, - "value": "\"universal_request_url\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7048, + "offset": 28617, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7064, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7078, + "offset": 28710, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7098, - "length": 42, - "value": "\"trigger_initialization_completed_request\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 28815, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7147, + "offset": 28911, "length": 1, - "value": "5" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7167, - "length": 31, - "value": "\"count_of_last_shown_campaigns\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29008, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7205, + "offset": 29105, "length": 1, - "value": "6" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "StringLiteral", - "offset": 7225, - "length": 17, - "value": "\"scar_placements\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29201, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "IntegerLiteral", + "offset": 29291, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7666, + "offset": 30007, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7764, + "offset": 30137, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7861, + "offset": 30265, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7945, + "offset": 30405, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8057, + "offset": 30536, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8158, + "offset": 30668, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 8861, + "offset": 30800, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 8989, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 30852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9104, + "offset": 30949, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9170, + "offset": 30991, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9283, + "offset": 31082, "length": 1, - "value": "4" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 9333, - "length": 1, - "value": "0" + "offset": 31247, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 9431, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 31727, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", - "kind": "IntegerLiteral", - "offset": 9659, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 31801, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9890, + "offset": 31871, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 9965, + "offset": 31965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10012, + "offset": 32041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10121, + "offset": 32119, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10206, + "offset": 32197, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10269, + "offset": 32279, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10330, + "offset": 32349, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/initialization_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 10348, + "offset": 32471, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 5618, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32519, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 5838, - "length": 14, - "value": "\".MutableData\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32586, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 5921, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 32604, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5941, + "offset": 32823, "length": 15, - "value": "\"current_state\"" + "value": "\".FeatureFlags\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 5963, - "length": 2, - "value": "10" + "offset": 32907, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 5984, - "length": 15, - "value": "\"session_token\"" + "offset": 32927, + "length": 20, + "value": "\"opengl_gpu_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6006, - "length": 2, - "value": "11" + "offset": 32954, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6023, - "length": 9, - "value": "\"privacy\"" + "offset": 32974, + "length": 37, + "value": "\"opportunity_id_placement_validation\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6039, - "length": 2, - "value": "12" + "offset": 33018, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "StringLiteral", - "offset": 6060, - "length": 18, - "value": "\"session_counters\"" + "offset": 33038, + "length": 31, + "value": "\"bold_sdk_next_session_enabled\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6085, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6106, - "length": 13, - "value": "\"allowed_pii\"" + "offset": 33493, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6126, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6143, - "length": 7, - "value": "\"cache\"" + "offset": 33584, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6157, - "length": 2, - "value": "15" + "offset": 33691, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "StringLiteral", - "offset": 6178, - "length": 13, - "value": "\"privacy_fsm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 33926, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 6615, + "offset": 34018, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6704, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6794, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 6974, - "length": 2, - "value": "13" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34075, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7064, - "length": 2, - "value": "14" + "offset": 34183, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7147, - "length": 2, - "value": "15" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34233, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 7741, + "offset": 34334, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7861, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34537, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 7977, - "length": 2, - "value": "11" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34636, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8103, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34721, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8224, - "length": 2, - "value": "13" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34782, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8338, - "length": 2, - "value": "14" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "kind": "BooleanLiteral", + "offset": 34800, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 8457, - "length": 2, - "value": "15" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 1337, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8657, + "offset": 1701, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8718, + "offset": 2058, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8769, + "offset": 2411, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8836, + "offset": 2756, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8893, + "offset": 3116, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8940, + "offset": 3449, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 8997, + "offset": 3761, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 9058, + "offset": 4075, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/mutable_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 9076, - "length": 4, - "value": "true" + "offset": 4406, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1480, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5464, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1566, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5708, + "length": 30, + "value": "\".NetworkCapabilityTransports\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 5807, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 1859, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5823, + "length": 11, + "value": "\"bluetooth\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 5841, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 2169, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 2686, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5857, + "length": 10, + "value": "\"cellular\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 2806, + "offset": 5874, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 2911, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5890, + "length": 10, + "value": "\"ethernet\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 3079, + "offset": 5907, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 4880, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 4954, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5923, + "length": 8, + "value": "\"lowpan\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 5117, + "offset": 5938, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 5240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "Array", - "offset": 5522, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "Array", - "offset": 5665, - "length": 2, - "value": "[]" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 6138, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "StringLiteral", + "offset": 5954, + "length": 11, + "value": "\"satellite\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 6229, + "offset": 5972, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 10891, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 11056, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 11774, - "length": 12, - "value": "\"gateway.v1\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12001, - "length": 21, - "value": "\".RequestRetryPolicy\"" + "offset": 5988, + "length": 8, + "value": "\"thread\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12091, + "offset": 6003, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12111, - "length": 14, - "value": "\"max_duration\"" + "offset": 6019, + "length": 5, + "value": "\"usb\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12132, + "offset": 6031, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12152, - "length": 17, - "value": "\"retry_wait_base\"" + "offset": 6047, + "length": 5, + "value": "\"vpn\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12176, + "offset": 6059, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12196, - "length": 20, - "value": "\"retry_max_interval\"" + "offset": 6075, + "length": 6, + "value": "\"wifi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12223, - "length": 1, - "value": "4" + "offset": 6088, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "StringLiteral", - "offset": 12243, - "length": 18, - "value": "\"retry_jitter_pct\"" + "offset": 6109, + "length": 12, + "value": "\"wifi_aware\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12268, + "offset": 6545, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 12288, - "length": 22, - "value": "\"retry_scaling_factor\"" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12317, + "offset": 6630, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 12337, - "length": 22, - "value": "\"should_store_locally\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "IntegerLiteral", + "offset": 6714, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12783, + "offset": 6798, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12870, + "offset": 6880, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 12959, + "offset": 6965, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13051, + "offset": 7047, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13141, + "offset": 7126, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13235, + "offset": 7205, "length": 1, - "value": "6" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13458, - "length": 1, - "value": "0" + "offset": 7285, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13542, + "offset": 7873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13580, + "offset": 7988, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13666, + "offset": 8103, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13707, + "offset": 8216, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13796, + "offset": 8332, "length": 1, - "value": "3" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13835, + "offset": 8445, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13922, + "offset": 8555, "length": 1, - "value": "4" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 13965, + "offset": 8665, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "IntegerLiteral", - "offset": 14056, + "offset": 8776, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "IntegerLiteral", + "offset": 8892, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14099, + "offset": 9118, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 14193, - "length": 1, - "value": "6" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9171, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14398, + "offset": 9224, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14459, + "offset": 9273, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14526, + "offset": 9328, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14589, + "offset": 9377, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14660, + "offset": 9420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14731, + "offset": 9463, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14792, + "offset": 9508, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", + "kind": "BooleanLiteral", + "offset": 9624, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/network_capability_transports.pb.swift", "kind": "BooleanLiteral", - "offset": 14810, + "offset": 9642, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15037, - "length": 23, - "value": "\".RequestTimeoutPolicy\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15129, + "offset": 1247, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15149, - "length": 20, - "value": "\"connect_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15176, + "offset": 1287, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15196, - "length": 17, - "value": "\"read_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15220, + "offset": 1317, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15240, - "length": 18, - "value": "\"write_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15265, + "offset": 1463, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 15285, - "length": 20, - "value": "\"overall_timeout_ms\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15729, + "offset": 1503, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15821, + "offset": 1533, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15910, + "offset": 1563, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 16000, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16227, + "offset": 2183, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16316, + "offset": 2215, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16354, + "offset": 2359, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16440, + "offset": 2387, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 6984, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16479, + "offset": 7152, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 16566, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7168, + "length": 34, + "value": "\"OPERATIVE_EVENT_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16607, + "offset": 7209, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7225, + "length": 45, + "value": "\"OPERATIVE_EVENT_TYPE_SPECIFIED_BY_AD_PLAYER\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16696, + "offset": 7277, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 16915, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7293, + "length": 33, + "value": "\"OPERATIVE_EVENT_TYPE_LOAD_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 16976, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7333, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17039, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7349, + "length": 33, + "value": "\"OPERATIVE_EVENT_TYPE_SHOW_ERROR\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17106, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7543, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17167, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7559, + "length": 40, + "value": "\"OPERATIVE_EVENT_ERROR_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 17185, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7606, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17405, - "length": 16, - "value": "\".RequestPolicy\"" + "offset": 7622, + "length": 36, + "value": "\"OPERATIVE_EVENT_ERROR_TYPE_TIMEOUT\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7886, + "length": 26, + "value": "\".OperativeEventErrorData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17490, + "offset": 7981, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17510, - "length": 14, - "value": "\"retry_policy\"" + "offset": 8001, + "length": 12, + "value": "\"error_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17531, + "offset": 8020, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 17551, - "length": 16, - "value": "\"timeout_policy\"" + "offset": 8036, + "length": 9, + "value": "\"message\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17991, + "offset": 8469, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18081, + "offset": 8553, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18680, + "offset": 8857, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 18803, + "offset": 8974, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19004, + "offset": 9185, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19067, + "offset": 9234, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19128, + "offset": 9295, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 19146, + "offset": 9313, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19382, - "length": 32, - "value": "\".DiagnosticEventsConfiguration\"" + "offset": 9541, + "length": 24, + "value": "\".OperativeEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19483, + "offset": 9634, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19499, - "length": 9, - "value": "\"enabled\"" + "offset": 9654, + "length": 10, + "value": "\"event_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19515, + "offset": 9671, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19535, - "length": 16, - "value": "\"max_batch_size\"" + "offset": 9691, + "length": 12, + "value": "\"event_type\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19558, + "offset": 9710, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19578, - "length": 23, - "value": "\"max_batch_interval_ms\"" + "offset": 9730, + "length": 27, + "value": "\"impression_opportunity_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19608, + "offset": 9764, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19628, - "length": 13, - "value": "\"ttm_enabled\"" + "offset": 9784, + "length": 16, + "value": "\"tracking_token\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19648, + "offset": 9807, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19664, - "length": 10, - "value": "\"severity\"" + "offset": 9827, + "length": 17, + "value": "\"additional_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19681, + "offset": 9851, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19701, - "length": 16, - "value": "\"allowed_events\"" + "offset": 9867, + "length": 5, + "value": "\"sid\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19724, + "offset": 9879, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9899, + "length": 18, + "value": "\"session_counters\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9924, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9944, + "length": 20, + "value": "\"static_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 9971, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 9991, + "length": 21, + "value": "\"dynamic_device_info\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 10019, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "StringLiteral", - "offset": 19744, + "offset": 10040, "length": 16, - "value": "\"blocked_events\"" + "value": "\"campaign_state\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20184, + "offset": 10480, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20266, + "offset": 10563, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20354, + "offset": 10647, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20448, + "offset": 10746, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20533, + "offset": 10835, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20616, + "offset": 10925, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20704, + "offset": 11005, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 20918, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 11099, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21001, + "offset": 11194, "length": 1, - "value": "1" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21038, - "length": 1, - "value": "0" + "offset": 11290, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21123, + "offset": 11889, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21166, + "offset": 12015, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21257, + "offset": 12163, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 21292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21378, + "offset": 12291, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21502, + "offset": 12421, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21627, + "offset": 12530, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21752, + "offset": 12651, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 21971, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22030, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22101, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12777, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22156, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 12904, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22207, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 13027, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22268, + "offset": 13235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22329, + "offset": 13288, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22390, + "offset": 13369, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 22408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22640, - "length": 28, - "value": "\".AdOperationsConfiguration\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 22737, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22757, - "length": 17, - "value": "\"load_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 22781, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 22801, - "length": 17, - "value": "\"show_timeout_ms\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23242, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23331, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23552, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13493, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23638, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13534, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23676, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13601, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 23762, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 13670, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 23985, + "offset": 13741, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24046, + "offset": 13804, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24107, + "offset": 13865, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24125, + "offset": 13883, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 24351, - "length": 22, - "value": "\".NativeConfiguration\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1214, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24442, + "offset": 1301, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "StringLiteral", - "offset": 24462, - "length": 19, - "value": "\"diagnostic_events\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1395, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24488, + "offset": 1497, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24508, - "length": 13, - "value": "\"init_policy\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 24528, - "length": 1, - "value": "3" + "offset": 1840, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24548, - "length": 11, - "value": "\"ad_policy\"" + "offset": 2074, + "length": 20, + "value": "\".PermanentCounters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24566, + "offset": 2163, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24586, - "length": 24, - "value": "\"operative_event_policy\"" + "offset": 2183, + "length": 27, + "value": "\"total_rewarded_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24617, + "offset": 2217, "length": 1, - "value": "5" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24637, - "length": 14, - "value": "\"other_policy\"" + "offset": 2237, + "length": 31, + "value": "\"total_interstitial_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24658, + "offset": 2275, "length": 1, - "value": "6" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24678, - "length": 15, - "value": "\"ad_operations\"" + "offset": 2295, + "length": 35, + "value": "\"total_bidding_rewarded_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 24700, + "offset": 2337, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "StringLiteral", - "offset": 24720, - "length": 15, - "value": "\"feature_flags\"" + "offset": 2357, + "length": 39, + "value": "\"total_bidding_interstitial_impression\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26321, + "offset": 2820, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26422, + "offset": 2919, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26517, + "offset": 3022, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26610, + "offset": 3128, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 26715, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "IntegerLiteral", - "offset": 26811, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 26908, + "offset": 3380, "length": 1, - "value": "7" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27613, + "offset": 3476, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27743, + "offset": 3528, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 27871, + "offset": 3628, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28011, + "offset": 3683, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28142, + "offset": 3786, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28274, + "offset": 3845, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 28406, + "offset": 3952, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 28889, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 28963, - "length": 5, - "value": "false" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29033, + "offset": 4179, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29127, + "offset": 4268, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29203, + "offset": 4363, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29281, + "offset": 4466, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29359, + "offset": 4527, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/permanent_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 29381, + "offset": 4545, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29429, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29496, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 6, + "value": "\".Pii\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 29514, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29733, - "length": 15, - "value": "\".FeatureFlags\"" + "offset": 2037, + "length": 16, + "value": "\"advertising_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 29817, + "offset": 2060, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29837, - "length": 20, - "value": "\"opengl_gpu_enabled\"" + "offset": 2080, + "length": 11, + "value": "\"vendor_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 29864, + "offset": 2098, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "StringLiteral", - "offset": 29884, - "length": 37, - "value": "\"opportunity_id_placement_validation\"" + "offset": 2118, + "length": 30, + "value": "\"open_advertising_tracking_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30345, + "offset": 2572, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30436, + "offset": 2661, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 30678, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30770, + "offset": 3068, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", - "kind": "BooleanLiteral", - "offset": 30827, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "IntegerLiteral", + "offset": 3186, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "IntegerLiteral", - "offset": 30935, + "offset": 3338, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31138, + "offset": 3517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31237, + "offset": 3568, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31298, + "offset": 3653, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/native_configuration.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "kind": "BooleanLiteral", + "offset": 3714, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", "kind": "BooleanLiteral", - "offset": 31316, + "offset": 3732, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1207, + "offset": 1168, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1239, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1279, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1309, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1544, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1455, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1781, + "length": 23, + "value": "\".PrivacyUpdateRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1495, + "offset": 1873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 1525, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1555, + "offset": 1905, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 2175, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "StringLiteral", + "offset": 1921, + "length": 9, + "value": "\"content\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2207, + "offset": 2354, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 2351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2379, + "offset": 2437, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 6988, - "length": 12, - "value": "\"gateway.v1\"" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7148, + "offset": 2646, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7164, - "length": 34, - "value": "\"OPERATIVE_EVENT_TYPE_UNSPECIFIED\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7205, + "offset": 2726, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 45, - "value": "\"OPERATIVE_EVENT_TYPE_SPECIFIED_BY_AD_PLAYER\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", "kind": "IntegerLiteral", - "offset": 7273, + "offset": 2842, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7289, - "length": 33, - "value": "\"OPERATIVE_EVENT_TYPE_LOAD_ERROR\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7329, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3043, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7345, - "length": 33, - "value": "\"OPERATIVE_EVENT_TYPE_SHOW_ERROR\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3092, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 7539, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3153, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 7555, - "length": 40, - "value": "\"OPERATIVE_EVENT_ERROR_TYPE_UNSPECIFIED\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 3171, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7602, + "offset": 1170, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7618, - "length": 36, - "value": "\"OPERATIVE_EVENT_ERROR_TYPE_TIMEOUT\"" + "offset": 1547, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7882, - "length": 26, - "value": "\".OperativeEventErrorData\"" + "offset": 1785, + "length": 24, + "value": "\".PrivacyUpdateResponse\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7977, + "offset": 1878, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 7997, - "length": 12, - "value": "\"error_type\"" + "offset": 1894, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8016, + "offset": 1910, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "StringLiteral", - "offset": 8032, + "offset": 1926, "length": 9, - "value": "\"message\"" + "value": "\"content\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8465, + "offset": 2359, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8549, + "offset": 2442, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "kind": "IntegerLiteral", + "offset": 2651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8853, + "offset": 2731, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8970, + "offset": 2847, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9181, + "offset": 3050, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9230, + "offset": 3099, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9291, + "offset": 3160, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", "kind": "BooleanLiteral", - "offset": 9309, + "offset": 3178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9537, - "length": 24, - "value": "\".OperativeEventRequest\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9630, + "offset": 1190, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9650, - "length": 10, - "value": "\"event_id\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9667, + "offset": 1306, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9687, - "length": 12, - "value": "\"event_type\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9706, + "offset": 1393, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9726, - "length": 27, - "value": "\"impression_opportunity_id\"" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9760, + "offset": 1518, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "StringLiteral", - "offset": 9780, - "length": 16, - "value": "\"tracking_token\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 9803, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "kind": "StringLiteral", + "offset": 1937, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9823, - "length": 17, - "value": "\"additional_data\"" + "offset": 2169, + "length": 18, + "value": "\".SessionCounters\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9847, + "offset": 2256, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9863, - "length": 5, - "value": "\"sid\"" + "offset": 2276, + "length": 15, + "value": "\"load_requests\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9875, + "offset": 2298, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9895, - "length": 18, - "value": "\"session_counters\"" + "offset": 2318, + "length": 19, + "value": "\"load_requests_adm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9920, + "offset": 2344, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9940, - "length": 20, - "value": "\"static_device_info\"" + "offset": 2364, + "length": 22, + "value": "\"banner_load_requests\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 9967, + "offset": 2393, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 9987, + "offset": 2413, "length": 21, - "value": "\"dynamic_device_info\"" + "value": "\"banner_requests_adm\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10015, - "length": 2, - "value": "10" + "offset": 2441, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "StringLiteral", - "offset": 10036, - "length": 16, - "value": "\"campaign_state\"" + "offset": 2461, + "length": 20, + "value": "\"banner_impressions\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10476, + "offset": 2905, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10559, + "offset": 2993, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10643, + "offset": 3084, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10742, + "offset": 3178, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 10831, + "offset": 3271, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 10921, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11001, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11095, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 11190, + "offset": 3495, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 11286, - "length": 2, - "value": "10" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 11885, + "offset": 3580, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12011, + "offset": 3620, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12159, + "offset": 3708, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12287, + "offset": 3751, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12417, + "offset": 3842, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12526, + "offset": 3884, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12647, + "offset": 3974, "length": 1, - "value": "7" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12773, + "offset": 4016, "length": 1, - "value": "8" + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "IntegerLiteral", - "offset": 12900, + "offset": 4106, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 13023, - "length": 2, - "value": "10" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13231, + "offset": 4307, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13284, + "offset": 4372, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13365, + "offset": 4443, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13426, + "offset": 4512, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13489, + "offset": 4581, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13530, + "offset": 4642, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", "kind": "BooleanLiteral", - "offset": 13597, - "length": 5, - "value": "false" + "offset": 4660, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13666, + "offset": 2061, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13737, + "offset": 2491, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 13800, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 4567, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5005, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5431, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 5860, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 6392, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 6842, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 7684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10360, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 10779, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 17364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 17834, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 19075, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13861, + "offset": 19488, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/operative_event_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "Array", + "offset": 20287, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 20355, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 13879, - "length": 4, - "value": "true" + "offset": 20759, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1714, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 23518, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1926, - "length": 6, - "value": "\".Pii\"" + "offset": 23751, + "length": 19, + "value": "\".StaticDeviceInfo\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2001, + "offset": 23839, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2021, - "length": 16, - "value": "\"advertising_id\"" + "offset": 23859, + "length": 11, + "value": "\"bundle_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2044, + "offset": 23877, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2064, - "length": 11, - "value": "\"vendor_id\"" + "offset": 23897, + "length": 16, + "value": "\"bundle_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2082, + "offset": 23920, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 2102, - "length": 30, - "value": "\"open_advertising_tracking_id\"" + "offset": 23940, + "length": 16, + "value": "\"app_debuggable\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2556, + "offset": 23963, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 23979, + "length": 8, + "value": "\"rooted\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2645, + "offset": 23994, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24014, + "length": 12, + "value": "\"os_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2729, + "offset": 24033, "length": 1, - "value": "3" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24053, + "length": 13, + "value": "\"device_make\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3052, + "offset": 24073, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24093, + "length": 14, + "value": "\"device_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3170, + "offset": 24114, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24134, + "length": 12, + "value": "\"webview_ua\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3322, + "offset": 24153, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3501, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24173, + "length": 16, + "value": "\"screen_density\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3552, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24196, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3637, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24217, + "length": 14, + "value": "\"screen_width\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3698, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24238, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/pii.pb.swift", - "kind": "BooleanLiteral", - "offset": 3716, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24259, + "length": 15, + "value": "\"screen_height\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1160, - "length": 1, - "value": "0" + "offset": 24281, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1536, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 24302, + "length": 13, + "value": "\"screen_size\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24322, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1765, - "length": 23, - "value": "\".PrivacyUpdateRequest\"" + "offset": 24339, + "length": 8, + "value": "\"stores\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1857, - "length": 1, - "value": "1" + "offset": 24354, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1873, - "length": 9, - "value": "\"version\"" + "offset": 24375, + "length": 18, + "value": "\"total_disk_space\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1889, - "length": 1, - "value": "2" + "offset": 24400, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24421, + "length": 18, + "value": "\"total_ram_memory\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24446, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24467, + "length": 11, + "value": "\"cpu_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24485, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24506, + "length": 11, + "value": "\"cpu_count\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24524, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24545, + "length": 11, + "value": "\"gpu_model\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24563, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 24580, + "length": 9, + "value": "\"android\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 24596, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 1905, - "length": 9, - "value": "\"content\"" + "offset": 24613, + "length": 5, + "value": "\"ios\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "Array", + "offset": 25111, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2338, + "offset": 27417, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2421, + "offset": 27509, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2630, + "offset": 27606, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2710, + "offset": 27701, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2826, + "offset": 27789, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3027, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3076, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3137, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 27882, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_request.pb.swift", - "kind": "BooleanLiteral", - "offset": 3155, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 27976, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1162, + "offset": 28071, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1539, - "length": 12, - "value": "\"gateway.v1\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28164, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1769, - "length": 24, - "value": "\".PrivacyUpdateResponse\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28261, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1862, - "length": 1, - "value": "1" + "offset": 28357, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1878, - "length": 9, - "value": "\"version\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28454, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1894, - "length": 1, - "value": "2" + "offset": 28549, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", - "kind": "StringLiteral", - "offset": 1910, - "length": 9, - "value": "\"content\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 28640, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2343, - "length": 1, - "value": "1" + "offset": 28738, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2426, - "length": 1, - "value": "2" + "offset": 28836, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2635, - "length": 1, - "value": "0" + "offset": 28929, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2715, - "length": 1, - "value": "1" + "offset": 29021, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2831, - "length": 1, - "value": "2" + "offset": 29114, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3034, + "offset": 29204, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3083, - "length": 5, - "value": "false" + "offset": 29294, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 29608, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3144, + "offset": 29694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/privacy_update_response.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 3162, + "offset": 29784, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1182, + "offset": 30689, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1298, + "offset": 30821, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1385, + "offset": 30951, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1510, + "offset": 31074, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 1588, + "offset": 31202, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 1929, - "length": 12, - "value": "\"gateway.v1\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 18, - "value": "\".SessionCounters\"" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2240, + "offset": 31331, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 15, - "value": "\"load_requests\"" + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2282, + "offset": 31461, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2302, - "length": 19, - "value": "\"load_requests_adm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31589, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2328, + "offset": 31721, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2348, - "length": 22, - "value": "\"banner_load_requests\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 31851, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2377, - "length": 1, - "value": "4" + "offset": 31983, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2397, - "length": 21, - "value": "\"banner_requests_adm\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32113, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2425, - "length": 1, - "value": "5" + "offset": 32249, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "StringLiteral", - "offset": 2445, - "length": 20, - "value": "\"banner_impressions\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 32378, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2889, - "length": 1, - "value": "1" + "offset": 32511, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 2977, - "length": 1, - "value": "2" + "offset": 32639, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3068, - "length": 1, - "value": "3" + "offset": 32766, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3162, - "length": 1, - "value": "4" + "offset": 32894, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3255, - "length": 1, - "value": "5" + "offset": 33145, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 3479, - "length": 1, - "value": "0" + "offset": 33344, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3564, - "length": 1, - "value": "1" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33834, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3604, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33914, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3692, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 33994, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3735, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3826, - "length": 1, - "value": "3" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34132, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3868, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34206, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 3958, - "length": 1, - "value": "4" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34282, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 4000, - "length": 1, - "value": "0" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34354, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", - "kind": "IntegerLiteral", - "offset": 4090, - "length": 1, - "value": "5" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 34434, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4291, + "offset": 34510, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4356, + "offset": 34588, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4427, + "offset": 34662, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4496, + "offset": 34728, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4565, + "offset": 34810, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4626, + "offset": 34892, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/session_counters.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 4644, - "length": 4, - "value": "true" + "offset": 34962, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2053, + "offset": 35032, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 2483, + "offset": 35102, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 4559, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35188, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 4997, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35210, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 5423, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35258, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 5852, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35325, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 6384, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 35343, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 6834, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35597, + "length": 10, + "value": "\".Android\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 7676, + "offset": 35676, "length": 1, - "value": "0" + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 10343, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35696, + "length": 11, + "value": "\"api_level\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 10720, + "offset": 35714, "length": 1, - "value": "0" + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 16717, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 35734, + "length": 14, + "value": "\"version_code\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 18272, + "offset": 35755, "length": 1, - "value": "0" + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 18685, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 35775, + "length": 21, + "value": "\"android_fingerprint\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "Array", - "offset": 19484, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 35803, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 35823, + "length": 15, + "value": "\"app_installer\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 19552, + "offset": 35845, "length": 1, - "value": "0" + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 20710, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 35865, + "length": 40, + "value": "\"apk_developer_signing_certificate_hash\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 35912, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 20935, - "length": 19, - "value": "\".StaticDeviceInfo\"" + "offset": 35932, + "length": 13, + "value": "\"build_board\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21023, + "offset": 35952, "length": 1, - "value": "1" + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21043, - "length": 11, - "value": "\"bundle_id\"" + "offset": 35972, + "length": 13, + "value": "\"build_brand\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21061, + "offset": 35992, "length": 1, - "value": "2" + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21081, - "length": 16, - "value": "\"bundle_version\"" + "offset": 36012, + "length": 14, + "value": "\"build_device\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21104, + "offset": 36033, "length": 1, - "value": "3" + "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21124, - "length": 16, - "value": "\"app_debuggable\"" + "offset": 36053, + "length": 15, + "value": "\"build_display\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21147, - "length": 1, - "value": "4" + "offset": 36075, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21163, - "length": 8, - "value": "\"rooted\"" + "offset": 36096, + "length": 19, + "value": "\"build_fingerprint\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21178, - "length": 1, - "value": "5" + "offset": 36122, + "length": 2, + "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21198, - "length": 12, - "value": "\"os_version\"" + "offset": 36143, + "length": 16, + "value": "\"build_hardware\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21217, - "length": 1, - "value": "6" + "offset": 36166, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21237, - "length": 13, - "value": "\"device_make\"" + "offset": 36187, + "length": 12, + "value": "\"build_host\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21257, - "length": 1, - "value": "7" + "offset": 36206, + "length": 2, + "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21277, - "length": 14, - "value": "\"device_model\"" + "offset": 36227, + "length": 18, + "value": "\"build_bootloader\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21298, - "length": 1, - "value": "8" + "offset": 36252, + "length": 2, + "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21318, - "length": 12, - "value": "\"webview_ua\"" + "offset": 36273, + "length": 15, + "value": "\"build_product\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21337, - "length": 1, - "value": "9" + "offset": 36295, + "length": 2, + "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21357, - "length": 16, - "value": "\"screen_density\"" + "offset": 36316, + "length": 10, + "value": "\"build_id\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21380, + "offset": 36333, "length": 2, - "value": "10" + "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21401, - "length": 14, - "value": "\"screen_width\"" + "offset": 36354, + "length": 19, + "value": "\"extension_version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21422, + "offset": 36380, "length": 2, - "value": "11" + "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21443, - "length": 15, - "value": "\"screen_height\"" + "offset": 36401, + "length": 12, + "value": "\"phone_type\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21465, + "offset": 36420, "length": 2, - "value": "12" + "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "StringLiteral", - "offset": 21486, - "length": 13, - "value": "\"screen_size\"" + "offset": 36441, + "length": 14, + "value": "\"sim_operator\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21506, - "length": 2, - "value": "13" + "offset": 39287, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21523, - "length": 8, - "value": "\"stores\"" + "kind": "IntegerLiteral", + "offset": 39379, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21538, - "length": 2, - "value": "14" + "offset": 39474, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21559, - "length": 18, - "value": "\"total_disk_space\"" + "kind": "IntegerLiteral", + "offset": 39576, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21584, - "length": 2, - "value": "15" + "offset": 39672, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21605, - "length": 18, - "value": "\"total_ram_memory\"" + "kind": "IntegerLiteral", + "offset": 39790, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21630, - "length": 2, - "value": "16" + "offset": 39884, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21651, - "length": 11, - "value": "\"cpu_model\"" + "kind": "IntegerLiteral", + "offset": 39978, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21669, + "offset": 40073, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 40169, "length": 2, - "value": "17" + "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21690, - "length": 11, - "value": "\"cpu_count\"" + "kind": "IntegerLiteral", + "offset": 40270, + "length": 2, + "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21708, + "offset": 40368, "length": 2, - "value": "18" + "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21729, - "length": 11, - "value": "\"gpu_model\"" + "kind": "IntegerLiteral", + "offset": 40462, + "length": 2, + "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21747, + "offset": 40562, "length": 2, - "value": "19" + "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21764, - "length": 9, - "value": "\"android\"" + "kind": "IntegerLiteral", + "offset": 40659, + "length": 2, + "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 21780, + "offset": 40751, "length": 2, - "value": "20" + "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 21797, - "length": 5, - "value": "\"ios\"" + "kind": "IntegerLiteral", + "offset": 40852, + "length": 2, + "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "Array", - "offset": 22295, + "kind": "IntegerLiteral", + "offset": 40945, "length": 2, - "value": "[]" + "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24148, + "offset": 41640, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24240, + "offset": 41770, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24337, + "offset": 41907, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24432, + "offset": 42038, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24520, + "offset": 42191, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24613, + "offset": 42320, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24707, + "offset": 42449, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24802, + "offset": 42579, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24895, + "offset": 42710, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 24992, + "offset": 42845, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25088, + "offset": 42978, "length": 2, "value": "11" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25185, + "offset": 43107, "length": 2, "value": "12" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25280, + "offset": 43242, "length": 2, "value": "13" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25371, + "offset": 43374, "length": 2, "value": "14" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25469, + "offset": 43501, "length": 2, "value": "15" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25567, + "offset": 43637, "length": 2, "value": "16" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25660, + "offset": 43765, "length": 2, "value": "17" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 25752, + "offset": 43896, "length": 2, "value": "18" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 25845, - "length": 2, - "value": "19" + "kind": "BooleanLiteral", + "offset": 44374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44450, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44540, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44618, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44740, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44814, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 44964, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45042, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45128, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45208, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45280, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45364, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45442, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 25935, + "offset": 45510, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26025, + "offset": 45596, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45668, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 45766, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 26339, - "length": 2, - "value": "20" + "kind": "BooleanLiteral", + "offset": 45814, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26425, + "offset": 45881, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 26515, + "offset": 45899, "length": 4, "value": "true" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46149, + "length": 6, + "value": "\".Ios\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27420, + "offset": 46224, "length": 1, "value": "1" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46244, + "length": 18, + "value": "\"system_boot_time\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27552, + "offset": 46269, "length": 1, "value": "2" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46285, + "length": 11, + "value": "\"simulator\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27682, + "offset": 46303, "length": 1, "value": "3" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46323, + "length": 19, + "value": "\"built_sdk_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27805, + "offset": 46349, "length": 1, "value": "4" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 16, + "value": "\"skadnetwork_id\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 27933, + "offset": 46392, "length": 1, "value": "5" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46412, + "length": 14, + "value": "\"screen_scale\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28062, + "offset": 46433, "length": 1, "value": "6" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46453, + "length": 19, + "value": "\"can_make_payments\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28192, + "offset": 46479, "length": 1, "value": "7" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46499, + "length": 15, + "value": "\"xcode_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28320, + "offset": 46521, "length": 1, "value": "8" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46541, + "length": 21, + "value": "\"xcode_build_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28452, + "offset": 46569, "length": 1, "value": "9" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "StringLiteral", + "offset": 46589, + "length": 25, + "value": "\"xcode_sdk_build_version\"" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28582, - "length": 2, - "value": "10" + "offset": 47038, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28714, - "length": 2, - "value": "11" + "offset": 47129, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28844, - "length": 2, - "value": "12" + "offset": 47214, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 28980, - "length": 2, - "value": "13" + "offset": 47307, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29109, - "length": 2, - "value": "14" + "offset": 47397, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29242, - "length": 2, - "value": "15" + "offset": 47486, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29370, - "length": 2, - "value": "16" + "offset": 47577, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29497, - "length": 2, - "value": "17" + "offset": 47667, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29625, - "length": 2, - "value": "18" + "offset": 47762, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 29876, - "length": 2, - "value": "19" + "offset": 48368, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "IntegerLiteral", - "offset": 30075, - "length": 2, - "value": "20" + "offset": 48484, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48608, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48741, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48857, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 48979, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49100, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49226, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "IntegerLiteral", + "offset": 49355, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49576, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49698, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 49818, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30565, + "offset": 49885, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30645, + "offset": 49946, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30725, + "offset": 50017, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30791, + "offset": 50094, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", "kind": "BooleanLiteral", - "offset": 30863, + "offset": 50155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "kind": "BooleanLiteral", + "offset": 50173, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 20, + "value": "\"gatewayprotocol.v1\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3152, + "length": 11, + "value": "\".TestData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3232, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3252, + "length": 19, + "value": "\"force_campaign_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3298, + "length": 15, + "value": "\"force_country\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "StringLiteral", + "offset": 3340, + "length": 27, + "value": "\"force_country_subdivision\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 3974, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4585, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4706, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "kind": "IntegerLiteral", + "offset": 4838, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 30937, + "offset": 5037, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31013, + "offset": 5098, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31085, + "offset": 5181, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31165, + "offset": 5242, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", "kind": "BooleanLiteral", - "offset": 31241, - "length": 5, - "value": "false" + "offset": 5260, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31319, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 1775, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31393, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2194, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31459, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2421, + "length": 13, + "value": "\".Timestamps\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31541, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 2503, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31623, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2519, + "length": 11, + "value": "\"timestamp\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31693, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 2537, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31763, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "StringLiteral", + "offset": 2557, + "length": 19, + "value": "\"session_timestamp\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31833, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3000, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 31919, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3088, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3685, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3730, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "kind": "IntegerLiteral", + "offset": 3819, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 31941, - "length": 4, - "value": "true" + "offset": 4006, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 31989, + "offset": 4073, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 32056, + "offset": 4134, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", "kind": "BooleanLiteral", - "offset": 32074, + "offset": 4152, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32328, - "length": 10, - "value": "\".Android\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1243, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32407, + "offset": 1275, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32427, - "length": 11, - "value": "\"api_level\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32445, + "offset": 1302, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32465, - "length": 14, - "value": "\"version_code\"" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32486, + "offset": 1336, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32506, - "length": 21, - "value": "\"android_fingerprint\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1483, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32534, + "offset": 1510, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32554, - "length": 15, - "value": "\"app_installer\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1544, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32576, + "offset": 1575, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32596, - "length": 40, - "value": "\"apk_developer_signing_certificate_hash\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2253, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32643, + "offset": 2285, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32663, - "length": 13, - "value": "\"build_board\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2313, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32683, + "offset": 2343, "length": 1, - "value": "7" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32703, - "length": 13, - "value": "\"build_brand\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2370, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32723, + "offset": 2399, "length": 1, - "value": "8" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32743, - "length": 14, - "value": "\"build_device\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2544, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32764, + "offset": 2572, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32784, - "length": 15, - "value": "\"build_display\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2602, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32806, - "length": 2, - "value": "10" + "offset": 2629, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "StringLiteral", - "offset": 32827, - "length": 19, - "value": "\"build_fingerprint\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 2658, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32853, + "offset": 2687, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "Array", + "offset": 6333, "length": 2, - "value": "11" + "value": "[]" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32874, - "length": 16, - "value": "\"build_hardware\"" + "offset": 6988, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32897, - "length": 2, - "value": "12" + "offset": 7147, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32918, - "length": 12, - "value": "\"build_host\"" + "offset": 7163, + "length": 24, + "value": "\"STORE_TYPE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32937, - "length": 2, - "value": "13" + "offset": 7194, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 32958, - "length": 18, - "value": "\"build_bootloader\"" + "offset": 7210, + "length": 19, + "value": "\"STORE_TYPE_CUSTOM\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 32983, - "length": 2, - "value": "14" + "offset": 7236, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33004, - "length": 15, - "value": "\"build_product\"" + "offset": 7252, + "length": 28, + "value": "\"STORE_TYPE_APPLE_APP_STORE\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33026, - "length": 2, - "value": "15" + "offset": 7287, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33047, - "length": 10, - "value": "\"build_id\"" + "offset": 7303, + "length": 24, + "value": "\"STORE_TYPE_GOOGLE_PLAY\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33064, - "length": 2, - "value": "16" + "offset": 7481, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 33085, - "length": 19, - "value": "\"extension_version\"" + "offset": 7497, + "length": 31, + "value": "\"TRANSACTION_STATE_UNSPECIFIED\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33528, + "offset": 7535, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7551, + "length": 27, + "value": "\"TRANSACTION_STATE_PENDING\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33614, + "offset": 7585, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7601, + "length": 29, + "value": "\"TRANSACTION_STATE_PURCHASED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33703, + "offset": 7637, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7653, + "length": 26, + "value": "\"TRANSACTION_STATE_FAILED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33799, + "offset": 7686, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7702, + "length": 28, + "value": "\"TRANSACTION_STATE_RESTORED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 33889, + "offset": 7737, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 7753, + "length": 28, + "value": "\"TRANSACTION_STATE_DEFERRED\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8001, + "length": 18, + "value": "\".TransactionData\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34001, + "offset": 8088, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8104, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34089, + "offset": 8122, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8142, + "length": 12, + "value": "\"product_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34177, + "offset": 8161, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8181, + "length": 10, + "value": "\"event_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34266, + "offset": 8198, "length": 1, - "value": "9" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34356, - "length": 2, - "value": "10" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8218, + "length": 16, + "value": "\"transaction_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34451, - "length": 2, - "value": "11" + "offset": 8241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34543, - "length": 2, - "value": "12" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8257, + "length": 9, + "value": "\"product\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34631, - "length": 2, - "value": "13" + "offset": 8273, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "IntegerLiteral", - "offset": 34725, - "length": 2, - "value": "14" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8289, + "length": 13, + "value": "\"transaction\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34816, - "length": 2, - "value": "15" + "offset": 8309, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8325, + "length": 9, + "value": "\"receipt\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 34902, - "length": 2, - "value": "16" + "offset": 8341, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", + "kind": "StringLiteral", + "offset": 8361, + "length": 19, + "value": "\"transaction_state\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35500, + "offset": 8804, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35620, + "offset": 8892, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35747, + "offset": 8978, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 35868, + "offset": 9061, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36011, + "offset": 9151, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36130, + "offset": 9235, "length": 1, "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36249, + "offset": 9323, "length": 1, "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36369, + "offset": 9408, "length": 1, "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36490, + "offset": 10004, "length": 1, - "value": "9" + "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36615, - "length": 2, - "value": "10" + "offset": 10129, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36738, - "length": 2, - "value": "11" + "offset": 10245, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36857, - "length": 2, - "value": "12" + "offset": 10374, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 36982, - "length": 2, - "value": "13" + "offset": 10491, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37104, - "length": 2, - "value": "14" + "offset": 10616, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37221, - "length": 2, - "value": "15" + "offset": 10728, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 37347, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37624, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37863, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37920, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 37977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", - "kind": "BooleanLiteral", - "offset": 38036, - "length": 5, - "value": "false" + "offset": 10872, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38097, + "offset": 11069, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38166, + "offset": 11122, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38229, + "offset": 11171, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38284, + "offset": 11232, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38351, + "offset": 11281, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38412, + "offset": 11338, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38463, + "offset": 11389, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38532, + "offset": 11456, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38593, + "offset": 11517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 38611, + "offset": 11535, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38861, - "length": 6, - "value": "\".Ios\"" + "offset": 11765, + "length": 26, + "value": "\".TransactionEventRequest\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 38936, + "offset": 11860, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38956, - "length": 18, - "value": "\"system_boot_time\"" + "offset": 11880, + "length": 20, + "value": "\"static_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 38981, + "offset": 11907, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 38997, - "length": 11, - "value": "\"simulator\"" + "offset": 11927, + "length": 21, + "value": "\"dynamic_device_info\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39015, + "offset": 11955, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39035, - "length": 19, - "value": "\"built_sdk_version\"" + "offset": 11975, + "length": 11, + "value": "\"app_store\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39061, + "offset": 11993, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39081, - "length": 16, - "value": "\"skadnetwork_id\"" + "offset": 12013, + "length": 14, + "value": "\"custom_store\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39104, + "offset": 12034, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "StringLiteral", - "offset": 39124, - "length": 14, - "value": "\"screen_scale\"" + "offset": 12054, + "length": 18, + "value": "\"transaction_data\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39562, + "offset": 12496, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39653, + "offset": 12591, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39738, + "offset": 12687, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39831, + "offset": 12770, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 39921, + "offset": 12858, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40518, + "offset": 13463, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40634, + "offset": 13590, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40758, + "offset": 13718, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 40891, + "offset": 13843, "length": 1, "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "IntegerLiteral", - "offset": 41007, + "offset": 13977, "length": 1, "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41228, + "offset": 14204, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41283, + "offset": 14275, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41350, + "offset": 14326, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41411, + "offset": 14383, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41470, + "offset": 14448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41531, + "offset": 14509, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/static_device_info.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/transaction_event_request.pb.swift", "kind": "BooleanLiteral", - "offset": 41549, + "offset": 14527, "length": 4, "value": "true" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 1553, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 7323, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2919, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 18876, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3136, - "length": 11, - "value": "\".TestData\"" + "offset": 19112, + "length": 22, + "value": "\".LimitedSessionToken\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3216, + "offset": 19203, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3236, - "length": 19, - "value": "\"force_campaign_id\"" + "offset": 19223, + "length": 13, + "value": "\"device_make\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3262, + "offset": 19243, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3282, - "length": 15, - "value": "\"force_country\"" + "offset": 19263, + "length": 14, + "value": "\"device_model\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3304, + "offset": 19284, "length": 1, "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 3324, - "length": 27, - "value": "\"force_country_subdivision\"" + "offset": 19304, + "length": 12, + "value": "\"os_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3775, + "offset": 19323, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "IntegerLiteral", - "offset": 3868, - "length": 1, - "value": "2" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19339, + "length": 6, + "value": "\"idfi\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3958, + "offset": 19352, "length": 1, - "value": "3" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19372, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4569, + "offset": 19392, "length": 1, - "value": "1" + "value": "7" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19412, + "length": 18, + "value": "\"sdk_version_name\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4690, + "offset": 19437, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19457, + "length": 9, + "value": "\"game_id\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 4822, + "offset": 19473, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5021, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19489, + "length": 10, + "value": "\"platform\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5082, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19506, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5165, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19527, + "length": 20, + "value": "\"mediation_provider\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5226, - "length": 5, - "value": "false" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19554, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/test_data.pb.swift", - "kind": "BooleanLiteral", - "offset": 5244, - "length": 4, - "value": "true" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 19575, + "length": 23, + "value": "\"custom_mediation_name\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 1767, - "length": 1, - "value": "0" + "offset": 19605, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2186, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 19626, + "length": 19, + "value": "\"mediation_version\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 19652, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 2405, - "length": 13, - "value": "\".Timestamps\"" + "offset": 19673, + "length": 12, + "value": "\"session_id\"" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2487, + "offset": 20109, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", - "kind": "StringLiteral", - "offset": 2503, - "length": 11, - "value": "\"timestamp\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20196, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2521, + "offset": 20284, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", - "kind": "StringLiteral", - "offset": 2541, - "length": 19, - "value": "\"session_timestamp\"" + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20370, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 2984, + "offset": 20451, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20538, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20629, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20712, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20795, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 20986, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 21081, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 21681, "length": 1, "value": "1" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3072, + "offset": 21806, "length": 1, "value": "2" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3669, + "offset": 21927, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3714, + "offset": 22038, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22073, "length": 1, "value": "0" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 3803, + "offset": 22157, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22288, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22403, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22527, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22669, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22794, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 22920, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 23038, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 3990, + "offset": 23248, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4057, + "offset": 23305, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4118, + "offset": 23358, "length": 5, "value": "false" }, { - "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/timestamps.pb.swift", + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 4136, - "length": 4, - "value": "true" + "offset": 23401, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", - "kind": "IntegerLiteral", - "offset": 4601, - "length": 1, - "value": "0" + "kind": "BooleanLiteral", + "offset": 23456, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", - "kind": "StringLiteral", - "offset": 14824, - "length": 12, - "value": "\"gateway.v1\"" + "kind": "BooleanLiteral", + "offset": 23519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23566, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23686, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23761, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23830, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23885, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23946, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 23964, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15049, + "offset": 24187, "length": 19, "value": "\".UniversalRequest\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15137, + "offset": 24275, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15157, + "offset": 24295, "length": 13, "value": "\"shared_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15177, + "offset": 24315, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 15193, + "offset": 24331, "length": 9, "value": "\"payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15626, + "offset": 24764, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 15715, + "offset": 24853, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16307, + "offset": 25445, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 16424, + "offset": 25562, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16629, + "offset": 25767, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16680, + "offset": 25818, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16741, + "offset": 25879, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 16759, + "offset": 25897, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17016, + "offset": 26154, "length": 13, "value": "\".SharedData\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17098, + "offset": 26236, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17118, + "offset": 26256, "length": 15, "value": "\"session_token\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17140, + "offset": 26278, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17156, + "offset": 26294, "length": 12, "value": "\"timestamps\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17175, + "offset": 26313, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17191, + "offset": 26329, "length": 5, "value": "\"pii\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17203, + "offset": 26341, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17223, + "offset": 26361, "length": 19, "value": "\"developer_consent\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17249, + "offset": 26387, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17269, + "offset": 26407, "length": 17, "value": "\"webview_version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17293, + "offset": 26431, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17313, + "offset": 26451, "length": 15, "value": "\"current_state\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17335, + "offset": 26473, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17355, + "offset": 26493, "length": 11, "value": "\"test_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17373, + "offset": 26511, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17393, + "offset": 26531, "length": 16, "value": "\"app_start_time\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 17416, + "offset": 26554, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 17436, + "offset": 26574, "length": 16, "value": "\"sdk_start_time\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19143, + "offset": 26597, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 26618, + "length": 23, + "value": "\"limited_session_token\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 28906, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19238, + "offset": 29001, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19333, + "offset": 29096, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19421, + "offset": 29184, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19522, + "offset": 29285, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19619, + "offset": 29382, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19714, + "offset": 29477, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19807, + "offset": 29570, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 19904, + "offset": 29667, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20603, + "offset": 29764, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 30471, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20733, + "offset": 30601, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20856, + "offset": 30724, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 20992, + "offset": 30860, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21124, + "offset": 30992, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21254, + "offset": 31122, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21382, + "offset": 31250, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21514, + "offset": 31382, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 21646, + "offset": 31514, "length": 1, "value": "9" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 31653, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 32145, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22137, + "offset": 32219, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22211, + "offset": 32279, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22271, + "offset": 32365, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22357, + "offset": 32447, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22439, + "offset": 32525, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22517, + "offset": 32595, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22587, + "offset": 32673, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22665, + "offset": 32751, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22743, + "offset": 32843, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22765, + "offset": 32865, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22813, + "offset": 32913, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22880, + "offset": 32980, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 22898, + "offset": 32998, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23152, + "offset": 33252, "length": 10, "value": "\".Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23231, + "offset": 33331, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23251, + "offset": 33351, "length": 24, "value": "\"initialization_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23282, + "offset": 33382, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23302, + "offset": 33402, "length": 12, "value": "\"ad_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23321, + "offset": 33421, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23341, + "offset": 33441, "length": 17, "value": "\"operative_event\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23365, + "offset": 33465, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23385, + "offset": 33485, "length": 26, "value": "\"diagnostic_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23418, + "offset": 33518, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23438, + "offset": 33538, "length": 26, "value": "\"ad_player_config_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23471, + "offset": 33571, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23491, + "offset": 33591, "length": 25, "value": "\"get_token_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23523, + "offset": 33623, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23543, + "offset": 33643, "length": 24, "value": "\"privacy_update_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23574, + "offset": 33674, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23594, + "offset": 33694, "length": 25, "value": "\"ad_data_refresh_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 23626, + "offset": 33726, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "StringLiteral", - "offset": 23647, + "offset": 33747, "length": 40, "value": "\"initialization_completed_event_request\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24111, + "offset": 33794, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "StringLiteral", + "offset": 33815, + "length": 27, + "value": "\"transaction_event_request\"" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 34266, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24193, + "offset": 34348, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24263, + "offset": 34418, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24571, + "offset": 34726, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24641, + "offset": 34796, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 24711, + "offset": 34866, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 24995, + "offset": 35150, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25077, + "offset": 35232, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25147, + "offset": 35302, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25441, + "offset": 35596, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25524, + "offset": 35679, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25594, + "offset": 35749, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 25904, + "offset": 36059, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 25986, + "offset": 36141, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26056, + "offset": 36211, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26364, + "offset": 36519, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26445, + "offset": 36600, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26515, + "offset": 36670, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 26821, + "offset": 36976, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26902, + "offset": 37057, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 26972, + "offset": 37127, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27278, + "offset": 37433, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27359, + "offset": 37514, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27429, + "offset": 37584, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 27735, + "offset": 37890, "length": 2, "value": "10" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27832, + "offset": 37987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 38057, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 38393, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "BooleanLiteral", + "offset": 38478, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 27902, + "offset": 38548, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 28860, + "offset": 39482, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29046, + "offset": 39668, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29242, + "offset": 39864, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29454, + "offset": 40076, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29664, + "offset": 40286, "length": 1, "value": "6" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 29872, + "offset": 40494, "length": 1, "value": "7" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30080, + "offset": 40702, "length": 1, "value": "8" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30288, + "offset": 40910, "length": 1, "value": "9" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "IntegerLiteral", - "offset": 30526, + "offset": 41148, "length": 2, "value": "10" }, + { + "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", + "kind": "IntegerLiteral", + "offset": 41363, + "length": 2, + "value": "11" + }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30760, + "offset": 41597, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30821, + "offset": 41658, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_request.pb.swift", "kind": "BooleanLiteral", - "offset": 30839, + "offset": 41676, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7212, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 7220, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7438, + "offset": 7454, "length": 20, "value": "\".UniversalResponse\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7527, + "offset": 7543, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7543, + "offset": 7559, "length": 9, "value": "\"payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7559, + "offset": 7575, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7579, + "offset": 7595, "length": 14, "value": "\"mutable_data\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 7616, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 7616, + "offset": 7632, "length": 7, "value": "\"error\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8754, + "offset": 9223, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8846, + "offset": 9315, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 8942, + "offset": 9411, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9631, + "offset": 10100, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9762, + "offset": 10231, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 9887, + "offset": 10356, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10348, + "offset": 10817, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10424, + "offset": 10893, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10488, + "offset": 10957, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10510, + "offset": 10979, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10558, + "offset": 11027, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10625, + "offset": 11094, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 10643, + "offset": 11112, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 10899, + "offset": 11368, "length": 10, "value": "\".Payload\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 10978, + "offset": 11447, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 10998, + "offset": 11467, "length": 25, "value": "\"initialization_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11030, + "offset": 11499, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11050, + "offset": 11519, "length": 13, "value": "\"ad_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11070, + "offset": 11539, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11090, + "offset": 11559, "length": 27, "value": "\"ad_player_config_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11124, + "offset": 11593, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11144, + "offset": 11613, "length": 26, "value": "\"ad_data_refresh_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11177, + "offset": 11646, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "StringLiteral", - "offset": 11197, + "offset": 11666, "length": 25, "value": "\"privacy_update_response\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 11646, + "offset": 12115, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 11729, + "offset": 12198, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 11799, + "offset": 12268, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12109, + "offset": 12578, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12180, + "offset": 12649, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12250, + "offset": 12719, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12536, + "offset": 13005, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12619, + "offset": 13088, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 12689, + "offset": 13158, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 12999, + "offset": 13468, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13081, + "offset": 13550, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13151, + "offset": 13620, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 13459, + "offset": 13928, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13541, + "offset": 14010, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 13611, + "offset": 14080, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14543, + "offset": 15012, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14731, + "offset": 15200, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 14943, + "offset": 15412, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 15153, + "offset": 15622, "length": 1, "value": "4" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "IntegerLiteral", - "offset": 15363, + "offset": 15832, "length": 1, "value": "5" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15598, + "offset": 16067, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15659, + "offset": 16128, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/universal_response.pb.swift", "kind": "BooleanLiteral", - "offset": 15677, + "offset": 16146, "length": 4, "value": "true" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 1218, + "offset": 1226, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "Array", - "offset": 1380, + "offset": 1388, "length": 2, "value": "[]" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 1727, - "length": 12, - "value": "\"gateway.v1\"" + "offset": 1735, + "length": 20, + "value": "\"gatewayprotocol.v1\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 1956, + "offset": 1972, "length": 23, "value": "\".WebViewConfiguration\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2048, + "offset": 2064, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2064, + "offset": 2080, "length": 9, "value": "\"version\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2080, + "offset": 2096, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2100, + "offset": 2116, "length": 13, "value": "\"entry_point\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2120, + "offset": 2136, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "StringLiteral", - "offset": 2140, + "offset": 2156, "length": 18, "value": "\"additional_files\"" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2582, + "offset": 2598, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2665, + "offset": 2681, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2752, + "offset": 2768, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 2970, + "offset": 2986, "length": 1, "value": "0" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3050, + "offset": 3066, "length": 1, "value": "1" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3173, + "offset": 3189, "length": 1, "value": "2" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "IntegerLiteral", - "offset": 3306, + "offset": 3322, "length": 1, "value": "3" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3507, + "offset": 3523, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3562, + "offset": 3578, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3627, + "offset": 3643, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3688, + "offset": 3704, "length": 5, "value": "false" }, { "filePath": "\/Users\/runner\/work\/unity-ads-sdk\/unity-ads-sdk\/iOS\/Common\/SourceCode\/Gateway\/Proto\/gateway\/v1\/webview_configuration.pb.swift", "kind": "BooleanLiteral", - "offset": 3706, + "offset": 3722, "length": 4, "value": "true" } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index d393579..3909c9f 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,6 +1,6 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio import AVFoundation @@ -25,24 +25,19 @@ import _Concurrency import _StringProcessing import _SwiftConcurrencyShims import zlib -@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : ObjectiveC.NSObject { - @objc final public var configDictionary: [Swift.String : Any] { +@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : NSObject { + @objc final public var configDictionary: [String : Any] { @objc get } - @objc final public func saveSDKConfig(from dictionary: [Swift.String : Any]) + @objc final public func saveSDKConfig(from dictionary: [String : Any]) @objc deinit } -public struct SDKInitializerConfig { - public let gameID: Swift.String - public let isTestModeEnabled: Swift.Bool - public init(gameID: Swift.String, isTestModeEnabled: Swift.Bool) -} -extension Foundation.Data { - public var isGzipped: Swift.Bool { +extension Data { + public var isGzipped: Bool { get } } -extension Swift.Dictionary where Key == Swift.String, Value == Any { +extension Dictionary where Key == Swift.String, Value == Any { @inlinable public func compactMapKeys(_ transform: (Key) throws -> T?) rethrows -> [T : Value] where T : Swift.Hashable { try reduce(into: [:]) { partialResult, element in let newKey = try transform(element.key) @@ -51,35 +46,35 @@ extension Swift.Dictionary where Key == Swift.String, Value == Any { } } } -extension Swift.Optional { - public func filter(if predicate: (Wrapped) -> Swift.Bool) -> Wrapped? - public func filter(if predicate: (Wrapped) -> Swift.Bool, default: Wrapped) -> Wrapped? +extension Optional { + public func filter(if predicate: (Wrapped) -> Bool) -> Wrapped? + public func filter(if predicate: (Wrapped) -> Bool, default: Wrapped) -> Wrapped? @discardableResult - public func `do`(_ work: (Wrapped) -> Swift.Void) -> Wrapped? + public func `do`(_ work: (Wrapped) -> Void) -> Wrapped? @discardableResult - public func onNone(_ work: () -> Swift.Void) -> Wrapped? + public func onNone(_ work: () -> Void) -> Wrapped? @discardableResult - public func debug(message: Swift.String? = nil) -> Wrapped? + public func debug(message: String? = nil) -> Wrapped? } -extension Swift.Result { +extension Result { @discardableResult - @inlinable public func `do`(_ work: (Success) -> Swift.Void) -> Swift.Result { + @inlinable public func `do`(_ work: (Success) -> Void) -> Swift.Result { if case .success(let val) = self { work(val) } return self } @discardableResult - @inlinable public func onFailure(_ work: (Failure) -> Swift.Void) -> Swift.Result { + @inlinable public func onFailure(_ work: (Failure) -> Void) -> Swift.Result { if case .failure(let err) = self { work(err) } return self } - @inlinable public func sink(_ completion: @escaping (Swift.Result) -> Swift.Void) { + @inlinable public func sink(_ completion: @escaping (`Self`) -> Void) { completion(self) } - @inlinable public func sink(_ completion: ((Swift.Result) -> Swift.Void)?) { + @inlinable public func sink(_ completion: ((`Self`) -> Void)?) { completion?(self) } @inlinable public func recover(_ transform: (Failure) -> Success) -> Swift.Result { @@ -95,8 +90,8 @@ extension Swift.Result { } } } -extension Swift.Result where Failure == any Swift.Error { - @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Swift.Result { +extension Result where Failure == any Swift.Error { + @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Result { switch self { case let .success(val): do { @@ -109,7 +104,7 @@ extension Swift.Result where Failure == any Swift.Error { return .failure(err) } } - @inlinable public func tryFlatMap(_ transform: (Success) throws -> Swift.Result) -> Swift.Result { + @inlinable public func tryFlatMap(_ transform: (Success) throws -> Result) -> Result { switch self { case let .success(val): do { @@ -123,13 +118,32 @@ extension Swift.Result where Failure == any Swift.Error { } } } -@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : ObjectiveC.NSObject { - @objc final public func log(_ message: Swift.String) +@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : NSObject { + @objc final public func log(_ message: String) @objc override dynamic public init() @objc deinit } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class UnityAds : NSObject { + @objc public static func initialize(_ gameId: String) + @objc public static func initialize(_ gameId: String, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func initialize(_ gameId: String, testMode: Bool) + @objc public static func initialize(_ gameId: String, testMode: Bool, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func load(_ placementId: String) + @objc public static func load(_ placementId: String, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func load(_ placementId: String, options: UADSLoadOptions, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, showDelegate: UnityAdsShowDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, options: UADSShowOptions, showDelegate: UnityAdsShowDelegate?) + @objc public static func getDebugMode() -> Bool + @objc public static func setDebugMode(_ enableDebugMode: Bool) + @objc public static func isSupported() -> Bool + @objc public static func getVersion() -> String + @objc public static func isInitialized() -> Bool + @objc public static func getToken() -> String? + @objc public static func getToken(_ completion: @escaping (String?) -> Void) + @objc deinit +} public protocol UnityError : Swift.Error { - var code: Swift.Int { get } - var message: Swift.String { get } - var description: Swift.String? { get } + var code: Int { get } + var message: String { get } + var description: String? { get } } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 457a230..681fc7a 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index d393579..3909c9f 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,6 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name UnityAds // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio import AVFoundation @@ -25,24 +25,19 @@ import _Concurrency import _StringProcessing import _SwiftConcurrencyShims import zlib -@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : ObjectiveC.NSObject { - @objc final public var configDictionary: [Swift.String : Any] { +@_hasMissingDesignatedInitializers @objc final public class SDKConfigurationStorageObjcBridge : NSObject { + @objc final public var configDictionary: [String : Any] { @objc get } - @objc final public func saveSDKConfig(from dictionary: [Swift.String : Any]) + @objc final public func saveSDKConfig(from dictionary: [String : Any]) @objc deinit } -public struct SDKInitializerConfig { - public let gameID: Swift.String - public let isTestModeEnabled: Swift.Bool - public init(gameID: Swift.String, isTestModeEnabled: Swift.Bool) -} -extension Foundation.Data { - public var isGzipped: Swift.Bool { +extension Data { + public var isGzipped: Bool { get } } -extension Swift.Dictionary where Key == Swift.String, Value == Any { +extension Dictionary where Key == Swift.String, Value == Any { @inlinable public func compactMapKeys(_ transform: (Key) throws -> T?) rethrows -> [T : Value] where T : Swift.Hashable { try reduce(into: [:]) { partialResult, element in let newKey = try transform(element.key) @@ -51,35 +46,35 @@ extension Swift.Dictionary where Key == Swift.String, Value == Any { } } } -extension Swift.Optional { - public func filter(if predicate: (Wrapped) -> Swift.Bool) -> Wrapped? - public func filter(if predicate: (Wrapped) -> Swift.Bool, default: Wrapped) -> Wrapped? +extension Optional { + public func filter(if predicate: (Wrapped) -> Bool) -> Wrapped? + public func filter(if predicate: (Wrapped) -> Bool, default: Wrapped) -> Wrapped? @discardableResult - public func `do`(_ work: (Wrapped) -> Swift.Void) -> Wrapped? + public func `do`(_ work: (Wrapped) -> Void) -> Wrapped? @discardableResult - public func onNone(_ work: () -> Swift.Void) -> Wrapped? + public func onNone(_ work: () -> Void) -> Wrapped? @discardableResult - public func debug(message: Swift.String? = nil) -> Wrapped? + public func debug(message: String? = nil) -> Wrapped? } -extension Swift.Result { +extension Result { @discardableResult - @inlinable public func `do`(_ work: (Success) -> Swift.Void) -> Swift.Result { + @inlinable public func `do`(_ work: (Success) -> Void) -> Swift.Result { if case .success(let val) = self { work(val) } return self } @discardableResult - @inlinable public func onFailure(_ work: (Failure) -> Swift.Void) -> Swift.Result { + @inlinable public func onFailure(_ work: (Failure) -> Void) -> Swift.Result { if case .failure(let err) = self { work(err) } return self } - @inlinable public func sink(_ completion: @escaping (Swift.Result) -> Swift.Void) { + @inlinable public func sink(_ completion: @escaping (`Self`) -> Void) { completion(self) } - @inlinable public func sink(_ completion: ((Swift.Result) -> Swift.Void)?) { + @inlinable public func sink(_ completion: ((`Self`) -> Void)?) { completion?(self) } @inlinable public func recover(_ transform: (Failure) -> Success) -> Swift.Result { @@ -95,8 +90,8 @@ extension Swift.Result { } } } -extension Swift.Result where Failure == any Swift.Error { - @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Swift.Result { +extension Result where Failure == any Swift.Error { + @inlinable public func tryMap(_ transform: (Success) throws -> NewSuccess) -> Result { switch self { case let .success(val): do { @@ -109,7 +104,7 @@ extension Swift.Result where Failure == any Swift.Error { return .failure(err) } } - @inlinable public func tryFlatMap(_ transform: (Success) throws -> Swift.Result) -> Swift.Result { + @inlinable public func tryFlatMap(_ transform: (Success) throws -> Result) -> Result { switch self { case let .success(val): do { @@ -123,13 +118,32 @@ extension Swift.Result where Failure == any Swift.Error { } } } -@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : ObjectiveC.NSObject { - @objc final public func log(_ message: Swift.String) +@_inheritsConvenienceInitializers @objc final public class LoggerWrapper : NSObject { + @objc final public func log(_ message: String) @objc override dynamic public init() @objc deinit } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class UnityAds : NSObject { + @objc public static func initialize(_ gameId: String) + @objc public static func initialize(_ gameId: String, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func initialize(_ gameId: String, testMode: Bool) + @objc public static func initialize(_ gameId: String, testMode: Bool, initializationDelegate: UnityAdsInitializationDelegate?) + @objc public static func load(_ placementId: String) + @objc public static func load(_ placementId: String, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func load(_ placementId: String, options: UADSLoadOptions, loadDelegate: UnityAdsLoadDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, showDelegate: UnityAdsShowDelegate?) + @objc public static func show(_ viewController: UIViewController, placementId: String, options: UADSShowOptions, showDelegate: UnityAdsShowDelegate?) + @objc public static func getDebugMode() -> Bool + @objc public static func setDebugMode(_ enableDebugMode: Bool) + @objc public static func isSupported() -> Bool + @objc public static func getVersion() -> String + @objc public static func isInitialized() -> Bool + @objc public static func getToken() -> String? + @objc public static func getToken(_ completion: @escaping (String?) -> Void) + @objc deinit +} public protocol UnityError : Swift.Error { - var code: Swift.Int { get } - var message: Swift.String { get } - var description: Swift.String? { get } + var code: Int { get } + var message: String { get } + var description: String? { get } } diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/UnityAds b/plugins/2018.3326/iphone-sim/UnityAds.framework/UnityAds index 1eebfbf..3d93782 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/UnityAds and b/plugins/2018.3326/iphone-sim/UnityAds.framework/UnityAds differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeDirectory b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeDirectory index 9c289c6..2b331e1 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeDirectory and b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeDirectory differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeRequirements-1 b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeRequirements-1 index 3dbb5dd..c4a5bb6 100644 Binary files a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeRequirements-1 and b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeResources b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeResources index 4098cc6..cd244a0 100644 --- a/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeResources +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/_CodeSignature/CodeResources @@ -78,16 +78,20 @@ Headers/UnityAds-Swift.h - I7vMrwWkVXCUq3dYvKVvGamzRKQ= + 4qP9dkj3j1ueiuR2x+oI04ZkGSU= Headers/UnityAds.h - UFWGq8UoCLCkArtPOmYPIQJHHVI= + a3Ajpnno/ozSeOk1Nz67vR2oXY0= Headers/UnityAdsBannerDelegate.h MS3jVHEZXI0C9EMOlJ6PxsI4bdc= + Headers/UnityAdsCommon.h + + ZytdPCFvrM3uxDLe+9eOVkRQBnU= + Headers/UnityAdsInitializationDelegate.h acqQdW5UsJSTEugDqb2JCPWXYDo= @@ -116,10 +120,6 @@ 4gIonVOpRnVIObv5AsmQhFhuOxY= - Headers/UnityAdvertisement.h - - iVoZXqq8LlMjKkpXGBFmsxFlHxc= - Headers/UnityAnalytics.h c6rCrKaAbkE91asvr42mwJHKAoM= @@ -130,51 +130,51 @@ Headers/UnityServices.h - IOwMix5/0OwCTmNohRKFKw/oXVM= + MlFkd+notC5wlcjddOjKl9vZnRo= Info.plist - NRWeA5OFlrQSuOMPGYxWS54Ro+Q= + uxiWX8CtT1VsvgAbGbB3MAmJhIg= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json - Az8bnkaUgpcthhF5hYi10me5Itg= + hgR6ty1pj7n5stVwzYWVOQLjr9M= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - 9R82LB4+76bFN+2n0EhPjnA/u/s= + W3b03Z/VcWui/UzhrgSqQ020euI= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc - kOayG5XV2zuqDk9bu02eM4gRlO0= + lUo1HMBe4YvkV20id+tFTg+uhIY= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface - 9R82LB4+76bFN+2n0EhPjnA/u/s= + W3b03Z/VcWui/UzhrgSqQ020euI= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftmodule - sZSUtT6ZF4uN8i3S5D78s2caIUc= + sXhG7dg43O1XwR/TffciCO0D1D0= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json - Az8bnkaUgpcthhF5hYi10me5Itg= + hgR6ty1pj7n5stVwzYWVOQLjr9M= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - TVDVZQASEdMWaG+eVSKNY3Gp4Ik= + Vnfi4shhULM6FZmdvgTJtIa5fQw= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - HTwW2YSYd4Pc8zvdFchpWlz8ZLc= + Se8uCuRmtIBJFQVsYBWtiHgzJMM= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - TVDVZQASEdMWaG+eVSKNY3Gp4Ik= + Vnfi4shhULM6FZmdvgTJtIa5fQw= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - j0xaMpE4BD7vxcnB2n1EBMCHcp8= + s8Z85GbYnYsZvJlzaxYbJ5qfoBE= Modules/module.modulemap @@ -184,6 +184,14 @@ Vmr7Tv9rcKyDvK3D48LDE7Da57Y= + omid-session-client-v1.js + + CYrPj5o14ZkSV5tSn5grkOsAghM= + + omsdk-v1.js + + xFoo41tIvFKNNRq9NwW500wQtM8= + files2 @@ -389,22 +397,22 @@ hash - I7vMrwWkVXCUq3dYvKVvGamzRKQ= + 4qP9dkj3j1ueiuR2x+oI04ZkGSU= hash2 - NuFZcfq/+T1YlKD3BCzy4Th6Vvdhx9rYRPjYrKpkHmY= + lezKfrarjyCOn0ZKESu7WlzmJsQeJOZic3YuhSgLkLQ= Headers/UnityAds.h hash - UFWGq8UoCLCkArtPOmYPIQJHHVI= + a3Ajpnno/ozSeOk1Nz67vR2oXY0= hash2 - WzCcKNAZ4fuVY0vJqbSsImiy+6bbwJBh/KOxl47A52o= + QYnl5B1PLrI11XNAPANTJHJpBBKjYbgLHk9Fp5RsMVY= Headers/UnityAdsBannerDelegate.h @@ -418,6 +426,17 @@ X5NWpsu1AFppbVgBsOabHG/i9zdewXCL71ZPF7YjLQk= + Headers/UnityAdsCommon.h + + hash + + ZytdPCFvrM3uxDLe+9eOVkRQBnU= + + hash2 + + kCBj0tEkaErpAAiQl9u/1LJJc0NbZSaQahv4DUJMHEE= + + Headers/UnityAdsInitializationDelegate.h hash @@ -495,17 +514,6 @@ SNswtIbR3dtgkGAW+GiefpEfN3LnbbpBPUuzPjMCnR4= - Headers/UnityAdvertisement.h - - hash - - iVoZXqq8LlMjKkpXGBFmsxFlHxc= - - hash2 - - 5x+TtN6fuDpoa3pQaujnYWvjMdeB6D3WLu/MMVEBG88= - - Headers/UnityAnalytics.h hash @@ -532,121 +540,121 @@ hash - IOwMix5/0OwCTmNohRKFKw/oXVM= + MlFkd+notC5wlcjddOjKl9vZnRo= hash2 - y5MHzrOMoZldzXadmwap3bwh+rUeqUjm8r+iyPLRn4c= + dBOZkuGm8erEyuIcfEHO0Ev5zx95RKmthXixBklOam0= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.abi.json hash - Az8bnkaUgpcthhF5hYi10me5Itg= + hgR6ty1pj7n5stVwzYWVOQLjr9M= hash2 - MdfGpSzo5iRwWhsJ0xH9DK0VZSDvvfgROeT6Se8KH34= + sMKRgKwkSdMm7d6p5SqhS1orB2Cwo3g5P/RQz9JY1Vw= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash - 9R82LB4+76bFN+2n0EhPjnA/u/s= + W3b03Z/VcWui/UzhrgSqQ020euI= hash2 - 9Ds8dRC4zwLrOKZPssTCZxAgYi7NR0fBiOO5MmWCdgo= + MT2cNffESaHvUdtuCK8cqTSxNL6o6KoWXi5lSJxTKcY= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash - kOayG5XV2zuqDk9bu02eM4gRlO0= + lUo1HMBe4YvkV20id+tFTg+uhIY= hash2 - FNqBM5PNLg78kRCenBsVBHQ1aoOd/ACmTR9erdxnH/k= + NxWLgwUq08yA5UPCLGZGClnmsLCmEwzwnMAjYmSVdgY= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash - 9R82LB4+76bFN+2n0EhPjnA/u/s= + W3b03Z/VcWui/UzhrgSqQ020euI= hash2 - 9Ds8dRC4zwLrOKZPssTCZxAgYi7NR0fBiOO5MmWCdgo= + MT2cNffESaHvUdtuCK8cqTSxNL6o6KoWXi5lSJxTKcY= Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash - sZSUtT6ZF4uN8i3S5D78s2caIUc= + sXhG7dg43O1XwR/TffciCO0D1D0= hash2 - KjPAaTenXP0n0gZqs909E6Dv3f4ogjSwdbDbAy2ztUs= + i6yxN9lyzGxAHo1y7WQROTEN/xxc2db6/+zFdl9P/7Y= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.abi.json hash - Az8bnkaUgpcthhF5hYi10me5Itg= + hgR6ty1pj7n5stVwzYWVOQLjr9M= hash2 - MdfGpSzo5iRwWhsJ0xH9DK0VZSDvvfgROeT6Se8KH34= + sMKRgKwkSdMm7d6p5SqhS1orB2Cwo3g5P/RQz9JY1Vw= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash - TVDVZQASEdMWaG+eVSKNY3Gp4Ik= + Vnfi4shhULM6FZmdvgTJtIa5fQw= hash2 - MeQbd+rBnvxEv8pzg9a+LzLGML9mWQUNYbtOXXz5lzg= + ITzvuHVQFT5DZzZSbl7Hxf3QDvNVmglCSgyDJau/Cxc= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash - HTwW2YSYd4Pc8zvdFchpWlz8ZLc= + Se8uCuRmtIBJFQVsYBWtiHgzJMM= hash2 - bx78YaakeQeK9OH6UcZs0n1hr2P5GstGZwtz+9rKtWE= + uLEfM9rPXQKPx3MIbKAjL0N2t/kjOwcIhYPf8/8hT3U= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash - TVDVZQASEdMWaG+eVSKNY3Gp4Ik= + Vnfi4shhULM6FZmdvgTJtIa5fQw= hash2 - MeQbd+rBnvxEv8pzg9a+LzLGML9mWQUNYbtOXXz5lzg= + ITzvuHVQFT5DZzZSbl7Hxf3QDvNVmglCSgyDJau/Cxc= Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash - j0xaMpE4BD7vxcnB2n1EBMCHcp8= + s8Z85GbYnYsZvJlzaxYbJ5qfoBE= hash2 - T8wSAK6fIsBsXZM6JTCfouFw4BFoixH8trFzmHtBVVY= + WcYuzLMdYdVTI29wSjrX4tkZ/MTPwoLfonh9OSZDZ5M= Modules/module.modulemap @@ -671,6 +679,28 @@ f3FIPJmP/SZx3Vlg4pLmKnlyAbkHD2JKFo75koJnVG4= + omid-session-client-v1.js + + hash + + CYrPj5o14ZkSV5tSn5grkOsAghM= + + hash2 + + 8V5c4BLIe9MsFdcdL9C5VLmy/Z1YGNgXs4IK89k9WjU= + + + omsdk-v1.js + + hash + + xFoo41tIvFKNNRq9NwW500wQtM8= + + hash2 + + iWz5BbK1YoGNpY4Z4ltSUIPxhjj2ubDXxq6kEamQdYU= + + rules diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/omid-session-client-v1.js b/plugins/2018.3326/iphone-sim/UnityAds.framework/omid-session-client-v1.js new file mode 100644 index 0000000..02447d4 --- /dev/null +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/omid-session-client-v1.js @@ -0,0 +1,1355 @@ +;(function(omidGlobal, factory, exports) { + // CommonJS support + if (typeof exports === 'object' && typeof exports.nodeName !== 'string') { + factory(omidGlobal, exports); + + // If neither AMD nor CommonJS are used, export to a versioned name in the + // global context. + } else { + var exports = {}; + var versions = ['1.4.12-iab4299']; + var additionalVersionString = 'default'; + if (!!additionalVersionString) { + versions.push(additionalVersionString); + } + + factory(omidGlobal, exports); + + function deepFreeze(object) { + for (var key in object) { + if (object.hasOwnProperty(key)) { + object[key] = deepFreeze(object[key]); + } + } + return Object.freeze(object); + } + + // Inject and freeze the exported components of omid. + for (var key in exports) { + if (exports.hasOwnProperty(key)) { + if (Object.getOwnPropertyDescriptor(omidGlobal, key) == null) { + // Define the top level property in the global scope + Object.defineProperty(omidGlobal, key, { + value: {}, + }); + } + versions.forEach(function(version) { + if (Object.getOwnPropertyDescriptor(omidGlobal[key], version) == null) { + var frozenObject = deepFreeze(exports[key]); + // Define the object exports keyed-off versions + Object.defineProperty(omidGlobal[key], version, { + get: function () { + return frozenObject; + }, + enumerable: true, + }); + } + }); + } + } + } +}(typeof global === 'undefined' ? this : global, function(omidGlobal, omidExports) { + var $jscomp = $jscomp || {}; +$jscomp.scope = {}; +$jscomp.createTemplateTagFirstArg = function(a) { + return a.raw = a; +}; +$jscomp.createTemplateTagFirstArgWithRaw = function(a, b) { + a.raw = b; + return a; +}; +$jscomp.arrayIteratorImpl = function(a) { + var b = 0; + return function() { + return b < a.length ? {done:!1, value:a[b++],} : {done:!0}; + }; +}; +$jscomp.arrayIterator = function(a) { + return {next:$jscomp.arrayIteratorImpl(a)}; +}; +$jscomp.makeIterator = function(a) { + var b = "undefined" != typeof Symbol && Symbol.iterator && a[Symbol.iterator]; + if (b) { + return b.call(a); + } + if ("number" == typeof a.length) { + return $jscomp.arrayIterator(a); + } + throw Error(String(a) + " is not an iterable or ArrayLike"); +}; +$jscomp.arrayFromIterator = function(a) { + for (var b, c = []; !(b = a.next()).done;) { + c.push(b.value); + } + return c; +}; +$jscomp.arrayFromIterable = function(a) { + return a instanceof Array ? a : $jscomp.arrayFromIterator($jscomp.makeIterator(a)); +}; +$jscomp.ASSUME_ES5 = !1; +$jscomp.ASSUME_NO_NATIVE_MAP = !1; +$jscomp.ASSUME_NO_NATIVE_SET = !1; +$jscomp.SIMPLE_FROUND_POLYFILL = !1; +$jscomp.ISOLATE_POLYFILLS = !1; +$jscomp.FORCE_POLYFILL_PROMISE = !1; +$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1; +$jscomp.objectCreate = $jscomp.ASSUME_ES5 || "function" == typeof Object.create ? Object.create : function(a) { + var b = function() { + }; + b.prototype = a; + return new b(); +}; +$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(a, b, c) { + if (a == Array.prototype || a == Object.prototype) { + return a; + } + a[b] = c.value; + return a; +}; +$jscomp.getGlobal = function(a) { + a = ["object" == typeof globalThis && globalThis, a, "object" == typeof window && window, "object" == typeof self && self, "object" == typeof global && global,]; + for (var b = 0; b < a.length; ++b) { + var c = a[b]; + if (c && c.Math == Math) { + return c; + } + } + throw Error("Cannot find global object"); +}; +$jscomp.global = $jscomp.getGlobal(this); +$jscomp.IS_SYMBOL_NATIVE = "function" === typeof Symbol && "symbol" === typeof Symbol("x"); +$jscomp.TRUST_ES6_POLYFILLS = !$jscomp.ISOLATE_POLYFILLS || $jscomp.IS_SYMBOL_NATIVE; +$jscomp.polyfills = {}; +$jscomp.propertyToPolyfillSymbol = {}; +$jscomp.POLYFILL_PREFIX = "$jscp$"; +var $jscomp$lookupPolyfilledValue = function(a, b, c) { + if (!c || null != a) { + c = $jscomp.propertyToPolyfillSymbol[b]; + if (null == c) { + return a[b]; + } + c = a[c]; + return void 0 !== c ? c : a[b]; + } +}; +$jscomp.polyfill = function(a, b, c, d) { + b && ($jscomp.ISOLATE_POLYFILLS ? $jscomp.polyfillIsolated(a, b, c, d) : $jscomp.polyfillUnisolated(a, b, c, d)); +}; +$jscomp.polyfillUnisolated = function(a, b, c, d) { + c = $jscomp.global; + a = a.split("."); + for (d = 0; d < a.length - 1; d++) { + var e = a[d]; + if (!(e in c)) { + return; + } + c = c[e]; + } + a = a[a.length - 1]; + d = c[a]; + b = b(d); + b != d && null != b && $jscomp.defineProperty(c, a, {configurable:!0, writable:!0, value:b}); +}; +$jscomp.polyfillIsolated = function(a, b, c, d) { + var e = a.split("."); + a = 1 === e.length; + d = e[0]; + d = !a && d in $jscomp.polyfills ? $jscomp.polyfills : $jscomp.global; + for (var l = 0; l < e.length - 1; l++) { + var m = e[l]; + if (!(m in d)) { + return; + } + d = d[m]; + } + e = e[e.length - 1]; + c = $jscomp.IS_SYMBOL_NATIVE && "es6" === c ? d[e] : null; + b = b(c); + null != b && (a ? $jscomp.defineProperty($jscomp.polyfills, e, {configurable:!0, writable:!0, value:b}) : b !== c && (void 0 === $jscomp.propertyToPolyfillSymbol[e] && (c = 1E9 * Math.random() >>> 0, $jscomp.propertyToPolyfillSymbol[e] = $jscomp.IS_SYMBOL_NATIVE ? $jscomp.global.Symbol(e) : $jscomp.POLYFILL_PREFIX + c + "$" + e), $jscomp.defineProperty(d, $jscomp.propertyToPolyfillSymbol[e], {configurable:!0, writable:!0, value:b}))); +}; +$jscomp.getConstructImplementation = function() { + function a() { + function c() { + } + new c(); + Reflect.construct(c, [], function() { + }); + return new c() instanceof c; + } + if ($jscomp.TRUST_ES6_POLYFILLS && "undefined" != typeof Reflect && Reflect.construct) { + if (a()) { + return Reflect.construct; + } + var b = Reflect.construct; + return function(c, d, e) { + c = b(c, d); + e && Reflect.setPrototypeOf(c, e.prototype); + return c; + }; + } + return function(c, d, e) { + void 0 === e && (e = c); + e = $jscomp.objectCreate(e.prototype || Object.prototype); + return Function.prototype.apply.call(c, e, d) || e; + }; +}; +$jscomp.construct = {valueOf:$jscomp.getConstructImplementation}.valueOf(); +$jscomp.underscoreProtoCanBeSet = function() { + var a = {a:!0}, b = {}; + try { + return b.__proto__ = a, b.a; + } catch (c) { + } + return !1; +}; +$jscomp.setPrototypeOf = $jscomp.TRUST_ES6_POLYFILLS && "function" == typeof Object.setPrototypeOf ? Object.setPrototypeOf : $jscomp.underscoreProtoCanBeSet() ? function(a, b) { + a.__proto__ = b; + if (a.__proto__ !== b) { + throw new TypeError(a + " is not extensible"); + } + return a; +} : null; +$jscomp.inherits = function(a, b) { + a.prototype = $jscomp.objectCreate(b.prototype); + a.prototype.constructor = a; + if ($jscomp.setPrototypeOf) { + var c = $jscomp.setPrototypeOf; + c(a, b); + } else { + for (c in b) { + if ("prototype" != c) { + if (Object.defineProperties) { + var d = Object.getOwnPropertyDescriptor(b, c); + d && Object.defineProperty(a, c, d); + } else { + a[c] = b[c]; + } + } + } + } + a.superClass_ = b.prototype; +}; +$jscomp.getRestArguments = function() { + for (var a = Number(this), b = [], c = a; c < arguments.length; c++) { + b[c - a] = arguments[c]; + } + return b; +}; +$jscomp.polyfill("Reflect", function(a) { + return a ? a : {}; +}, "es6", "es3"); +$jscomp.polyfill("Reflect.construct", function(a) { + return $jscomp.construct; +}, "es6", "es3"); +$jscomp.polyfill("Reflect.setPrototypeOf", function(a) { + if (a) { + return a; + } + if ($jscomp.setPrototypeOf) { + var b = $jscomp.setPrototypeOf; + return function(c, d) { + try { + return b(c, d), !0; + } catch (e) { + return !1; + } + }; + } + return null; +}, "es6", "es5"); +$jscomp.initSymbol = function() { +}; +$jscomp.polyfill("Symbol", function(a) { + if (a) { + return a; + } + var b = function(l, m) { + this.$jscomp$symbol$id_ = l; + $jscomp.defineProperty(this, "description", {configurable:!0, writable:!0, value:m}); + }; + b.prototype.toString = function() { + return this.$jscomp$symbol$id_; + }; + var c = "jscomp_symbol_" + (1E9 * Math.random() >>> 0) + "_", d = 0, e = function(l) { + if (this instanceof e) { + throw new TypeError("Symbol is not a constructor"); + } + return new b(c + (l || "") + "_" + d++, l); + }; + return e; +}, "es6", "es3"); +$jscomp.polyfill("Symbol.iterator", function(a) { + if (a) { + return a; + } + a = Symbol("Symbol.iterator"); + for (var b = "Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "), c = 0; c < b.length; c++) { + var d = $jscomp.global[b[c]]; + "function" === typeof d && "function" != typeof d.prototype[a] && $jscomp.defineProperty(d.prototype, a, {configurable:!0, writable:!0, value:function() { + return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this)); + }}); + } + return a; +}, "es6", "es3"); +$jscomp.iteratorPrototype = function(a) { + a = {next:a}; + a[Symbol.iterator] = function() { + return this; + }; + return a; +}; +$jscomp.iteratorFromArray = function(a, b) { + a instanceof String && (a += ""); + var c = 0, d = !1, e = {next:function() { + if (!d && c < a.length) { + var l = c++; + return {value:b(l, a[l]), done:!1}; + } + d = !0; + return {done:!0, value:void 0}; + }}; + e[Symbol.iterator] = function() { + return e; + }; + return e; +}; +$jscomp.polyfill("Array.prototype.keys", function(a) { + return a ? a : function() { + return $jscomp.iteratorFromArray(this, function(b) { + return b; + }); + }; +}, "es6", "es3"); +$jscomp.owns = function(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); +}; +$jscomp.polyfill("Object.values", function(a) { + return a ? a : function(b) { + var c = [], d; + for (d in b) { + $jscomp.owns(b, d) && c.push(b[d]); + } + return c; + }; +}, "es8", "es3"); +$jscomp.checkEs6ConformanceViaProxy = function() { + try { + var a = {}, b = Object.create(new $jscomp.global.Proxy(a, {get:function(c, d, e) { + return c == a && "q" == d && e == b; + }})); + return !0 === b.q; + } catch (c) { + return !1; + } +}; +$jscomp.USE_PROXY_FOR_ES6_CONFORMANCE_CHECKS = !1; +$jscomp.ES6_CONFORMANCE = $jscomp.USE_PROXY_FOR_ES6_CONFORMANCE_CHECKS && $jscomp.checkEs6ConformanceViaProxy(); +$jscomp.polyfill("WeakMap", function(a) { + function b() { + if (!a || !Object.seal) { + return !1; + } + try { + var f = Object.seal({}), h = Object.seal({}), k = new a([[f, 2], [h, 3]]); + if (2 != k.get(f) || 3 != k.get(h)) { + return !1; + } + k.delete(f); + k.set(h, 4); + return !k.has(f) && 4 == k.get(h); + } catch (n) { + return !1; + } + } + function c() { + } + function d(f) { + var h = typeof f; + return "object" === h && null !== f || "function" === h; + } + function e(f) { + if (!$jscomp.owns(f, m)) { + var h = new c(); + $jscomp.defineProperty(f, m, {value:h}); + } + } + function l(f) { + if (!$jscomp.ISOLATE_POLYFILLS) { + var h = Object[f]; + h && (Object[f] = function(k) { + if (k instanceof c) { + return k; + } + Object.isExtensible(k) && e(k); + return h(k); + }); + } + } + if ($jscomp.USE_PROXY_FOR_ES6_CONFORMANCE_CHECKS) { + if (a && $jscomp.ES6_CONFORMANCE) { + return a; + } + } else { + if (b()) { + return a; + } + } + var m = "$jscomp_hidden_" + Math.random(); + l("freeze"); + l("preventExtensions"); + l("seal"); + var p = 0, g = function(f) { + this.id_ = (p += Math.random() + 1).toString(); + if (f) { + f = $jscomp.makeIterator(f); + for (var h; !(h = f.next()).done;) { + h = h.value, this.set(h[0], h[1]); + } + } + }; + g.prototype.set = function(f, h) { + if (!d(f)) { + throw Error("Invalid WeakMap key"); + } + e(f); + if (!$jscomp.owns(f, m)) { + throw Error("WeakMap key fail: " + f); + } + f[m][this.id_] = h; + return this; + }; + g.prototype.get = function(f) { + return d(f) && $jscomp.owns(f, m) ? f[m][this.id_] : void 0; + }; + g.prototype.has = function(f) { + return d(f) && $jscomp.owns(f, m) && $jscomp.owns(f[m], this.id_); + }; + g.prototype.delete = function(f) { + return d(f) && $jscomp.owns(f, m) && $jscomp.owns(f[m], this.id_) ? delete f[m][this.id_] : !1; + }; + return g; +}, "es6", "es3"); +$jscomp.MapEntry = function() { +}; +$jscomp.polyfill("Map", function(a) { + function b() { + if ($jscomp.ASSUME_NO_NATIVE_MAP || !a || "function" != typeof a || !a.prototype.entries || "function" != typeof Object.seal) { + return !1; + } + try { + var g = Object.seal({x:4}), f = new a($jscomp.makeIterator([[g, "s"]])); + if ("s" != f.get(g) || 1 != f.size || f.get({x:4}) || f.set({x:4}, "t") != f || 2 != f.size) { + return !1; + } + var h = f.entries(), k = h.next(); + if (k.done || k.value[0] != g || "s" != k.value[1]) { + return !1; + } + k = h.next(); + return k.done || 4 != k.value[0].x || "t" != k.value[1] || !h.next().done ? !1 : !0; + } catch (n) { + return !1; + } + } + if ($jscomp.USE_PROXY_FOR_ES6_CONFORMANCE_CHECKS) { + if (a && $jscomp.ES6_CONFORMANCE) { + return a; + } + } else { + if (b()) { + return a; + } + } + var c = new WeakMap(), d = function(g) { + this.data_ = {}; + this.head_ = m(); + this.size = 0; + if (g) { + g = $jscomp.makeIterator(g); + for (var f; !(f = g.next()).done;) { + f = f.value, this.set(f[0], f[1]); + } + } + }; + d.prototype.set = function(g, f) { + g = 0 === g ? 0 : g; + var h = e(this, g); + h.list || (h.list = this.data_[h.id] = []); + h.entry ? h.entry.value = f : (h.entry = {next:this.head_, previous:this.head_.previous, head:this.head_, key:g, value:f,}, h.list.push(h.entry), this.head_.previous.next = h.entry, this.head_.previous = h.entry, this.size++); + return this; + }; + d.prototype.delete = function(g) { + g = e(this, g); + return g.entry && g.list ? (g.list.splice(g.index, 1), g.list.length || delete this.data_[g.id], g.entry.previous.next = g.entry.next, g.entry.next.previous = g.entry.previous, g.entry.head = null, this.size--, !0) : !1; + }; + d.prototype.clear = function() { + this.data_ = {}; + this.head_ = this.head_.previous = m(); + this.size = 0; + }; + d.prototype.has = function(g) { + return !!e(this, g).entry; + }; + d.prototype.get = function(g) { + return (g = e(this, g).entry) && g.value; + }; + d.prototype.entries = function() { + return l(this, function(g) { + return [g.key, g.value]; + }); + }; + d.prototype.keys = function() { + return l(this, function(g) { + return g.key; + }); + }; + d.prototype.values = function() { + return l(this, function(g) { + return g.value; + }); + }; + d.prototype.forEach = function(g, f) { + for (var h = this.entries(), k; !(k = h.next()).done;) { + k = k.value, g.call(f, k[1], k[0], this); + } + }; + d.prototype[Symbol.iterator] = d.prototype.entries; + var e = function(g, f) { + var h = f && typeof f; + "object" == h || "function" == h ? c.has(f) ? h = c.get(f) : (h = "" + ++p, c.set(f, h)) : h = "p_" + f; + var k = g.data_[h]; + if (k && $jscomp.owns(g.data_, h)) { + for (g = 0; g < k.length; g++) { + var n = k[g]; + if (f !== f && n.key !== n.key || f === n.key) { + return {id:h, list:k, index:g, entry:n}; + } + } + } + return {id:h, list:k, index:-1, entry:void 0}; + }, l = function(g, f) { + var h = g.head_; + return $jscomp.iteratorPrototype(function() { + if (h) { + for (; h.head != g.head_;) { + h = h.previous; + } + for (; h.next != h.head;) { + return h = h.next, {done:!1, value:f(h)}; + } + h = null; + } + return {done:!0, value:void 0}; + }); + }, m = function() { + var g = {}; + return g.previous = g.next = g.head = g; + }, p = 0; + return d; +}, "es6", "es3"); +var module$exports$omid$common$constants = {AdEventType:{IMPRESSION:"impression", LOADED:"loaded", GEOMETRY_CHANGE:"geometryChange", SESSION_START:"sessionStart", SESSION_ERROR:"sessionError", SESSION_FINISH:"sessionFinish", MEDIA:"media", VIDEO:"video", START:"start", FIRST_QUARTILE:"firstQuartile", MIDPOINT:"midpoint", THIRD_QUARTILE:"thirdQuartile", COMPLETE:"complete", PAUSE:"pause", RESUME:"resume", BUFFER_START:"bufferStart", BUFFER_FINISH:"bufferFinish", SKIPPED:"skipped", VOLUME_CHANGE:"volumeChange", +PLAYER_STATE_CHANGE:"playerStateChange", AD_USER_INTERACTION:"adUserInteraction", STATE_CHANGE:"stateChange",}, MediaEventType:{LOADED:"loaded", START:"start", FIRST_QUARTILE:"firstQuartile", MIDPOINT:"midpoint", THIRD_QUARTILE:"thirdQuartile", COMPLETE:"complete", PAUSE:"pause", RESUME:"resume", BUFFER_START:"bufferStart", BUFFER_FINISH:"bufferFinish", SKIPPED:"skipped", VOLUME_CHANGE:"volumeChange", PLAYER_STATE_CHANGE:"playerStateChange", AD_USER_INTERACTION:"adUserInteraction",}, ImpressionType:{DEFINED_BY_JAVASCRIPT:"definedByJavaScript", +UNSPECIFIED:"unspecified", LOADED:"loaded", BEGIN_TO_RENDER:"beginToRender", ONE_PIXEL:"onePixel", VIEWABLE:"viewable", AUDIBLE:"audible", OTHER:"other",}, ErrorType:{GENERIC:"generic", VIDEO:"video", MEDIA:"media",}, AdSessionType:{NATIVE:"native", HTML:"html", JAVASCRIPT:"javascript",}, EventOwner:{NATIVE:"native", JAVASCRIPT:"javascript", NONE:"none",}, AccessMode:{FULL:"full", DOMAIN:"domain", LIMITED:"limited",}, AppState:{BACKGROUNDED:"backgrounded", FOREGROUNDED:"foregrounded",}, Environment:{APP:"app", +WEB:"web",}, DeviceCategory:{CTV:"ctv", DESKTOP:"desktop", MOBILE:"mobile", OTHER:"other",}, InteractionType:{CLICK:"click", INVITATION_ACCEPT:"invitationAccept",}, CreativeType:{DEFINED_BY_JAVASCRIPT:"definedByJavaScript", HTML_DISPLAY:"htmlDisplay", NATIVE_DISPLAY:"nativeDisplay", VIDEO:"video", AUDIO:"audio",}, MediaType:{DISPLAY:"display", VIDEO:"video",}, Reason:{NOT_FOUND:"notFound", HIDDEN:"hidden", BACKGROUNDED:"backgrounded", VIEWPORT:"viewport", OBSTRUCTED:"obstructed", CLIPPED:"clipped", +UNMEASURABLE:"unmeasurable", NO_WINDOW_FOCUS:"noWindowFocus", NO_OUTPUT_DEVICE:"noOutputDevice",}, SupportedFeatures:{CONTAINER:"clid", VIDEO:"vlid",}, VideoPosition:{PREROLL:"preroll", MIDROLL:"midroll", POSTROLL:"postroll", STANDALONE:"standalone",}, VideoPlayerState:{MINIMIZED:"minimized", COLLAPSED:"collapsed", NORMAL:"normal", EXPANDED:"expanded", FULLSCREEN:"fullscreen",}, NativeViewKeys:{X:"x", LEFT:"left", Y:"y", TOP:"top", WIDTH:"width", HEIGHT:"height", AD_SESSION_ID:"adSessionId", IS_FRIENDLY_OBSTRUCTION_FOR:"isFriendlyObstructionFor", +CLIPS_TO_BOUNDS:"clipsToBounds", CHILD_VIEWS:"childViews", END_X:"endX", END_Y:"endY", OBSTRUCTIONS:"obstructions", OBSTRUCTION_CLASS:"obstructionClass", OBSTRUCTION_PURPOSE:"obstructionPurpose", OBSTRUCTION_REASON:"obstructionReason", PIXELS:"pixels", HAS_WINDOW_FOCUS:"hasWindowFocus",}, MeasurementStateChangeSource:{CONTAINER:"container", CREATIVE:"creative",}, ElementMarkup:{OMID_ELEMENT_CLASS_NAME:"omid-element",}, CommunicationType:{NONE:"NONE", DIRECT:"DIRECT", POST_MESSAGE:"POST_MESSAGE",}, +OmidImplementer:{OMSDK:"omsdk",}, MessageMethod:{IDENTIFY_SERVICE_WINDOW:"identifyServiceWindow",}}; +var module$contents$omid$common$InternalMessage_GUID_KEY = "omid_message_guid", module$contents$omid$common$InternalMessage_METHOD_KEY = "omid_message_method", module$contents$omid$common$InternalMessage_VERSION_KEY = "omid_message_version", module$contents$omid$common$InternalMessage_ARGS_KEY = "omid_message_args", module$exports$omid$common$InternalMessage = function(a, b, c, d) { + this.guid = a; + this.method = b; + this.version = c; + this.args = d; +}; +module$exports$omid$common$InternalMessage.isValidSerializedMessage = function(a) { + return !!a && void 0 !== a[module$contents$omid$common$InternalMessage_GUID_KEY] && void 0 !== a[module$contents$omid$common$InternalMessage_METHOD_KEY] && void 0 !== a[module$contents$omid$common$InternalMessage_VERSION_KEY] && "string" === typeof a[module$contents$omid$common$InternalMessage_GUID_KEY] && "string" === typeof a[module$contents$omid$common$InternalMessage_METHOD_KEY] && "string" === typeof a[module$contents$omid$common$InternalMessage_VERSION_KEY] && (void 0 === a[module$contents$omid$common$InternalMessage_ARGS_KEY] || + void 0 !== a[module$contents$omid$common$InternalMessage_ARGS_KEY]); +}; +module$exports$omid$common$InternalMessage.deserialize = function(a) { + return new module$exports$omid$common$InternalMessage(a[module$contents$omid$common$InternalMessage_GUID_KEY], a[module$contents$omid$common$InternalMessage_METHOD_KEY], a[module$contents$omid$common$InternalMessage_VERSION_KEY], a[module$contents$omid$common$InternalMessage_ARGS_KEY]); +}; +module$exports$omid$common$InternalMessage.prototype.serialize = function() { + var a = {}; + a = (a[module$contents$omid$common$InternalMessage_GUID_KEY] = this.guid, a[module$contents$omid$common$InternalMessage_METHOD_KEY] = this.method, a[module$contents$omid$common$InternalMessage_VERSION_KEY] = this.version, a); + void 0 !== this.args && (a[module$contents$omid$common$InternalMessage_ARGS_KEY] = this.args); + return a; +}; +var module$exports$omid$common$Communication = function(a) { + this.to = a; + this.communicationType_ = module$exports$omid$common$constants.CommunicationType.NONE; +}; +module$exports$omid$common$Communication.prototype.sendMessage = function(a, b) { +}; +module$exports$omid$common$Communication.prototype.handleMessage = function(a, b) { + if (this.onMessage) { + this.onMessage(a, b); + } +}; +module$exports$omid$common$Communication.prototype.serialize = function(a) { + return JSON.stringify(a); +}; +module$exports$omid$common$Communication.prototype.deserialize = function(a) { + return JSON.parse(a); +}; +module$exports$omid$common$Communication.prototype.isDirectCommunication = function() { + return this.communicationType_ === module$exports$omid$common$constants.CommunicationType.DIRECT; +}; +module$exports$omid$common$Communication.prototype.isCrossOrigin = function() { +}; +var module$exports$omid$common$argsChecker = {}; +function module$contents$omid$common$argsChecker_assertTruthyString(a, b) { + if (!b) { + throw Error("Value for " + a + " is undefined, null or blank."); + } + if ("string" !== typeof b && !(b instanceof String)) { + throw Error("Value for " + a + " is not a string."); + } + if ("" === b.trim()) { + throw Error("Value for " + a + " is empty string."); + } +} +function module$contents$omid$common$argsChecker_assertNotNullObject(a, b) { + if (null == b) { + throw Error("Value for " + a + " is undefined or null"); + } +} +function module$contents$omid$common$argsChecker_assertNumber(a, b) { + if (null == b) { + throw Error(a + " must not be null or undefined."); + } + if ("number" !== typeof b || isNaN(b)) { + throw Error("Value for " + a + " is not a number"); + } +} +function module$contents$omid$common$argsChecker_assertNumberBetween(a, b, c, d) { + module$contents$omid$common$argsChecker_assertNumber(a, b); + if (b < c || b > d) { + throw Error("Value for " + a + " is outside the range [" + c + "," + d + "]"); + } +} +function module$contents$omid$common$argsChecker_assertFunction(a, b) { + if (!b) { + throw Error(a + " must not be truthy."); + } +} +function module$contents$omid$common$argsChecker_assertPositiveNumber(a, b) { + module$contents$omid$common$argsChecker_assertNumber(a, b); + if (0 > b) { + throw Error(a + " must be a positive number."); + } +} +module$exports$omid$common$argsChecker.assertTruthyString = module$contents$omid$common$argsChecker_assertTruthyString; +module$exports$omid$common$argsChecker.assertNotNullObject = module$contents$omid$common$argsChecker_assertNotNullObject; +module$exports$omid$common$argsChecker.assertNumber = module$contents$omid$common$argsChecker_assertNumber; +module$exports$omid$common$argsChecker.assertNumberBetween = module$contents$omid$common$argsChecker_assertNumberBetween; +module$exports$omid$common$argsChecker.assertFunction = module$contents$omid$common$argsChecker_assertFunction; +module$exports$omid$common$argsChecker.assertPositiveNumber = module$contents$omid$common$argsChecker_assertPositiveNumber; +var module$exports$omid$common$exporter = {}; +function module$contents$omid$common$exporter_getOmidExports() { + return "undefined" === typeof omidExports ? null : omidExports; +} +function module$contents$omid$common$exporter_getOrCreateName(a, b) { + return a && (a[b] || (a[b] = {})); +} +function module$contents$omid$common$exporter_packageExport(a, b, c) { + if (c = void 0 === c ? module$contents$omid$common$exporter_getOmidExports() : c) { + a = a.split("."), a.slice(0, a.length - 1).reduce(module$contents$omid$common$exporter_getOrCreateName, c)[a[a.length - 1]] = b; + } +} +module$exports$omid$common$exporter.packageExport = module$contents$omid$common$exporter_packageExport; +var module$exports$omid$sessionClient$Partner = function(a, b) { + module$contents$omid$common$argsChecker_assertTruthyString("Partner.name", a); + module$contents$omid$common$argsChecker_assertTruthyString("Partner.version", b); + this.name = a; + this.version = b; +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.Partner", module$exports$omid$sessionClient$Partner); +var module$exports$omid$sessionClient$VerificationScriptResource = function(a, b, c, d) { + d = void 0 === d ? module$exports$omid$common$constants.AccessMode.FULL : d; + module$contents$omid$common$argsChecker_assertTruthyString("VerificationScriptResource.resourceUrl", a); + this.resourceUrl = a; + this.vendorKey = b; + this.verificationParameters = c; + this.accessMode = d; +}; +module$exports$omid$sessionClient$VerificationScriptResource.prototype.toJSON = function() { + return {accessMode:this.accessMode, resourceUrl:this.resourceUrl, vendorKey:this.vendorKey, verificationParameters:this.verificationParameters,}; +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.VerificationScriptResource", module$exports$omid$sessionClient$VerificationScriptResource); +var module$exports$omid$sessionClient$Context = function(a, b, c, d) { + c = void 0 === c ? null : c; + d = void 0 === d ? null : d; + module$contents$omid$common$argsChecker_assertNotNullObject("Context.partner", a); + this.partner = a; + this.verificationScriptResources = b; + this.videoElement = this.slotElement = null; + this.contentUrl = c; + this.customReferenceData = d; + this.underEvaluation = !1; + this.serviceWindow = null; +}; +module$exports$omid$sessionClient$Context.prototype.setVideoElement = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("Context.videoElement", a); + this.videoElement = a; +}; +module$exports$omid$sessionClient$Context.prototype.setSlotElement = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("Context.slotElement", a); + this.slotElement = a; +}; +module$exports$omid$sessionClient$Context.prototype.setServiceWindow = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("Context.serviceWindow", a); + this.serviceWindow = a; +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.Context", module$exports$omid$sessionClient$Context); +var module$exports$omid$common$OmidGlobalProvider = {}; +function module$contents$omid$common$OmidGlobalProvider_getOmidGlobal() { + if ("undefined" !== typeof omidGlobal && omidGlobal) { + return omidGlobal; + } + if ("undefined" !== typeof global && global) { + return global; + } + if ("undefined" !== typeof window && window) { + return window; + } + if ("undefined" !== typeof globalThis && globalThis) { + return globalThis; + } + var a = Function("return this")(); + if (a) { + return a; + } + throw Error("Could not determine global object context."); +} +module$exports$omid$common$OmidGlobalProvider.omidGlobal = module$contents$omid$common$OmidGlobalProvider_getOmidGlobal(); +var module$contents$omid$sessionClient$OmidJsSessionInterface_ExportedNodeKeys = {ROOT:"omidSessionInterface", AD_EVENTS:"adEvents", MEDIA_EVENTS:"mediaEvents",}, module$contents$omid$sessionClient$OmidJsSessionInterface_MethodNameMap = {sessionError:"reportError",}, module$contents$omid$sessionClient$OmidJsSessionInterface_MediaEventMethodNames = Object.keys(module$exports$omid$common$constants.MediaEventType).map(function(a) { + return module$exports$omid$common$constants.MediaEventType[a]; +}), module$contents$omid$sessionClient$OmidJsSessionInterface_AdEventMethodNames = ["impressionOccurred",], module$exports$omid$sessionClient$OmidJsSessionInterface = function(a) { + a = void 0 === a ? module$exports$omid$common$OmidGlobalProvider.omidGlobal : a; + this.interfaceRoot_ = a[module$contents$omid$sessionClient$OmidJsSessionInterface_ExportedNodeKeys.ROOT]; +}; +module$exports$omid$sessionClient$OmidJsSessionInterface.prototype.isSupported = function() { + return null != this.interfaceRoot_; +}; +module$exports$omid$sessionClient$OmidJsSessionInterface.prototype.sendMessage = function(a, b, c) { + "registerSessionObserver" == a && (c = [b]); + module$contents$omid$sessionClient$OmidJsSessionInterface_MethodNameMap[a] && (a = module$contents$omid$sessionClient$OmidJsSessionInterface_MethodNameMap[a]); + b = this.interfaceRoot_; + 0 <= module$contents$omid$sessionClient$OmidJsSessionInterface_AdEventMethodNames.indexOf(a) && (b = b[module$contents$omid$sessionClient$OmidJsSessionInterface_ExportedNodeKeys.AD_EVENTS]); + 0 <= module$contents$omid$sessionClient$OmidJsSessionInterface_MediaEventMethodNames.indexOf(a) && (b = b[module$contents$omid$sessionClient$OmidJsSessionInterface_ExportedNodeKeys.MEDIA_EVENTS]); + b = b[a]; + if (!b) { + throw Error("Unrecognized method name: " + a + "."); + } + b.apply(null, $jscomp.arrayFromIterable(c)); +}; +var module$exports$omid$common$Rectangle = function(a, b, c, d) { + this.x = a; + this.y = b; + this.width = c; + this.height = d; +}; +var module$exports$omid$common$guid = {}; +function module$contents$omid$common$guid_generateGuid() { + return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(a) { + var b = 16 * Math.random() | 0; + a = "y" === a ? (b & 3 | 8).toString(16) : b.toString(16); + return a; + }); +} +module$exports$omid$common$guid.generateGuid = module$contents$omid$common$guid_generateGuid; +var module$exports$omid$common$logger = {}; +function module$contents$omid$common$logger_error() { + var a = $jscomp.getRestArguments.apply(0, arguments); + module$contents$omid$common$logger_executeLog(function() { + throw new (Function.prototype.bind.apply(Error, [null, "Could not complete the test successfully - "].concat($jscomp.arrayFromIterable(a))))(); + }, function() { + return console.error.apply(console, $jscomp.arrayFromIterable(a)); + }); +} +function module$contents$omid$common$logger_debug() { + var a = $jscomp.getRestArguments.apply(0, arguments); + module$contents$omid$common$logger_executeLog(function() { + }, function() { + return console.error.apply(console, $jscomp.arrayFromIterable(a)); + }); +} +function module$contents$omid$common$logger_executeLog(a, b) { + "undefined" !== typeof jasmine && jasmine ? a() : "undefined" !== typeof console && console && console.error && b(); +} +module$exports$omid$common$logger.error = module$contents$omid$common$logger_error; +module$exports$omid$common$logger.debug = module$contents$omid$common$logger_debug; +var module$exports$omid$common$eventTypedefs = {}; +var module$exports$omid$common$version = {ApiVersion:"1.0", Version:"1.4.12-iab4299"}; +var module$exports$omid$common$VersionUtils = {}, module$contents$omid$common$VersionUtils_SEMVER_DIGITS_NUMBER = 3; +function module$contents$omid$common$VersionUtils_isValidVersion(a) { + return /\d+\.\d+\.\d+(-.*)?/.test(a); +} +function module$contents$omid$common$VersionUtils_versionGreaterOrEqual(a, b) { + a = a.split("-")[0].split("."); + b = b.split("-")[0].split("."); + for (var c = 0; c < module$contents$omid$common$VersionUtils_SEMVER_DIGITS_NUMBER; c++) { + var d = parseInt(a[c], 10), e = parseInt(b[c], 10); + if (d > e) { + break; + } else if (d < e) { + return !1; + } + } + return !0; +} +module$exports$omid$common$VersionUtils.isValidVersion = module$contents$omid$common$VersionUtils_isValidVersion; +module$exports$omid$common$VersionUtils.versionGreaterOrEqual = module$contents$omid$common$VersionUtils_versionGreaterOrEqual; +var module$exports$omid$common$ArgsSerDe = {}, module$contents$omid$common$ArgsSerDe_ARGS_NOT_SERIALIZED_VERSION = "1.0.3"; +function module$contents$omid$common$ArgsSerDe_serializeMessageArgs(a, b) { + return module$contents$omid$common$VersionUtils_isValidVersion(a) && module$contents$omid$common$VersionUtils_versionGreaterOrEqual(a, module$contents$omid$common$ArgsSerDe_ARGS_NOT_SERIALIZED_VERSION) ? b : JSON.stringify(b); +} +function module$contents$omid$common$ArgsSerDe_deserializeMessageArgs(a, b) { + return module$contents$omid$common$VersionUtils_isValidVersion(a) && module$contents$omid$common$VersionUtils_versionGreaterOrEqual(a, module$contents$omid$common$ArgsSerDe_ARGS_NOT_SERIALIZED_VERSION) ? b ? b : [] : b && "string" === typeof b ? JSON.parse(b) : []; +} +module$exports$omid$common$ArgsSerDe.serializeMessageArgs = module$contents$omid$common$ArgsSerDe_serializeMessageArgs; +module$exports$omid$common$ArgsSerDe.deserializeMessageArgs = module$contents$omid$common$ArgsSerDe_deserializeMessageArgs; +var module$exports$omid$common$serviceMethodUtils = {}, module$contents$omid$common$serviceMethodUtils_ServiceMethodPrefix = {SESSION_SERVICE:"SessionService.", VERIFICATION_SERVICE:"VerificationService.",}; +function module$contents$omid$common$serviceMethodUtils_getPrefixedSessionServiceMethod(a) { + return module$contents$omid$common$serviceMethodUtils_getPrefixedMethod(a, module$contents$omid$common$serviceMethodUtils_ServiceMethodPrefix.SESSION_SERVICE); +} +function module$contents$omid$common$serviceMethodUtils_getUnprefixedSessionServiceMethod(a) { + return module$contents$omid$common$serviceMethodUtils_getUnprefixedMethod(a, module$contents$omid$common$serviceMethodUtils_ServiceMethodPrefix.SESSION_SERVICE); +} +function module$contents$omid$common$serviceMethodUtils_isPrefixedSessionServiceMethod(a) { + return null != module$contents$omid$common$serviceMethodUtils_getUnprefixedSessionServiceMethod(a); +} +function module$contents$omid$common$serviceMethodUtils_getPrefixedVerificationServiceMethod(a) { + return module$contents$omid$common$serviceMethodUtils_getPrefixedMethod(a, module$contents$omid$common$serviceMethodUtils_ServiceMethodPrefix.VERIFICATION_SERVICE); +} +function module$contents$omid$common$serviceMethodUtils_getUnprefixedVerificationServiceMethod(a) { + return module$contents$omid$common$serviceMethodUtils_getUnprefixedMethod(a, module$contents$omid$common$serviceMethodUtils_ServiceMethodPrefix.VERIFICATION_SERVICE); +} +function module$contents$omid$common$serviceMethodUtils_isPrefixedVerificationServiceMethod(a) { + return null != module$contents$omid$common$serviceMethodUtils_getUnprefixedVerificationServiceMethod(a); +} +function module$contents$omid$common$serviceMethodUtils_getPrefixedMethod(a, b) { + return b + a; +} +function module$contents$omid$common$serviceMethodUtils_getUnprefixedMethod(a, b) { + return (a = a.match(new RegExp("^" + b + "(.*)"))) && a[1]; +} +module$exports$omid$common$serviceMethodUtils.getPrefixedSessionServiceMethod = module$contents$omid$common$serviceMethodUtils_getPrefixedSessionServiceMethod; +module$exports$omid$common$serviceMethodUtils.getPrefixedVerificationServiceMethod = module$contents$omid$common$serviceMethodUtils_getPrefixedVerificationServiceMethod; +module$exports$omid$common$serviceMethodUtils.getUnprefixedSessionServiceMethod = module$contents$omid$common$serviceMethodUtils_getUnprefixedSessionServiceMethod; +module$exports$omid$common$serviceMethodUtils.getUnprefixedVerificationServiceMethod = module$contents$omid$common$serviceMethodUtils_getUnprefixedVerificationServiceMethod; +module$exports$omid$common$serviceMethodUtils.isPrefixedSessionServiceMethod = module$contents$omid$common$serviceMethodUtils_isPrefixedSessionServiceMethod; +module$exports$omid$common$serviceMethodUtils.isPrefixedVerificationServiceMethod = module$contents$omid$common$serviceMethodUtils_isPrefixedVerificationServiceMethod; +var module$exports$omid$common$windowUtils = {}; +function module$contents$omid$common$windowUtils_isValidWindow(a) { + return null != a && "undefined" !== typeof a.top && null != a.top; +} +function module$contents$omid$common$windowUtils_isCrossOrigin(a) { + if (a === module$exports$omid$common$OmidGlobalProvider.omidGlobal) { + return !1; + } + try { + if ("undefined" === typeof a.location.hostname) { + return !0; + } + module$contents$omid$common$windowUtils_isSameOriginForIE(a); + } catch (b) { + return !0; + } + return !1; +} +function module$contents$omid$common$windowUtils_isSameOriginForIE(a) { + return "" === a.x || "" !== a.x; +} +function module$contents$omid$common$windowUtils_resolveGlobalContext(a) { + "undefined" === typeof a && "undefined" !== typeof window && window && (a = window); + return module$contents$omid$common$windowUtils_isValidWindow(a) ? a : module$exports$omid$common$OmidGlobalProvider.omidGlobal; +} +function module$contents$omid$common$windowUtils_resolveTopWindowContext(a) { + return module$contents$omid$common$windowUtils_isValidWindow(a) ? a.top : module$exports$omid$common$OmidGlobalProvider.omidGlobal; +} +function module$contents$omid$common$windowUtils_isTopWindowAccessible(a) { + try { + return a.top.location.href ? !0 : !1; + } catch (b) { + return !1; + } +} +function module$contents$omid$common$windowUtils_removeDomElements(a) { + a.type === module$exports$omid$common$constants.AdEventType.SESSION_START && ("undefined" !== typeof a.data.context.videoElement && (a.data.context.videoElement = "DOM Video Element - Present but not parsed to avoid parse error"), "undefined" !== typeof a.data.context.slotElement && (a.data.context.slotElement = "DOM Slot Element - Present but not parsed to avoid parse error")); + return a; +} +function module$contents$omid$common$windowUtils_evaluatePageUrl(a) { + if (!module$contents$omid$common$windowUtils_isValidWindow(a)) { + return null; + } + try { + var b = a.top; + return module$contents$omid$common$windowUtils_isCrossOrigin(b) ? null : b.location.href; + } catch (c) { + return null; + } +} +module$exports$omid$common$windowUtils.evaluatePageUrl = module$contents$omid$common$windowUtils_evaluatePageUrl; +module$exports$omid$common$windowUtils.isCrossOrigin = module$contents$omid$common$windowUtils_isCrossOrigin; +module$exports$omid$common$windowUtils.removeDomElements = module$contents$omid$common$windowUtils_removeDomElements; +module$exports$omid$common$windowUtils.resolveGlobalContext = module$contents$omid$common$windowUtils_resolveGlobalContext; +module$exports$omid$common$windowUtils.resolveTopWindowContext = module$contents$omid$common$windowUtils_resolveTopWindowContext; +module$exports$omid$common$windowUtils.isTopWindowAccessible = module$contents$omid$common$windowUtils_isTopWindowAccessible; +var module$exports$omid$common$DirectCommunication = function(a) { + module$exports$omid$common$Communication.call(this, a); + this.communicationType_ = module$exports$omid$common$constants.CommunicationType.DIRECT; + this.handleExportedMessage = module$exports$omid$common$DirectCommunication.prototype.handleExportedMessage.bind(this); +}; +$jscomp.inherits(module$exports$omid$common$DirectCommunication, module$exports$omid$common$Communication); +module$exports$omid$common$DirectCommunication.prototype.sendMessage = function(a, b) { + b = void 0 === b ? this.to : b; + if (!b) { + throw Error("Message destination must be defined at construction time or when sending the message."); + } + b.handleExportedMessage(a.serialize(), this); +}; +module$exports$omid$common$DirectCommunication.prototype.handleExportedMessage = function(a, b) { + module$exports$omid$common$InternalMessage.isValidSerializedMessage(a) && this.handleMessage(module$exports$omid$common$InternalMessage.deserialize(a), b); +}; +module$exports$omid$common$DirectCommunication.prototype.isCrossOrigin = function() { + return !1; +}; +var module$exports$omid$common$PostMessageCommunication = function(a, b) { + b = void 0 === b ? module$exports$omid$common$OmidGlobalProvider.omidGlobal : b; + module$exports$omid$common$Communication.call(this, b); + var c = this; + this.communicationType_ = module$exports$omid$common$constants.CommunicationType.POST_MESSAGE; + a.addEventListener("message", function(d) { + if ("object" === typeof d.data) { + var e = d.data; + module$exports$omid$common$InternalMessage.isValidSerializedMessage(e) && (e = module$exports$omid$common$InternalMessage.deserialize(e), d.source && c.handleMessage(e, d.source)); + } + }); +}; +$jscomp.inherits(module$exports$omid$common$PostMessageCommunication, module$exports$omid$common$Communication); +module$exports$omid$common$PostMessageCommunication.isCompatibleContext = function(a) { + return !!(a && a.addEventListener && a.postMessage); +}; +module$exports$omid$common$PostMessageCommunication.prototype.sendMessage = function(a, b) { + b = void 0 === b ? this.to : b; + if (!b) { + throw Error("Message destination must be defined at construction time or when sending the message."); + } + b.postMessage(a.serialize(), "*"); +}; +module$exports$omid$common$PostMessageCommunication.prototype.isCrossOrigin = function() { + return this.to ? module$contents$omid$common$windowUtils_isCrossOrigin(this.to) : !0; +}; +var module$exports$omid$common$DetectOmid = {OMID_PRESENT_FRAME_NAME:"omid_v1_present", OMID_PRESENT_FRAME_NAME_WEB:"omid_v1_present_web", OMID_PRESENT_FRAME_NAME_APP:"omid_v1_present_app", getEnvironmentIframeName:function(a) { + var b = {}; + return (b[module$exports$omid$common$constants.Environment.APP] = module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_APP, b[module$exports$omid$common$constants.Environment.WEB] = module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_WEB, b)[a]; +}}; +function module$contents$omid$common$DetectOmid_isIframePresent(a, b) { + try { + return a.frames && !!a.frames[b]; + } catch (c) { + return !1; + } +} +module$exports$omid$common$DetectOmid.isOmidPresent = function(a) { + return [module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_WEB, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_APP,].some(function(b) { + return module$contents$omid$common$DetectOmid_isIframePresent(a, b); + }); +}; +module$exports$omid$common$DetectOmid.getOmidEnvironment = function(a) { + for (var b = $jscomp.makeIterator(Object.values(module$exports$omid$common$constants.Environment)), c = b.next(); !c.done; c = b.next()) { + c = c.value; + var d = module$exports$omid$common$DetectOmid.getEnvironmentIframeName(c); + if (module$contents$omid$common$DetectOmid_isIframePresent(a, d)) { + return c; + } + } + return null; +}; +function module$contents$omid$common$DetectOmid_writePresenceIframe_(a, b) { + a.document.write('')); +} +module$exports$omid$common$DetectOmid.declareOmidPresence = function(a, b) { + a.frames && a.document && ![module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_WEB, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME_APP,].some(function(c) { + return !!a.frames[c]; + }) && (null == a.document.body && module$exports$omid$common$DetectOmid.isMutationObserverAvailable_(a) ? module$exports$omid$common$DetectOmid.registerMutationObserver_(a, b) : (b = module$exports$omid$common$DetectOmid.getEnvironmentIframeName(b), a.document.body ? (module$exports$omid$common$DetectOmid.appendPresenceIframe_(a, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME), module$exports$omid$common$DetectOmid.appendPresenceIframe_(a, b)) : (module$contents$omid$common$DetectOmid_writePresenceIframe_(a, + module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME), module$contents$omid$common$DetectOmid_writePresenceIframe_(a, b)))); +}; +module$exports$omid$common$DetectOmid.appendPresenceIframe_ = function(a, b) { + var c = a.document.createElement("iframe"); + c.id = b; + c.name = b; + c.style.display = "none"; + c.sandbox = ""; + a.document.body.appendChild(c); +}; +module$exports$omid$common$DetectOmid.isMutationObserverAvailable_ = function(a) { + return "MutationObserver" in a; +}; +module$exports$omid$common$DetectOmid.registerMutationObserver_ = function(a, b) { + var c = new MutationObserver(function(d) { + d.forEach(function(e) { + "BODY" === e.addedNodes[0].nodeName && (e = module$exports$omid$common$DetectOmid.getEnvironmentIframeName(b), module$exports$omid$common$DetectOmid.appendPresenceIframe_(a, module$exports$omid$common$DetectOmid.OMID_PRESENT_FRAME_NAME), module$exports$omid$common$DetectOmid.appendPresenceIframe_(a, e), c.disconnect()); + }); + }); + c.observe(a.document.documentElement, {childList:!0}); +}; +var module$exports$omid$common$serviceCommunication = {}, module$contents$omid$common$serviceCommunication_EXPORTED_SESSION_COMMUNICATION_NAME = ["omid", "v1_SessionServiceCommunication"], module$contents$omid$common$serviceCommunication_EXPORTED_VERIFICATION_COMMUNICATION_NAME = ["omid", "v1_VerificationServiceCommunication"], module$contents$omid$common$serviceCommunication_EXPORTED_SERVICE_WINDOW_NAME = ["omidVerificationProperties", "serviceWindow"]; +function module$contents$omid$common$serviceCommunication_getValueForKeypath(a, b) { + return b.reduce(function(c, d) { + return c && c[d]; + }, a); +} +function module$contents$omid$common$serviceCommunication_startServiceCommunication(a, b, c, d) { + if (!module$contents$omid$common$windowUtils_isCrossOrigin(b)) { + try { + var e = module$contents$omid$common$serviceCommunication_getValueForKeypath(b, c); + if (e) { + return new module$exports$omid$common$DirectCommunication(e); + } + } catch (l) { + } + } + return d(b) ? new module$exports$omid$common$PostMessageCommunication(a, b) : null; +} +function module$contents$omid$common$serviceCommunication_startServiceCommunicationFromCandidates(a, b, c, d) { + b = $jscomp.makeIterator(b); + for (var e = b.next(); !e.done; e = b.next()) { + if (e = module$contents$omid$common$serviceCommunication_startServiceCommunication(a, e.value, c, d)) { + return e; + } + } + return null; +} +function module$contents$omid$common$serviceCommunication_startSessionServiceCommunication(a, b, c) { + c = void 0 === c ? module$exports$omid$common$DetectOmid.isOmidPresent : c; + var d = [a, module$contents$omid$common$windowUtils_resolveTopWindowContext(a)]; + b && d.unshift(b); + return module$contents$omid$common$serviceCommunication_startServiceCommunicationFromCandidates(a, d, module$contents$omid$common$serviceCommunication_EXPORTED_SESSION_COMMUNICATION_NAME, c); +} +function module$contents$omid$common$serviceCommunication_startVerificationServiceCommunication(a, b) { + b = void 0 === b ? module$exports$omid$common$DetectOmid.isOmidPresent : b; + var c = [], d = module$contents$omid$common$serviceCommunication_getValueForKeypath(a, module$contents$omid$common$serviceCommunication_EXPORTED_SERVICE_WINDOW_NAME); + d && c.push(d); + c.push(module$contents$omid$common$windowUtils_resolveTopWindowContext(a)); + return module$contents$omid$common$serviceCommunication_startServiceCommunicationFromCandidates(a, c, module$contents$omid$common$serviceCommunication_EXPORTED_VERIFICATION_COMMUNICATION_NAME, b); +} +module$exports$omid$common$serviceCommunication.startSessionServiceCommunication = module$contents$omid$common$serviceCommunication_startSessionServiceCommunication; +module$exports$omid$common$serviceCommunication.startVerificationServiceCommunication = module$contents$omid$common$serviceCommunication_startVerificationServiceCommunication; +var module$contents$omid$sessionClient$AdSession_SESSION_CLIENT_VERSION = module$exports$omid$common$version.Version, module$exports$omid$sessionClient$AdSession = function(a, b, c) { + module$contents$omid$common$argsChecker_assertNotNullObject("AdSession.context", a); + this.adSessionId_ = module$contents$omid$common$guid_generateGuid(); + this.context_ = a; + this.impressionOccurred_ = !1; + var d = this.context_.serviceWindow || void 0; + this.communication_ = b || module$contents$omid$common$serviceCommunication_startSessionServiceCommunication(module$contents$omid$common$windowUtils_resolveGlobalContext(), d); + this.sessionInterface_ = c || new module$exports$omid$sessionClient$OmidJsSessionInterface(); + this.isSessionRunning_ = this.hasMediaEvents_ = this.hasAdEvents_ = !1; + this.impressionType_ = this.creativeType_ = null; + this.creativeLoaded_ = !1; + this.callbackMap_ = {}; + this.communication_ && (this.communication_.onMessage = this.handleInternalMessage_.bind(this)); + this.setClientInfo_(); + this.injectVerificationScripts_(a.verificationScriptResources); + this.sendSlotElement_(a.slotElement); + this.sendVideoElement_(a.videoElement); + this.sendContentUrl_(a.contentUrl); + this.watchSessionEvents_(); +}; +module$exports$omid$sessionClient$AdSession.prototype.getAdSessionId = function() { + return this.adSessionId_; +}; +module$exports$omid$sessionClient$AdSession.prototype.setCreativeType = function(a) { + if (a === module$exports$omid$common$constants.CreativeType.DEFINED_BY_JAVASCRIPT) { + throw Error("Creative type cannot be redefined with value " + module$exports$omid$common$constants.CreativeType.DEFINED_BY_JAVASCRIPT); + } + if (this.impressionOccurred_) { + throw Error("Impression has already occurred"); + } + if (this.creativeLoaded_) { + throw Error("Creative has already loaded"); + } + if (this.creativeType_ && this.creativeType_ !== module$exports$omid$common$constants.CreativeType.DEFINED_BY_JAVASCRIPT) { + throw Error("Creative type cannot be redefined"); + } + if (void 0 === this.creativeType_) { + throw Error("Native integration is using OMID 1.2 or earlier"); + } + this.sendOneWayMessage("setCreativeType", a, this.adSessionId_); + this.creativeType_ = a; +}; +module$exports$omid$sessionClient$AdSession.prototype.setImpressionType = function(a) { + if (a === module$exports$omid$common$constants.ImpressionType.DEFINED_BY_JAVASCRIPT) { + throw Error("Impression type cannot be redefined with value " + module$exports$omid$common$constants.ImpressionType.DEFINED_BY_JAVASCRIPT); + } + if (this.impressionOccurred_) { + throw Error("Impression has already occurred"); + } + if (this.creativeLoaded_) { + throw Error("Creative has already loaded"); + } + if (this.impressionType_ && this.impressionType_ !== module$exports$omid$common$constants.ImpressionType.DEFINED_BY_JAVASCRIPT) { + throw Error("Impression type cannot be redefined"); + } + if (void 0 === this.impressionType_) { + throw Error("Native integration is using OMID 1.2 or earlier"); + } + this.sendOneWayMessage("setImpressionType", a, this.adSessionId_); + this.impressionType_ = a; +}; +module$exports$omid$sessionClient$AdSession.prototype.isSupported = function() { + return !!this.communication_ || this.sessionInterface_.isSupported(); +}; +module$exports$omid$sessionClient$AdSession.prototype.isSendingElementsSupported_ = function() { + return this.communication_ ? this.communication_.isDirectCommunication() : this.sessionInterface_.isSupported(); +}; +module$exports$omid$sessionClient$AdSession.prototype.registerSessionObserver = function(a) { + this.sendMessage("registerSessionObserver", a, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.start = function() { + this.sendOneWayMessage("startSession", {customReferenceData:this.context_.customReferenceData, underEvaluation:this.context_.underEvaluation,}, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.finish = function() { + this.sendOneWayMessage("finishSession", this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.error = function(a, b) { + this.sendOneWayMessage("sessionError", a, b, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.registerAdEvents = function() { + if (this.hasAdEvents_) { + throw Error("AdEvents already registered."); + } + this.hasAdEvents_ = !0; + this.sendOneWayMessage("registerAdEvents", this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.registerMediaEvents = function() { + if (this.hasMediaEvents_) { + throw Error("MediaEvents already registered."); + } + this.hasMediaEvents_ = !0; + this.sendOneWayMessage("registerMediaEvents", this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendOneWayMessage = function(a) { + var b = $jscomp.getRestArguments.apply(1, arguments); + this.sendMessage.apply(this, [a, null].concat($jscomp.arrayFromIterable(b))); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendMessage = function(a, b) { + var c = $jscomp.getRestArguments.apply(2, arguments); + this.communication_ ? this.sendInternalMessage_(a, b, c) : this.sessionInterface_.isSupported() && this.sendInterfaceMessage_(a, b, c); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendInternalMessage_ = function(a, b, c) { + var d = module$contents$omid$common$guid_generateGuid(); + b && (this.callbackMap_[d] = b); + a = new module$exports$omid$common$InternalMessage(d, module$contents$omid$common$serviceMethodUtils_getPrefixedSessionServiceMethod(a), module$exports$omid$common$version.Version, module$contents$omid$common$ArgsSerDe_serializeMessageArgs(module$exports$omid$common$version.Version, c)); + this.communication_.sendMessage(a); +}; +module$exports$omid$sessionClient$AdSession.prototype.handleInternalMessage_ = function(a, b) { + b = a.method; + var c = a.guid; + a = a.args; + if ("response" === b && this.callbackMap_[c]) { + var d = module$contents$omid$common$ArgsSerDe_deserializeMessageArgs(module$exports$omid$common$version.Version, a); + this.callbackMap_[c].apply(this, d); + } + "error" === b && window.console && module$contents$omid$common$logger_error(a); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendInterfaceMessage_ = function(a, b, c) { + try { + this.sessionInterface_.sendMessage(a, b, c); + } catch (d) { + module$contents$omid$common$logger_error("Failed to communicate with SessionInterface with error:"), module$contents$omid$common$logger_error(d); + } +}; +module$exports$omid$sessionClient$AdSession.prototype.assertSessionRunning = function() { + if (!this.isSessionRunning_) { + throw Error("Session not started."); + } +}; +module$exports$omid$sessionClient$AdSession.prototype.impressionOccurred = function() { + if (this.creativeType_ === module$exports$omid$common$constants.CreativeType.DEFINED_BY_JAVASCRIPT) { + throw Error("Creative type has not been redefined"); + } + if (this.impressionType_ === module$exports$omid$common$constants.ImpressionType.DEFINED_BY_JAVASCRIPT) { + throw Error("Impression type has not been redefined"); + } + this.impressionOccurred_ = !0; +}; +module$exports$omid$sessionClient$AdSession.prototype.creativeLoaded = function() { + if (this.creativeType_ === module$exports$omid$common$constants.CreativeType.DEFINED_BY_JAVASCRIPT) { + throw Error("Creative type has not been redefined"); + } + if (this.impressionType_ === module$exports$omid$common$constants.ImpressionType.DEFINED_BY_JAVASCRIPT) { + throw Error("Impression type has not been redefined"); + } + this.creativeLoaded_ = !0; +}; +module$exports$omid$sessionClient$AdSession.prototype.setClientInfo_ = function() { + this.sendOneWayMessage("setClientInfo", module$exports$omid$common$version.Version, this.context_.partner.name, this.context_.partner.version, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.injectVerificationScripts_ = function(a) { + a && (a = a.map(function(b) { + return b.toJSON(); + }), this.sendOneWayMessage("injectVerificationScriptResources", a, this.adSessionId_)); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendSlotElement_ = function(a) { + this.sendElement_(a, "setSlotElement"); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendVideoElement_ = function(a) { + this.sendElement_(a, "setVideoElement"); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendElement_ = function(a, b) { + a && (this.isSendingElementsSupported_() ? this.sendOneWayMessage(b, a, this.adSessionId_) : this.error(module$exports$omid$common$constants.ErrorType.GENERIC, "Session Client " + b + " called when communication is cross-origin")); +}; +module$exports$omid$sessionClient$AdSession.prototype.sendContentUrl_ = function(a) { + a && this.sendOneWayMessage("setContentUrl", a, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.setElementBounds = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("AdSession.elementBounds", a); + this.sendOneWayMessage("setElementBounds", a, this.adSessionId_); +}; +module$exports$omid$sessionClient$AdSession.prototype.watchSessionEvents_ = function() { + var a = this; + this.registerSessionObserver(function(b) { + b.type === module$exports$omid$common$constants.AdEventType.SESSION_START && (a.isSessionRunning_ = !0, a.creativeType_ = b.data.creativeType, a.impressionType_ = b.data.impressionType); + b.type === module$exports$omid$common$constants.AdEventType.SESSION_FINISH && (a.isSessionRunning_ = !1); + }); +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.AdSession", module$exports$omid$sessionClient$AdSession); +var module$exports$omid$common$VastProperties = function(a, b, c, d) { + this.isSkippable = a; + this.skipOffset = b; + this.isAutoPlay = c; + this.position = d; +}; +module$exports$omid$common$VastProperties.prototype.toJSON = function() { + return {isSkippable:this.isSkippable, skipOffset:this.skipOffset, isAutoPlay:this.isAutoPlay, position:this.position,}; +}; +var module$exports$omid$sessionClient$AdEvents = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("AdEvents.adSession", a); + this.adSessionId_ = a.getAdSessionId(); + try { + a.registerAdEvents(), this.adSession = a; + } catch (b) { + throw Error("AdSession already has an ad events instance registered"); + } +}; +module$exports$omid$sessionClient$AdEvents.prototype.impressionOccurred = function() { + this.adSession.assertSessionRunning(); + this.adSession.impressionOccurred(); + this.adSession.sendOneWayMessage("impressionOccurred", this.adSessionId_); +}; +module$exports$omid$sessionClient$AdEvents.prototype.loaded = function(a) { + a = void 0 === a ? null : a; + this.adSession.creativeLoaded(); + a = a ? a.toJSON() : null; + this.adSession.sendOneWayMessage("loaded", a, this.adSessionId_); +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.AdEvents", module$exports$omid$sessionClient$AdEvents); +var module$exports$omid$sessionClient$MediaEvents = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("MediaEvents.adSession", a); + this.adSessionId_ = a.getAdSessionId(); + try { + a.registerMediaEvents(), this.adSession = a; + } catch (b) { + throw Error("AdSession already has a media events instance registered"); + } +}; +module$exports$omid$sessionClient$MediaEvents.prototype.start = function(a, b) { + module$contents$omid$common$argsChecker_assertNumber("MediaEvents.start.duration", a); + module$contents$omid$common$argsChecker_assertNumberBetween("MediaEvents.start.mediaPlayerVolume", b, 0, 1); + this.adSession.sendOneWayMessage("start", a, b, this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.firstQuartile = function() { + this.adSession.sendOneWayMessage("firstQuartile", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.midpoint = function() { + this.adSession.sendOneWayMessage("midpoint", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.thirdQuartile = function() { + this.adSession.sendOneWayMessage("thirdQuartile", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.complete = function() { + this.adSession.sendOneWayMessage("complete", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.pause = function() { + this.adSession.sendOneWayMessage("pause", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.resume = function() { + this.adSession.sendOneWayMessage("resume", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.bufferStart = function() { + this.adSession.sendOneWayMessage("bufferStart", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.bufferFinish = function() { + this.adSession.sendOneWayMessage("bufferFinish", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.skipped = function() { + this.adSession.sendOneWayMessage("skipped", this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.volumeChange = function(a) { + module$contents$omid$common$argsChecker_assertNumberBetween("MediaEvents.volumeChange.mediaPlayerVolume", a, 0, 1); + this.adSession.sendOneWayMessage("volumeChange", a, this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.playerStateChange = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("MediaEvents.playerStateChange.playerState", a); + this.adSession.sendOneWayMessage("playerStateChange", a, this.adSessionId_); +}; +module$exports$omid$sessionClient$MediaEvents.prototype.adUserInteraction = function(a) { + module$contents$omid$common$argsChecker_assertNotNullObject("MediaEvents.adUserInteraction.interactionType", a); + this.adSession.sendOneWayMessage("adUserInteraction", a, this.adSessionId_); +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.MediaEvents", module$exports$omid$sessionClient$MediaEvents); +var module$exports$omid$sessionClient$OmidVersion = function(a, b) { + module$contents$omid$common$argsChecker_assertTruthyString("OmidVersion.semanticVersion", a); + module$contents$omid$common$argsChecker_assertTruthyString("OmidVersion.apiLevel", b); +}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.OmidVersion", module$exports$omid$sessionClient$OmidVersion); +var module$exports$omid$sessionClient$ServiceCommunication = {}; +function module$contents$omid$sessionClient$ServiceCommunication_listenForServiceWindow(a) { + var b = module$contents$omid$common$windowUtils_resolveGlobalContext(); + (new module$exports$omid$common$PostMessageCommunication(b)).onMessage = function(c, d) { + c.method === module$exports$omid$common$constants.MessageMethod.IDENTIFY_SERVICE_WINDOW && a(d); + }; +} +module$contents$omid$common$exporter_packageExport("OmidSessionClient.listenForServiceWindow", module$contents$omid$sessionClient$ServiceCommunication_listenForServiceWindow); +module$exports$omid$sessionClient$ServiceCommunication.listenForServiceWindow = module$contents$omid$sessionClient$ServiceCommunication_listenForServiceWindow; +var module$exports$omid$sessionClient$VastPropertiesExports = {}; +module$contents$omid$common$exporter_packageExport("OmidSessionClient.VastProperties", module$exports$omid$common$VastProperties); +var module$exports$omid$sessionClient$VerificationVendor = {VerificationVendorId:{OTHER:1, MOAT:2, DOUBLEVERIFY:3, INTEGRAL_AD_SCIENCE:4, PIXELATE:5, NIELSEN:6, COMSCORE:7, MEETRICS:8, GOOGLE:9,}}; +function module$contents$omid$sessionClient$VerificationVendor_verificationVendorIdForScriptUrl(a) { + for (var b = $jscomp.makeIterator(module$contents$omid$sessionClient$VerificationVendor_VERIFICATION_VENDORS.keys()), c = b.next(); !c.done; c = b.next()) { + c = c.value; + for (var d = $jscomp.makeIterator(module$contents$omid$sessionClient$VerificationVendor_VERIFICATION_VENDORS.get(c)), e = d.next(); !e.done; e = d.next()) { + if (e.value.test(a)) { + return c; + } + } + } + return module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.OTHER; +} +var module$contents$omid$sessionClient$VerificationVendor_VERIFICATION_VENDORS = new Map([[module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.MOAT, [/^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.moatads\.com\/.*$/,],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.DOUBLEVERIFY, [/^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.doubleverify\.com\/.*$/, /^(https?:\/\/|\/\/)?c\.[\w\-]+\.com\/vfw\/dv\/.*$/, /^(https?:\/\/|\/\/)?(www\.)?[\w]+\.tv\/r\/s\/d\/.*$/, /^(https?:\/\/|\/\/)?(\w\.?)+\.dv\.tech\/.*$/, +],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.INTEGRAL_AD_SCIENCE, [/^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.adsafeprotected\.com\/.*$/,],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.PIXELATE, [/^https?:\/\/(q|cdn)\.adrta\.com\/s\/.*\/(aa|aanf)\.js.*$/, /^https:\/\/cdn\.rta247\.com\/s\/.*\/(aa|aanf)\.js.*$/,],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.NIELSEN, [],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.COMSCORE, +[/^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.voicefive\.com\/.*$/, /^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.measuread\.com\/.*$/, /^(https?:\/\/|\/\/)?[-a-zA-Z0-9.]+\.scorecardresearch\.com\/.*$/,],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.MEETRICS, [/^(https?:\/\/|\/\/)?s418\.mxcdn\.net\/bb-serve\/omid-meetrics.*\.js$/,],], [module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId.GOOGLE, [/^(https?:\/\/|\/\/)?pagead2\.googlesyndication\.com\/.*$/, /^(https?:\/\/|\/\/)?www\.googletagservices\.com\/.*$/, +],],]); +module$contents$omid$common$exporter_packageExport("OmidSessionClient.verificationVendorIdForScriptUrl", module$contents$omid$sessionClient$VerificationVendor_verificationVendorIdForScriptUrl); +module$contents$omid$common$exporter_packageExport("OmidSessionClient.VerificationVendorId", module$exports$omid$sessionClient$VerificationVendor.VerificationVendorId); +module$exports$omid$sessionClient$VerificationVendor.verificationVendorIdForScriptUrl = module$contents$omid$sessionClient$VerificationVendor_verificationVendorIdForScriptUrl; +var module$exports$omid$common$FloatComparer = {}, module$contents$omid$common$FloatComparer_FLOAT_ROUGH_DIFF_TOLERANCE = 0.01; +function module$contents$omid$common$FloatComparer_roughlyEqual(a, b) { + return Math.abs(a - b) < module$contents$omid$common$FloatComparer_FLOAT_ROUGH_DIFF_TOLERANCE; +} +function module$contents$omid$common$FloatComparer_roughlyLessThan(a, b) { + return b - a > module$contents$omid$common$FloatComparer_FLOAT_ROUGH_DIFF_TOLERANCE; +} +function module$contents$omid$common$FloatComparer_lessThanOrRoughlyEqual(a, b) { + return a < b || module$contents$omid$common$FloatComparer_roughlyEqual(a, b); +} +function module$contents$omid$common$FloatComparer_greaterThanOrRoughlyEqual(a, b) { + return a > b || module$contents$omid$common$FloatComparer_roughlyEqual(a, b); +} +module$exports$omid$common$FloatComparer.roughlyLessThan = module$contents$omid$common$FloatComparer_roughlyLessThan; +module$exports$omid$common$FloatComparer.lessThanOrRoughlyEqual = module$contents$omid$common$FloatComparer_lessThanOrRoughlyEqual; +module$exports$omid$common$FloatComparer.greaterThanOrRoughlyEqual = module$contents$omid$common$FloatComparer_greaterThanOrRoughlyEqual; + +}, typeof exports === 'undefined' ? undefined : exports)); + diff --git a/plugins/2018.3326/iphone-sim/UnityAds.framework/omsdk-v1.js b/plugins/2018.3326/iphone-sim/UnityAds.framework/omsdk-v1.js new file mode 100644 index 0000000..a3faac7 --- /dev/null +++ b/plugins/2018.3326/iphone-sim/UnityAds.framework/omsdk-v1.js @@ -0,0 +1,87 @@ +;(function(omidGlobal) { + var m;function aa(a){var b=0;return function(){return b>>0)+'_',e=0;return b}); +u('Symbol.iterator',function(a){if(a)return a;a=Symbol('Symbol.iterator');for(var b='Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' '),c=0;cc&&(c=Math.max(c+e,0));cMath.abs(f-c))||(f=b.x,f=f>e||.01>Math.abs(f-e));(e=f)||(e=b.endY,e=eMath.abs(e-d));(d=e)||(b=b.y,d=b>a||.01>Math.abs(b-a));b=!d}return b}function K(a,b){for(var c=!1,d=0;dh&&H.yt){y=!0;break}}y&&(f+=Math.round(l)*Math.round(C))}}return c.call(b,0,d-f)};function Ga(){};function Ha(){} +function Ia(a,b,c,d,e){var f=new J;b=new A(b,!1);Aa(f,b);Ja(a,b,f,d);if(!e)return f.i=['unmeasurable'],f.s=void 0,f.A=0,f.j=[],f.g&&(a=f.g,c={},a=new A((c.x=0,c.y=0,c.width=a.width,c.height=a.height,c),a.g),f.g=a),f.h=Ba(),f;b.noOutputDevice&&(K(f,'backgrounded'),K(f,'noOutputDevice'));if('backgrounded'===c)K(f,'backgrounded');else if(void 0!==f.g){for(a=0;ad.time&&(d=b[e]);c=d;a.j=Kb(c.rootBounds);a.g=Kb(c.boundingClientRect);a.C=Kb(c.intersectionRect);a.N=!!c.isIntersecting;Bb(a)}}catch(f){a.A(),bb(a.L,'generic','Problem handling IntersectionObserver callback: '+f.message)}},{root:null,rootMargin:'0px',threshold:[0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]})} +function Jb(a){a.m.ResizeObserver?a.u||(a.u=Lb(a,function(){return Mb(a)}),a.u.observe(a.h)):(a.v||(a.v=function(){return Mb(a)},(0,a.m.addEventListener)('resize',a.v)),a.s||(a.s=new MutationObserver(function(){return Mb(a)}),a.s.observe(a.h,{childList:!1,attributes:!0,subtree:!1})))}function Mb(a){a.h&&!Ib(a.h)&&(Hb(a),Fb(a))}function Lb(a,b){return new a.m.ResizeObserver(b)}function Kb(a){if(a&&null!==a.x&&null!==a.y&&null!==a.width&&null!==a.height)return new A(a,!1)};function Ob(a,b){this.h=a;this.g=b};function Pb(){return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(a){var b=16*Math.random()|0;return'y'===a?(b&3|8).toString(16):b.toString(16)})};function Qb(a,b){var c=void 0===c?L:c;this.j=a;this.g=c;this.i=b;this.h=[]} +function Rb(a){if(!a.g||!a.g.document)throw Error('OMID Service Script is not running within a window.');var b=a.h;a.h=[];b.forEach(function(c){try{var d=a.i.I?'limited':'full',e=R(c.accessMode,qa)?c.accessMode:null;var f=e?'full'==e&&'limited'==d?d:'domain'==e?'limited':e:d;c.accessMode=f;a:{var k=c.resourceUrl,g=a.g.location.origin;try{var h=new URL(k,g);break a}catch(G){}try{h=new URL(k);break a}catch(G){}h=null}if(d=h){var l=Pb(),n=a.g.document,t=n.createElement('iframe');t.id='omid-verification-script-frame-'+ +l;t.style.display='none';['full','limited'].includes(f)?t.srcdoc="\n