@arkadiuminc/sdk 2.16.0 → 2.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ main();
|
|
|
32
32
|
## Reference documents
|
|
33
33
|
|
|
34
34
|
- Analytics
|
|
35
|
-
- [App Insights](
|
|
35
|
+
- [App Insights](https://arkadium.atlassian.net/wiki/spaces/PhoenixGames/pages/23897655/AppInsights+game+integration)
|
|
36
36
|
- [Standardized Spec for every game](https://arkadium.atlassian.net/wiki/spaces/DepartmentBusinessOperations/pages/23675756/Standardized+Spec+for+every+game+-+GA+AppInsights)
|
|
37
37
|
- [AppInsight stamper](https://arkadium.atlassian.net/wiki/spaces/PhoenixGames/pages/23993424/AppInsight+stamper)
|
|
38
38
|
- [Adaptive Sampling Implementation](https://arkadium.atlassian.net/wiki/spaces/PhoenixGames/pages/23897949/Adaptive+Sampling+Implementation)
|
|
@@ -104,13 +104,23 @@ export declare class AnalyticsApiProxy implements AnalyticsApiContract {
|
|
|
104
104
|
*/
|
|
105
105
|
sendFirstRightAnswerEvent(dimensions?: DimensionsObject): void;
|
|
106
106
|
/**
|
|
107
|
+
* @deprecated
|
|
107
108
|
* User made first match (for match-3, mahjongg and other applicable games)
|
|
108
109
|
*/
|
|
109
110
|
sendFirsMatchEvent(dimensions?: DimensionsObject): void;
|
|
110
111
|
/**
|
|
112
|
+
* User made first match (for match-3, mahjongg and other applicable games)
|
|
113
|
+
*/
|
|
114
|
+
sendFirstMatchEvent(dimensions?: DimensionsObject): void;
|
|
115
|
+
/**
|
|
116
|
+
* @deprecated
|
|
111
117
|
* User made first shot (for shooters and other applicable games)
|
|
112
118
|
*/
|
|
113
119
|
sendFirsShotEvent(dimensions?: DimensionsObject): void;
|
|
120
|
+
/**
|
|
121
|
+
* User made first shot (for shooters and other applicable games)
|
|
122
|
+
*/
|
|
123
|
+
sendFirstShotEvent(dimensions?: DimensionsObject): void;
|
|
114
124
|
/**
|
|
115
125
|
* Users started new Round (Level). First round is Round 1 (not 0) (applicable for games with evergreen logic, not infinite games - before Nest changes to gameplay)
|
|
116
126
|
*/
|