@crimson-education/replit-sdk 1.0.2-beta-16 → 1.0.2-beta-17
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 +2 -2
- package/package.json +1 -1
package/Readme.md
CHANGED
|
@@ -30,7 +30,7 @@ To integrate your Replit app into the Crimson ecosystem, follow these steps:
|
|
|
30
30
|
### 1. Install the SDK
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install @crimson-education/replit-sdk@1.0.2-beta-
|
|
33
|
+
npm install @crimson-education/replit-sdk@1.0.2-beta-16
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### 2. Wrap your App with DevProvider
|
|
@@ -91,7 +91,7 @@ import { ExternalLink } from '@crimson-education/replit-sdk';
|
|
|
91
91
|
import { init as datadogInit, trackEvent } from '@crimson-education/replit-sdk';
|
|
92
92
|
|
|
93
93
|
datadogInit({ app: 'your-replit-app-name' });
|
|
94
|
-
trackEvent('APP_LAUNCHED');
|
|
94
|
+
trackEvent({ action: 'APP_LAUNCHED' });
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
### 7. Fetch Crimson Data
|