wenum 1.62.0 → 1.64.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 +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
- package/src/page/post.ts +3 -3
- package/src/page/profile/market/type/index.ts +11 -1
package/dist/index.d.mts
CHANGED
|
@@ -22,7 +22,8 @@ type MarketTypeTennis = '0_coaching' | '1_stringing';
|
|
|
22
22
|
|
|
23
23
|
type MarketTypeSports = MarketTypeTennis;
|
|
24
24
|
|
|
25
|
-
type
|
|
25
|
+
type CommonMarketType = "0_shop" | "1_repair" | "2_rental" | "3_exchange" | "4_giveaway" | "5_lost" | "6_found" | "other";
|
|
26
|
+
type MarketType = CommonMarketType | MarketTypePets | MarketTypeSports;
|
|
26
27
|
|
|
27
28
|
type CollectionMetaStatus = "inactive" | "active" | "none";
|
|
28
29
|
|
|
@@ -80,7 +81,7 @@ type ProfileJoiningType = "gameToLeaderboard" | "playerToGame" | "memberToCircle
|
|
|
80
81
|
|
|
81
82
|
type PlayerType = 'uoi' | 'team' | 'collection';
|
|
82
83
|
|
|
83
|
-
type PostType = "none" | "
|
|
84
|
+
type PostType = "none" | "text" | "image" | "poll";
|
|
84
85
|
type PostPrivacy = "public" | "private" | "parent" | "internal";
|
|
85
86
|
|
|
86
87
|
type LocationType = "none" | "point" | "street" | "city";
|
|
@@ -190,4 +191,4 @@ declare const getProfileAttributeLabel: ({ profileType, categoryType, interestTy
|
|
|
190
191
|
attributeType: AttributeType;
|
|
191
192
|
}) => any;
|
|
192
193
|
|
|
193
|
-
export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COLLECTION_PETS, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, type AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, type AttributeTypeCollectionPets, type AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, type AttributeTypeUoiSportsBasketball, type AttributeTypeUoiSportsTennis, AvatarType, BasketballPosition, type BroadcastType, type BuddyingStatus, type CardGamesInterestType, type CategoryType, ChallengeStatus, type CollectionMetaStatus, type CollectionType, type DuelGameResultType, FollowingStatus, type GameType, type Gender, type Handedness, type InterestType, type LeaderboardType, type LengthUnit, type LocationType, type MarketMetaStatus, type MarketType, type MemberingStatus, type MusicInterestType, type NotificationType, type PIDPrefixType, PID_LENGTH, PID_PREFIX_LENGTH, type PageType, type PetsInterestType, type PlayerType, type PostPrivacy, type PostType, type ProfileJoiningType, type ProfilePermission, type ProfilePrivacy, type ProfileStatus, type ProfileType, type SocialMediaType, type SportsInterestType, type SubjectType, type TennisBackhand, type TennisLevel, type UserPronoun, type WeightUnit, getPIDPrefixByProfileType, getProfileAttributeLabel, getProfileTypeByPID, isGamePID, isLeaderboardPID, isTeamPID, isUoiPID };
|
|
194
|
+
export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COLLECTION_PETS, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, type AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, type AttributeTypeCollectionPets, type AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, type AttributeTypeUoiSportsBasketball, type AttributeTypeUoiSportsTennis, AvatarType, BasketballPosition, type BroadcastType, type BuddyingStatus, type CardGamesInterestType, type CategoryType, ChallengeStatus, type CollectionMetaStatus, type CollectionType, type CommonMarketType, type DuelGameResultType, FollowingStatus, type GameType, type Gender, type Handedness, type InterestType, type LeaderboardType, type LengthUnit, type LocationType, type MarketMetaStatus, type MarketType, type MemberingStatus, type MusicInterestType, type NotificationType, type PIDPrefixType, PID_LENGTH, PID_PREFIX_LENGTH, type PageType, type PetsInterestType, type PlayerType, type PostPrivacy, type PostType, type ProfileJoiningType, type ProfilePermission, type ProfilePrivacy, type ProfileStatus, type ProfileType, type SocialMediaType, type SportsInterestType, type SubjectType, type TennisBackhand, type TennisLevel, type UserPronoun, type WeightUnit, getPIDPrefixByProfileType, getProfileAttributeLabel, getProfileTypeByPID, isGamePID, isLeaderboardPID, isTeamPID, isUoiPID };
|
package/dist/index.d.ts
CHANGED
|
@@ -22,7 +22,8 @@ type MarketTypeTennis = '0_coaching' | '1_stringing';
|
|
|
22
22
|
|
|
23
23
|
type MarketTypeSports = MarketTypeTennis;
|
|
24
24
|
|
|
25
|
-
type
|
|
25
|
+
type CommonMarketType = "0_shop" | "1_repair" | "2_rental" | "3_exchange" | "4_giveaway" | "5_lost" | "6_found" | "other";
|
|
26
|
+
type MarketType = CommonMarketType | MarketTypePets | MarketTypeSports;
|
|
26
27
|
|
|
27
28
|
type CollectionMetaStatus = "inactive" | "active" | "none";
|
|
28
29
|
|
|
@@ -80,7 +81,7 @@ type ProfileJoiningType = "gameToLeaderboard" | "playerToGame" | "memberToCircle
|
|
|
80
81
|
|
|
81
82
|
type PlayerType = 'uoi' | 'team' | 'collection';
|
|
82
83
|
|
|
83
|
-
type PostType = "none" | "
|
|
84
|
+
type PostType = "none" | "text" | "image" | "poll";
|
|
84
85
|
type PostPrivacy = "public" | "private" | "parent" | "internal";
|
|
85
86
|
|
|
86
87
|
type LocationType = "none" | "point" | "street" | "city";
|
|
@@ -190,4 +191,4 @@ declare const getProfileAttributeLabel: ({ profileType, categoryType, interestTy
|
|
|
190
191
|
attributeType: AttributeType;
|
|
191
192
|
}) => any;
|
|
192
193
|
|
|
193
|
-
export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COLLECTION_PETS, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, type AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, type AttributeTypeCollectionPets, type AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, type AttributeTypeUoiSportsBasketball, type AttributeTypeUoiSportsTennis, AvatarType, BasketballPosition, type BroadcastType, type BuddyingStatus, type CardGamesInterestType, type CategoryType, ChallengeStatus, type CollectionMetaStatus, type CollectionType, type DuelGameResultType, FollowingStatus, type GameType, type Gender, type Handedness, type InterestType, type LeaderboardType, type LengthUnit, type LocationType, type MarketMetaStatus, type MarketType, type MemberingStatus, type MusicInterestType, type NotificationType, type PIDPrefixType, PID_LENGTH, PID_PREFIX_LENGTH, type PageType, type PetsInterestType, type PlayerType, type PostPrivacy, type PostType, type ProfileJoiningType, type ProfilePermission, type ProfilePrivacy, type ProfileStatus, type ProfileType, type SocialMediaType, type SportsInterestType, type SubjectType, type TennisBackhand, type TennisLevel, type UserPronoun, type WeightUnit, getPIDPrefixByProfileType, getProfileAttributeLabel, getProfileTypeByPID, isGamePID, isLeaderboardPID, isTeamPID, isUoiPID };
|
|
194
|
+
export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COLLECTION_PETS, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, type AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, type AttributeTypeCollectionPets, type AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, type AttributeTypeUoiSportsBasketball, type AttributeTypeUoiSportsTennis, AvatarType, BasketballPosition, type BroadcastType, type BuddyingStatus, type CardGamesInterestType, type CategoryType, ChallengeStatus, type CollectionMetaStatus, type CollectionType, type CommonMarketType, type DuelGameResultType, FollowingStatus, type GameType, type Gender, type Handedness, type InterestType, type LeaderboardType, type LengthUnit, type LocationType, type MarketMetaStatus, type MarketType, type MemberingStatus, type MusicInterestType, type NotificationType, type PIDPrefixType, PID_LENGTH, PID_PREFIX_LENGTH, type PageType, type PetsInterestType, type PlayerType, type PostPrivacy, type PostType, type ProfileJoiningType, type ProfilePermission, type ProfilePrivacy, type ProfileStatus, type ProfileType, type SocialMediaType, type SportsInterestType, type SubjectType, type TennisBackhand, type TennisLevel, type UserPronoun, type WeightUnit, getPIDPrefixByProfileType, getProfileAttributeLabel, getProfileTypeByPID, isGamePID, isLeaderboardPID, isTeamPID, isUoiPID };
|
package/package.json
CHANGED
package/src/page/post.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import { MarketTypePets } from './pets';
|
|
2
2
|
import { MarketTypeSports } from './sports';
|
|
3
3
|
|
|
4
|
-
export type
|
|
4
|
+
export type CommonMarketType =
|
|
5
|
+
"0_shop" |
|
|
6
|
+
"1_repair" |
|
|
7
|
+
"2_rental" |
|
|
8
|
+
"3_exchange" |
|
|
9
|
+
"4_giveaway" |
|
|
10
|
+
"5_lost" |
|
|
11
|
+
"6_found" |
|
|
12
|
+
"other";
|
|
13
|
+
|
|
14
|
+
export type MarketType = CommonMarketType | MarketTypePets | MarketTypeSports;
|