changedOutput schema / properties / info / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "description": "user information",
- "properties": {
- "contacts": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "contactId": {
- "type": "string"
- },
- "isActive": {
- "type": "boolean"
- },
- "isVerify": {
- "type": "boolean"
- },
- "type": {
- "enum": [
- "EMAIL",
- "PHONE",
- "TELEGRAM",
- "WECHAT"
- ],
- "type": "string"
- },
- "username": {
- "type": "string"
- }
- },
- "required": [
- "type",
- "contactId",
- "isActive",
- "isVerify",
- "username"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "createdBotCount": {
- "type": "number"
- },
- "pendingRefCode": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "rank": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- },
- "remainRefBonus": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "sponsor": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "totalPendingRef": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- },
- "totalRef": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- },
- "totalRefBonus": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "userRefCode": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "whitelistLevel": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "required": [
- "createdBotCount",
- "contacts",
- "whitelistLevel",
- "userRefCode",
- "sponsor",
- "pendingRefCode",
- "totalRef",
- "totalPendingRef",
- "totalRefBonus",
- "remainRefBonus",
- "rank"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "description": "user information",
+ "properties": {
+ "contacts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "contactId": {
+ "description": "Contact id",
+ "type": "string"
+ },
+ "isActive": {
+ "description": "Whether the contact is active",
+ "type": "boolean"
+ },
+ "isVerify": {
+ "description": "Whether the contact is verified",
+ "type": "boolean"
+ },
+ "type": {
+ "enum": [
+ "EMAIL",
+ "PHONE",
+ "TELEGRAM",
+ "WECHAT"
+ ],
+ "type": "string"
+ },
+ "username": {
+ "description": "Username",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "contactId",
+ "isActive",
+ "isVerify",
+ "username"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "createdBotCount": {
+ "description": "Number of bots created by the user",
+ "type": "number"
+ },
+ "pendingRefCode": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Pending ref code"
+ },
+ "rank": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Rank"
+ },
+ "remainRefBonus": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Remain ref bonus"
+ },
+ "sponsor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Sponsor"
+ },
+ "totalPendingRef": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Total pending ref"
+ },
+ "totalRef": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Total ref"
+ },
+ "totalRefBonus": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Total ref bonus"
+ },
+ "userRefCode": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "User ref code"
+ },
+ "whitelistLevel": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Whitelist level"
+ }
+ },
+ "required": [
+ "createdBotCount",
+ "contacts",
+ "whitelistLevel",
+ "userRefCode",
+ "sponsor",
+ "pendingRefCode",
+ "totalRef",
+ "totalPendingRef",
+ "totalRefBonus",
+ "remainRefBonus",
+ "rank"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / internalAcc / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "description": "internal account information",
- "properties": {
- "apiKey": {
- "description": "Internal API key",
- "type": "string"
- },
- "balance": {
- "description": "Amount in SUN",
- "type": "string"
- },
- "depositAddress": {
- "description": "TRON base58 deposit address, used for deposit TRX to TronSave internal account",
- "type": "string"
- }
- },
- "required": [
- "depositAddress",
- "balance",
- "apiKey"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "description": "internal account information",
+ "properties": {
+ "apiKey": {
+ "description": "Internal API key",
+ "type": "string"
+ },
+ "balance": {
+ "description": "Amount in SUN on the internal account",
+ "type": "string"
+ },
+ "depositAddress": {
+ "description": "TRON base58 deposit address, used for deposit TRX to TronSave internal account",
+ "type": "string"
+ }
+ },
+ "required": [
+ "depositAddress",
+ "balance",
+ "apiKey"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]