@selfcommunity/types 0.5.0-alpha.17 → 0.5.0-alpha.18
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/lib/cjs/types/user.d.ts
CHANGED
|
@@ -188,6 +188,10 @@ export interface SCUserType {
|
|
|
188
188
|
* Datetime of the account deletion
|
|
189
189
|
*/
|
|
190
190
|
deleted_at?: Date;
|
|
191
|
+
/**
|
|
192
|
+
* If the logged user is able to send a private message to the requested user (visible only in the get a specific user api response).
|
|
193
|
+
*/
|
|
194
|
+
can_send_pm_to?: boolean;
|
|
191
195
|
/**
|
|
192
196
|
* Custom user metadata fields
|
|
193
197
|
*/
|
package/lib/esm/types/user.d.ts
CHANGED
|
@@ -188,6 +188,10 @@ export interface SCUserType {
|
|
|
188
188
|
* Datetime of the account deletion
|
|
189
189
|
*/
|
|
190
190
|
deleted_at?: Date;
|
|
191
|
+
/**
|
|
192
|
+
* If the logged user is able to send a private message to the requested user (visible only in the get a specific user api response).
|
|
193
|
+
*/
|
|
194
|
+
can_send_pm_to?: boolean;
|
|
191
195
|
/**
|
|
192
196
|
* Custom user metadata fields
|
|
193
197
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/types",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"bugs": {
|
|
102
102
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "adf7704d699c08089bd96b4223b707296642005a"
|
|
105
105
|
}
|