wenum 1.62.0 → 1.63.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/dist/index.d.mts CHANGED
@@ -80,7 +80,7 @@ type ProfileJoiningType = "gameToLeaderboard" | "playerToGame" | "memberToCircle
80
80
 
81
81
  type PlayerType = 'uoi' | 'team' | 'collection';
82
82
 
83
- type PostType = "none" | "textPost" | "imagePost" | "pollPost";
83
+ type PostType = "none" | "text" | "image" | "poll";
84
84
  type PostPrivacy = "public" | "private" | "parent" | "internal";
85
85
 
86
86
  type LocationType = "none" | "point" | "street" | "city";
package/dist/index.d.ts CHANGED
@@ -80,7 +80,7 @@ type ProfileJoiningType = "gameToLeaderboard" | "playerToGame" | "memberToCircle
80
80
 
81
81
  type PlayerType = 'uoi' | 'team' | 'collection';
82
82
 
83
- type PostType = "none" | "textPost" | "imagePost" | "pollPost";
83
+ type PostType = "none" | "text" | "image" | "poll";
84
84
  type PostPrivacy = "public" | "private" | "parent" | "internal";
85
85
 
86
86
  type LocationType = "none" | "point" | "street" | "city";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.62.0",
3
+ "version": "1.63.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/src/page/post.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export type PostType =
2
2
  "none" |
3
- "textPost" |
4
- "imagePost" |
5
- "pollPost";
3
+ "text" |
4
+ "image" |
5
+ "poll";
6
6
 
7
7
  export type PostPrivacy =
8
8
  "public" |