@trycourier/courier-ui-inbox 2.3.0 → 2.4.0

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
@@ -49,7 +49,11 @@ The SDK requires a JWT (JSON Web Token) for authentication. **Always generate JW
49
49
  3. Your backend returns the JWT to your client and passes it to the SDK.
50
50
 
51
51
  ```bash
52
- curl --request POST --url https://api.courier.com/auth/issue-token --header 'Authorization: Bearer $YOUR_API_KEY' --header 'Content-Type: application/json' --data '{
52
+ curl --request POST \
53
+ --url https://api.courier.com/auth/issue-token \
54
+ --header 'Authorization: Bearer $YOUR_API_KEY' \
55
+ --header 'Content-Type: application/json' \
56
+ --data '{
53
57
  "scope": "user_id:$YOUR_USER_ID inbox:read:messages inbox:write:events",
54
58
  "expires_in": "1 day"
55
59
  }'