Skip to content

Commit 1488024

Browse files
committed
Update enums
1 parent ef64003 commit 1488024

File tree

2 files changed

+115
-31
lines changed

2 files changed

+115
-31
lines changed

Resources/SteamLanguage/enums.steamd

Lines changed: 62 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ enum EAccountFlags flags
9090
LimitedUser = 4096;
9191
LimitedUserForce = 8192;
9292
EmailValidated = 16384;
93-
MarketingTreatment = 32768;
93+
ValveEmail = 32768;
94+
MarketingTreatment = 32768; removed
9495
OGGInviteOptOut = 65536;
9596
ForcePasswordChange = 131072;
9697
ForceEmailVerification = 262144;
@@ -706,6 +707,13 @@ enum EPlatformType
706707
OSX = 4;
707708
PS3 = 5;
708709
Linux32 = 6;
710+
Android32 = 7;
711+
Android64 = 8;
712+
IOS32 = 9;
713+
IOS64 = 10;
714+
TVOS = 11;
715+
EmbeddedClient = 12;
716+
Browser = 13;
709717
};
710718

711719
enum EOSType
@@ -931,7 +939,7 @@ enum EServerType
931939
Steam2Emulator = 79;
932940
PublicTest = 80;
933941
SolrMgr = 81;
934-
BroadcastIngestor = 82;
942+
BroadcastIngester = 82;
935943
BroadcastDirectory = 83;
936944
VideoManager = 84;
937945
TradeOffer = 85;
@@ -1179,7 +1187,7 @@ enum EEconTradeResponse
11791187
CyberCafeInitiator = 14;
11801188
CyberCafeTarget = 15;
11811189
SchoolLabInitiator = 16;
1182-
SchoolLabTarget = 16;
1190+
SchoolLabTarget = 17;
11831191
InitiatorBlockedTarget = 18;
11841192
InitiatorNeedsVerifiedEmail = 20;
11851193
InitiatorNeedsSteamGuard = 21;
@@ -1418,7 +1426,7 @@ enum EDisplayStatus
14181426
PresaleOnly = 13;
14191427
InvalidPlatform = 14;
14201428
ParentalBlocked = 15;
1421-
PreloadOnly = 16;
1429+
PreloadComplete = 16;
14221430
BorrowerLocked = 17;
14231431
UpdatePaused = 18;
14241432
UpdateQueued = 19;
@@ -1439,6 +1447,9 @@ enum EDisplayStatus
14391447
CloudError = 34;
14401448
CloudOutOfDate = 35;
14411449
Terminating = 36;
1450+
OwnerLocked = 37;
1451+
DownloadFailed = 38;
1452+
UpdateFailed = 39;
14421453
};
14431454

14441455
enum EAppType flags
@@ -1563,10 +1574,11 @@ enum EVoiceCallState
15631574
LocalMicOnly = 3;
15641575
CreatePeerConnection = 4;
15651576
InitatedWebRTCSession = 5;
1566-
WebRTCConnectedWaitingOnIceConnected = 6;
1567-
RequestedPermission = 7;
1568-
NotifyingVoiceChatOfWebRTCSession = 8;
1569-
Connected = 9;
1577+
UpdatingWebRTCSession = 6;
1578+
WebRTCConnectedWaitingOnIceConnected = 7;
1579+
RequestedPermission = 8;
1580+
NotifyingVoiceChatOfWebRTCSession = 9;
1581+
Connected = 10;
15701582
};
15711583

15721584
enum ETradeOfferState
@@ -1582,6 +1594,7 @@ enum ETradeOfferState
15821594
CreatedNeedsConfirmation = 9;
15831595
CanceledBySecondFactor = 10;
15841596
InEscrow = 11;
1597+
Reverted = 12;
15851598
};
15861599

15871600
enum ETradeOfferConfirmationMethod
@@ -1669,24 +1682,55 @@ public enum EUIMode
16691682
Tenfoot = 1;
16701683
Mobile = 2;
16711684
Web = 3;
1672-
ClientUI = 4;
1685+
GamePadUI = 4;
16731686
MobileChat = 5;
16741687
EmbeddedClient = 6;
1688+
DesktopUI = 7;
16751689
}
16761690

16771691
public enum EGamingDeviceType
16781692
{
16791693
Unknown = 0;
16801694
StandardPC = 1;
16811695

1682-
Console = 256;
1683-
PS3 = 272; // Console + 16
1684-
Steambox = 288; // Console + 32
1685-
Tesla = 320; // Console + 64
1696+
ConsoleLegacy = 256;
1697+
PS3 = 273; // ConsoleLegacy + 17
1698+
Steambox = 288; // ConsoleLegacy + 32
1699+
Tesla = 320; // ConsoleLegacy + 64
1700+
1701+
Handheld_Legacy = 512;
1702+
Phone = 528; // Handheld_Legacy + 16
1703+
Console = 540; // Handheld_Legacy + 28
1704+
SteamOSGeneric = 541; // Console + 1
1705+
SteamDeck = 544; // Console + 4
1706+
LegionGoS = 545; // Console + 5
1707+
Fremont = 546; // Console + 6
1708+
1709+
VR = 768;
1710+
SteamFrame = 769; // VR + 1
1711+
}
16861712

1687-
Handheld = 512;
1688-
Phone = 528; // Handheld + 16
1689-
SteamOS = 541; // Handheld + 29
1690-
SteamDeck = 544; // Handheld + 32
1691-
LegionGoS = 545; // Handheld + 33
1713+
public enum EMobileConfirmationAction
1714+
{
1715+
None = 0;
1716+
Allow = 1;
1717+
Cancel = 2;
1718+
}
1719+
1720+
public enum EMobileConfirmationType
1721+
{
1722+
Invalid = 0;
1723+
Test = 1;
1724+
Trade = 2;
1725+
MarketListing = 3;
1726+
FeatureOptOut = 4;
1727+
PhoneNumberChange = 5;
1728+
AccountRecovery = 6;
1729+
BuildChangeRequest = 7;
1730+
AddUser = 8;
1731+
RegisterApiKey = 9;
1732+
InviteToFamilyGroup = 10;
1733+
JoinFamilyGroup = 11;
1734+
MarketPurchase = 12;
1735+
RequestRefund = 13;
16921736
}

SteamKit2/SteamKit2/Base/Generated/SteamLanguage.cs

Lines changed: 53 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@ public enum EAccountFlags
19531953
LimitedUser = 4096,
19541954
LimitedUserForce = 8192,
19551955
EmailValidated = 16384,
1956-
MarketingTreatment = 32768,
1956+
ValveEmail = 32768,
19571957
OGGInviteOptOut = 65536,
19581958
ForcePasswordChange = 131072,
19591959
ForceEmailVerification = 262144,
@@ -2523,6 +2523,13 @@ public enum EPlatformType
25232523
OSX = 4,
25242524
PS3 = 5,
25252525
Linux32 = 6,
2526+
Android32 = 7,
2527+
Android64 = 8,
2528+
IOS32 = 9,
2529+
IOS64 = 10,
2530+
TVOS = 11,
2531+
EmbeddedClient = 12,
2532+
Browser = 13,
25262533
}
25272534
public enum EOSType
25282535
{
@@ -2724,7 +2731,7 @@ public enum EServerType
27242731
Steam2Emulator = 79,
27252732
PublicTest = 80,
27262733
SolrMgr = 81,
2727-
BroadcastIngestor = 82,
2734+
BroadcastIngester = 82,
27282735
BroadcastDirectory = 83,
27292736
VideoManager = 84,
27302737
TradeOffer = 85,
@@ -2957,7 +2964,7 @@ public enum EEconTradeResponse
29572964
CyberCafeInitiator = 14,
29582965
CyberCafeTarget = 15,
29592966
SchoolLabInitiator = 16,
2960-
SchoolLabTarget = 16,
2967+
SchoolLabTarget = 17,
29612968
InitiatorBlockedTarget = 18,
29622969
InitiatorNeedsVerifiedEmail = 20,
29632970
InitiatorNeedsSteamGuard = 21,
@@ -3173,7 +3180,7 @@ public enum EDisplayStatus
31733180
PresaleOnly = 13,
31743181
InvalidPlatform = 14,
31753182
ParentalBlocked = 15,
3176-
PreloadOnly = 16,
3183+
PreloadComplete = 16,
31773184
BorrowerLocked = 17,
31783185
UpdatePaused = 18,
31793186
UpdateQueued = 19,
@@ -3194,6 +3201,9 @@ public enum EDisplayStatus
31943201
CloudError = 34,
31953202
CloudOutOfDate = 35,
31963203
Terminating = 36,
3204+
OwnerLocked = 37,
3205+
DownloadFailed = 38,
3206+
UpdateFailed = 39,
31973207
}
31983208
[Flags]
31993209
public enum EAppType
@@ -3310,10 +3320,11 @@ public enum EVoiceCallState
33103320
LocalMicOnly = 3,
33113321
CreatePeerConnection = 4,
33123322
InitatedWebRTCSession = 5,
3313-
WebRTCConnectedWaitingOnIceConnected = 6,
3314-
RequestedPermission = 7,
3315-
NotifyingVoiceChatOfWebRTCSession = 8,
3316-
Connected = 9,
3323+
UpdatingWebRTCSession = 6,
3324+
WebRTCConnectedWaitingOnIceConnected = 7,
3325+
RequestedPermission = 8,
3326+
NotifyingVoiceChatOfWebRTCSession = 9,
3327+
Connected = 10,
33173328
}
33183329
public enum ETradeOfferState
33193330
{
@@ -3328,6 +3339,7 @@ public enum ETradeOfferState
33283339
CreatedNeedsConfirmation = 9,
33293340
CanceledBySecondFactor = 10,
33303341
InEscrow = 11,
3342+
Reverted = 12,
33313343
}
33323344
public enum ETradeOfferConfirmationMethod
33333345
{
@@ -3405,23 +3417,51 @@ public enum EUIMode
34053417
Tenfoot = 1,
34063418
Mobile = 2,
34073419
Web = 3,
3408-
ClientUI = 4,
3420+
GamePadUI = 4,
34093421
MobileChat = 5,
34103422
EmbeddedClient = 6,
3423+
DesktopUI = 7,
34113424
}
34123425
public enum EGamingDeviceType
34133426
{
34143427
Unknown = 0,
34153428
StandardPC = 1,
3416-
Console = 256,
3417-
PS3 = 272,
3429+
ConsoleLegacy = 256,
3430+
PS3 = 273,
34183431
Steambox = 288,
34193432
Tesla = 320,
3420-
Handheld = 512,
3433+
Handheld_Legacy = 512,
34213434
Phone = 528,
3422-
SteamOS = 541,
3435+
Console = 540,
3436+
SteamOSGeneric = 541,
34233437
SteamDeck = 544,
34243438
LegionGoS = 545,
3439+
Fremont = 546,
3440+
VR = 768,
3441+
SteamFrame = 769,
3442+
}
3443+
public enum EMobileConfirmationAction
3444+
{
3445+
None = 0,
3446+
Allow = 1,
3447+
Cancel = 2,
3448+
}
3449+
public enum EMobileConfirmationType
3450+
{
3451+
Invalid = 0,
3452+
Test = 1,
3453+
Trade = 2,
3454+
MarketListing = 3,
3455+
FeatureOptOut = 4,
3456+
PhoneNumberChange = 5,
3457+
AccountRecovery = 6,
3458+
BuildChangeRequest = 7,
3459+
AddUser = 8,
3460+
RegisterApiKey = 9,
3461+
InviteToFamilyGroup = 10,
3462+
JoinFamilyGroup = 11,
3463+
MarketPurchase = 12,
3464+
RequestRefund = 13,
34253465
}
34263466
public enum EUdpPacketType : byte
34273467
{

0 commit comments

Comments
 (0)