com.puzzlescapegames.singular_adapter 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -86,6 +86,11 @@ namespace PuzzlescapeGames.SingularAdapter
86
86
  #endif
87
87
  }
88
88
 
89
+ public void SendAdRevenue( string adPlatform, double revenue, string currency = "USD" )
90
+ {
91
+ SingularSDK.AdRevenue( new SingularAdData( adPlatform, currency, revenue) );
92
+ }
93
+
89
94
  public void SendIAPPurchase( Order order, bool isRestoredTransaction = false )
90
95
  {
91
96
  SingularSDK.InAppPurchase( order, isRestoredTransaction );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.singular_adapter",
3
3
  "displayName" : "Puzzlescape Games Singular Adapter",
4
- "version" : "1.0.5",
4
+ "version" : "1.0.6",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Singular adapter.",
7
7
  "repository": {