@seayoo-web/gamer-api 4.3.2 → 4.3.3

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.js CHANGED
@@ -984,7 +984,7 @@ var p = "gamer_token", ce = class {
984
984
  feature_type: f.string().enum(Ln),
985
985
  config: f.object({
986
986
  max_recent_invitees: f.number(),
987
- referral_tier: f.array(Rn)
987
+ referral_tiers: f.array(Rn).optional()
988
988
  })
989
989
  }), Bn = T.Register, Vn = f.object({
990
990
  ...P.shape,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/gamer-api",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "agent for gamer api",
5
5
  "license": "MIT",
6
6
  "author": "web@seayoo.com",
@@ -5,7 +5,7 @@ export interface FeatureReferralConfig {
5
5
  /** 允许返回的最近被邀请人最大数量 */
6
6
  max_recent_invitees: number;
7
7
  /** 分级奖励配置 */
8
- referral_tier: FeatureReferralTierItem[];
8
+ referral_tiers?: FeatureReferralTierItem[];
9
9
  }
10
10
  export interface FeatureReferralTierItem {
11
11
  /** 邀请数量要求 */