@chrome-stats/app-pass-sdk 1.0.4 → 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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,6 +37,16 @@ import { activateAppPass } from '@chrome-stats/app-pass-sdk';
37
37
  const response = await activateAppPass();
38
38
  ```
39
39
 
40
+ ### Manage App Pass
41
+
42
+ To open the App Pass management page:
43
+
44
+ ```typescript
45
+ import { manageAppPass } from '@chrome-stats/app-pass-sdk';
46
+
47
+ await manageAppPass();
48
+ ```
49
+
40
50
  ### Server-Side Verification
41
51
 
42
52
  If you need to verify the App Pass status on your server (e.g., to unlock premium features in your backend), follow these steps:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrome-stats/app-pass-sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "SDK for Chrome Stats App Pass integration",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",