@selfcommunity/types 0.5.0-alpha.17 → 0.5.0-alpha.19

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.
@@ -14,7 +14,7 @@ export interface SCContributionLocation {
14
14
  /**
15
15
  * Longitude
16
16
  */
17
- lon?: number;
17
+ lng?: number;
18
18
  }
19
19
  /**
20
20
  * Interface SCLocalityType.
@@ -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
  */
@@ -14,7 +14,7 @@ export interface SCContributionLocation {
14
14
  /**
15
15
  * Longitude
16
16
  */
17
- lon?: number;
17
+ lng?: number;
18
18
  }
19
19
  /**
20
20
  * Interface SCLocalityType.
@@ -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.17",
3
+ "version": "0.5.0-alpha.19",
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": "59804b07495854e2650c6906405e07441cf33745"
104
+ "gitHead": "5ea32a4f47f9c28fa71295b6d6963cf95c87d511"
105
105
  }