@decky/ui 4.9.2 → 4.10.1
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/components/Menu.js +5 -3
- package/dist/globals/SteamClient.d.ts +1 -304
- package/dist/globals/steam-client/App.d.ts +880 -0
- package/dist/globals/steam-client/App.js +320 -0
- package/dist/globals/steam-client/Auth.d.ts +57 -0
- package/dist/globals/steam-client/Auth.js +19 -0
- package/dist/globals/steam-client/Broadcast.d.ts +22 -0
- package/dist/globals/steam-client/Broadcast.js +1 -0
- package/dist/globals/steam-client/Browser.d.ts +45 -0
- package/dist/globals/steam-client/Browser.js +17 -0
- package/dist/globals/steam-client/ClientNotifications.d.ts +20 -0
- package/dist/globals/steam-client/ClientNotifications.js +6 -0
- package/dist/globals/steam-client/Cloud.d.ts +4 -0
- package/dist/globals/steam-client/Cloud.js +1 -0
- package/dist/globals/steam-client/CommunityItems.d.ts +5 -0
- package/dist/globals/steam-client/CommunityItems.js +1 -0
- package/dist/globals/steam-client/Console.d.ts +11 -0
- package/dist/globals/steam-client/Console.js +1 -0
- package/dist/globals/steam-client/Customization.d.ts +8 -0
- package/dist/globals/steam-client/Customization.js +1 -0
- package/dist/globals/steam-client/Downloads.d.ts +63 -0
- package/dist/globals/steam-client/Downloads.js +1 -0
- package/dist/globals/steam-client/FamilySharing.d.ts +20 -0
- package/dist/globals/steam-client/FamilySharing.js +1 -0
- package/dist/globals/steam-client/FriendSettings.d.ts +49 -0
- package/dist/globals/steam-client/FriendSettings.js +6 -0
- package/dist/globals/steam-client/Friends.d.ts +27 -0
- package/dist/globals/steam-client/Friends.js +1 -0
- package/dist/globals/steam-client/GameNotes.d.ts +41 -0
- package/dist/globals/steam-client/GameNotes.js +1 -0
- package/dist/globals/steam-client/GameRecording.d.ts +20 -0
- package/dist/globals/steam-client/GameRecording.js +1 -0
- package/dist/globals/steam-client/GameSessions.d.ts +26 -0
- package/dist/globals/steam-client/GameSessions.js +1 -0
- package/dist/globals/steam-client/Input.d.ts +421 -0
- package/dist/globals/steam-client/Input.js +170 -0
- package/dist/globals/steam-client/InstallFolder.d.ts +57 -0
- package/dist/globals/steam-client/InstallFolder.js +1 -0
- package/dist/globals/steam-client/Installs.d.ts +60 -0
- package/dist/globals/steam-client/Installs.js +20 -0
- package/dist/globals/steam-client/Messaging.d.ts +5 -0
- package/dist/globals/steam-client/Messaging.js +1 -0
- package/dist/globals/steam-client/Music.d.ts +36 -0
- package/dist/globals/steam-client/Music.js +14 -0
- package/dist/globals/steam-client/Notifications.d.ts +260 -0
- package/dist/globals/steam-client/Notifications.js +73 -0
- package/dist/globals/steam-client/OpenVR.d.ts +85 -0
- package/dist/globals/steam-client/OpenVR.js +16 -0
- package/dist/globals/steam-client/Overlay.d.ts +58 -0
- package/dist/globals/steam-client/Overlay.js +18 -0
- package/dist/globals/steam-client/Parental.d.ts +69 -0
- package/dist/globals/steam-client/Parental.js +19 -0
- package/dist/globals/steam-client/RemotePlay.d.ts +225 -0
- package/dist/globals/steam-client/RemotePlay.js +71 -0
- package/dist/globals/steam-client/Screenshots.d.ts +47 -0
- package/dist/globals/steam-client/Screenshots.js +8 -0
- package/dist/globals/steam-client/ServerBrowser.d.ts +117 -0
- package/dist/globals/steam-client/ServerBrowser.js +26 -0
- package/dist/globals/steam-client/Settings.d.ts +398 -0
- package/dist/globals/steam-client/Settings.js +96 -0
- package/dist/globals/steam-client/SharedConnection.d.ts +22 -0
- package/dist/globals/steam-client/SharedConnection.js +1 -0
- package/dist/globals/steam-client/Stats.d.ts +4 -0
- package/dist/globals/steam-client/Stats.js +1 -0
- package/dist/globals/steam-client/SteamChina.d.ts +3 -0
- package/dist/globals/steam-client/SteamChina.js +1 -0
- package/dist/globals/steam-client/Storage.d.ts +8 -0
- package/dist/globals/steam-client/Storage.js +1 -0
- package/dist/globals/steam-client/Streaming.d.ts +15 -0
- package/dist/globals/steam-client/Streaming.js +1 -0
- package/dist/globals/steam-client/UI.d.ts +44 -0
- package/dist/globals/steam-client/UI.js +12 -0
- package/dist/globals/steam-client/URL.d.ts +16 -0
- package/dist/globals/steam-client/URL.js +1 -0
- package/dist/globals/steam-client/Updates.d.ts +68 -0
- package/dist/globals/steam-client/Updates.js +34 -0
- package/dist/globals/steam-client/User.d.ts +130 -0
- package/dist/globals/steam-client/User.js +33 -0
- package/dist/globals/steam-client/WebChat.d.ts +60 -0
- package/dist/globals/steam-client/WebChat.js +6 -0
- package/dist/globals/steam-client/WebUITransport.d.ts +11 -0
- package/dist/globals/steam-client/WebUITransport.js +1 -0
- package/dist/globals/steam-client/Window.d.ts +66 -0
- package/dist/globals/steam-client/Window.js +6 -0
- package/dist/globals/steam-client/browser-view/BrowserViewPopup.d.ts +124 -0
- package/dist/globals/steam-client/browser-view/BrowserViewPopup.js +35 -0
- package/dist/globals/steam-client/browser-view/index.d.ts +20 -0
- package/dist/globals/steam-client/browser-view/index.js +1 -0
- package/dist/globals/steam-client/index.d.ts +89 -0
- package/dist/globals/steam-client/index.js +1 -0
- package/dist/globals/steam-client/shared.d.ts +166 -0
- package/dist/globals/steam-client/shared.js +146 -0
- package/dist/globals/steam-client/system/Audio.d.ts +42 -0
- package/dist/globals/steam-client/system/Audio.js +1 -0
- package/dist/globals/steam-client/system/AudioDevice.d.ts +92 -0
- package/dist/globals/steam-client/system/AudioDevice.js +33 -0
- package/dist/globals/steam-client/system/Bluetooth.d.ts +47 -0
- package/dist/globals/steam-client/system/Bluetooth.js +15 -0
- package/dist/globals/steam-client/system/Devkit.d.ts +7 -0
- package/dist/globals/steam-client/system/Devkit.js +1 -0
- package/dist/globals/steam-client/system/Display.d.ts +10 -0
- package/dist/globals/steam-client/system/Display.js +1 -0
- package/dist/globals/steam-client/system/DisplayManager.d.ts +9 -0
- package/dist/globals/steam-client/system/DisplayManager.js +1 -0
- package/dist/globals/steam-client/system/Dock.d.ts +19 -0
- package/dist/globals/steam-client/system/Dock.js +1 -0
- package/dist/globals/steam-client/system/Perf.d.ts +159 -0
- package/dist/globals/steam-client/system/Perf.js +53 -0
- package/dist/globals/steam-client/system/Report.d.ts +13 -0
- package/dist/globals/steam-client/system/Report.js +1 -0
- package/dist/globals/steam-client/system/UI.d.ts +28 -0
- package/dist/globals/steam-client/system/UI.js +1 -0
- package/dist/globals/steam-client/system/index.d.ts +243 -0
- package/dist/globals/steam-client/system/index.js +111 -0
- package/dist/globals/steam-client/system/network/Device.d.ts +10 -0
- package/dist/globals/steam-client/system/network/Device.js +1 -0
- package/dist/globals/steam-client/system/network/index.d.ts +312 -0
- package/dist/globals/steam-client/system/network/index.js +55 -0
- package/dist/globals/stores.d.ts +26 -13
- package/dist/modules/Router.d.ts +2 -39
- package/dist/modules/Router.js +0 -39
- package/package.json +1 -1
- package/src/components/Menu.ts +7 -8
- package/src/globals/SteamClient.ts +4 -320
- package/src/globals/steam-client/App.ts +1749 -0
- package/src/globals/steam-client/Auth.ts +105 -0
- package/src/globals/steam-client/Broadcast.ts +56 -0
- package/src/globals/steam-client/Browser.ts +91 -0
- package/src/globals/steam-client/ClientNotifications.ts +39 -0
- package/src/globals/steam-client/Cloud.ts +14 -0
- package/src/globals/steam-client/CommunityItems.ts +24 -0
- package/src/globals/steam-client/Console.ts +43 -0
- package/src/globals/steam-client/Customization.ts +12 -0
- package/src/globals/steam-client/Downloads.ts +175 -0
- package/src/globals/steam-client/FamilySharing.ts +30 -0
- package/src/globals/steam-client/FriendSettings.ts +80 -0
- package/src/globals/steam-client/Friends.ts +70 -0
- package/src/globals/steam-client/GameNotes.ts +73 -0
- package/src/globals/steam-client/GameRecording.ts +29 -0
- package/src/globals/steam-client/GameSessions.ts +59 -0
- package/src/globals/steam-client/Input.ts +762 -0
- package/src/globals/steam-client/InstallFolder.ts +167 -0
- package/src/globals/steam-client/Installs.ts +131 -0
- package/src/globals/steam-client/Messaging.ts +20 -0
- package/src/globals/steam-client/Music.ts +99 -0
- package/src/globals/steam-client/Notifications.ts +333 -0
- package/src/globals/steam-client/OpenVR.ts +122 -0
- package/src/globals/steam-client/Overlay.ts +172 -0
- package/src/globals/steam-client/Parental.ts +129 -0
- package/src/globals/steam-client/RemotePlay.ts +342 -0
- package/src/globals/steam-client/Screenshots.ts +149 -0
- package/src/globals/steam-client/ServerBrowser.ts +372 -0
- package/src/globals/steam-client/Settings.ts +663 -0
- package/src/globals/steam-client/SharedConnection.ts +43 -0
- package/src/globals/steam-client/Stats.ts +10 -0
- package/src/globals/steam-client/SteamChina.ts +3 -0
- package/src/globals/steam-client/Storage.ts +24 -0
- package/src/globals/steam-client/Streaming.ts +59 -0
- package/src/globals/steam-client/UI.ts +90 -0
- package/src/globals/steam-client/URL.ts +174 -0
- package/src/globals/steam-client/Updates.ts +101 -0
- package/src/globals/steam-client/User.ts +266 -0
- package/src/globals/steam-client/WebChat.ts +164 -0
- package/src/globals/steam-client/WebUITransport.ts +21 -0
- package/src/globals/steam-client/Window.ts +235 -0
- package/src/globals/steam-client/browser-view/BrowserViewPopup.ts +393 -0
- package/src/globals/steam-client/browser-view/index.ts +54 -0
- package/src/globals/steam-client/index.ts +90 -0
- package/src/globals/steam-client/shared.ts +262 -0
- package/src/globals/steam-client/system/Audio.ts +202 -0
- package/src/globals/steam-client/system/AudioDevice.ts +116 -0
- package/src/globals/steam-client/system/Bluetooth.ts +171 -0
- package/src/globals/steam-client/system/Devkit.ts +11 -0
- package/src/globals/steam-client/system/Display.ts +15 -0
- package/src/globals/steam-client/system/DisplayManager.ts +16 -0
- package/src/globals/steam-client/system/Dock.ts +34 -0
- package/src/globals/steam-client/system/Perf.ts +194 -0
- package/src/globals/steam-client/system/Report.ts +39 -0
- package/src/globals/steam-client/system/UI.ts +38 -0
- package/src/globals/steam-client/system/index.ts +390 -0
- package/src/globals/steam-client/system/network/Device.ts +17 -0
- package/src/globals/steam-client/system/network/index.ts +403 -0
- package/src/globals/stores.ts +30 -13
- package/src/modules/Router.ts +2 -40
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
export var ELibraryAssetType;
|
|
2
|
+
(function (ELibraryAssetType) {
|
|
3
|
+
ELibraryAssetType[ELibraryAssetType["Capsule"] = 0] = "Capsule";
|
|
4
|
+
ELibraryAssetType[ELibraryAssetType["Hero"] = 1] = "Hero";
|
|
5
|
+
ELibraryAssetType[ELibraryAssetType["Logo"] = 2] = "Logo";
|
|
6
|
+
ELibraryAssetType[ELibraryAssetType["Header"] = 3] = "Header";
|
|
7
|
+
ELibraryAssetType[ELibraryAssetType["Icon"] = 4] = "Icon";
|
|
8
|
+
ELibraryAssetType[ELibraryAssetType["HeroBlur"] = 5] = "HeroBlur";
|
|
9
|
+
})(ELibraryAssetType || (ELibraryAssetType = {}));
|
|
10
|
+
export var EAppReleaseState;
|
|
11
|
+
(function (EAppReleaseState) {
|
|
12
|
+
EAppReleaseState[EAppReleaseState["Unknown"] = 0] = "Unknown";
|
|
13
|
+
EAppReleaseState[EAppReleaseState["Unavailable"] = 1] = "Unavailable";
|
|
14
|
+
EAppReleaseState[EAppReleaseState["Prerelease"] = 2] = "Prerelease";
|
|
15
|
+
EAppReleaseState[EAppReleaseState["PreloadOnly"] = 3] = "PreloadOnly";
|
|
16
|
+
EAppReleaseState[EAppReleaseState["Released"] = 4] = "Released";
|
|
17
|
+
EAppReleaseState[EAppReleaseState["Disabled"] = 5] = "Disabled";
|
|
18
|
+
})(EAppReleaseState || (EAppReleaseState = {}));
|
|
19
|
+
export var EAppLaunchOptionType;
|
|
20
|
+
(function (EAppLaunchOptionType) {
|
|
21
|
+
EAppLaunchOptionType[EAppLaunchOptionType["None"] = 0] = "None";
|
|
22
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Default"] = 1] = "Default";
|
|
23
|
+
EAppLaunchOptionType[EAppLaunchOptionType["SafeMode"] = 2] = "SafeMode";
|
|
24
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Multiplayer"] = 3] = "Multiplayer";
|
|
25
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Config"] = 4] = "Config";
|
|
26
|
+
EAppLaunchOptionType[EAppLaunchOptionType["OpenVR"] = 5] = "OpenVR";
|
|
27
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Server"] = 6] = "Server";
|
|
28
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Editor"] = 7] = "Editor";
|
|
29
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Manual"] = 8] = "Manual";
|
|
30
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Benchmark"] = 9] = "Benchmark";
|
|
31
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Option1"] = 10] = "Option1";
|
|
32
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Option2"] = 11] = "Option2";
|
|
33
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Option3"] = 12] = "Option3";
|
|
34
|
+
EAppLaunchOptionType[EAppLaunchOptionType["OculusVR"] = 13] = "OculusVR";
|
|
35
|
+
EAppLaunchOptionType[EAppLaunchOptionType["OpenVROverlay"] = 14] = "OpenVROverlay";
|
|
36
|
+
EAppLaunchOptionType[EAppLaunchOptionType["OSVR"] = 15] = "OSVR";
|
|
37
|
+
EAppLaunchOptionType[EAppLaunchOptionType["OpenXR"] = 16] = "OpenXR";
|
|
38
|
+
EAppLaunchOptionType[EAppLaunchOptionType["Dialog"] = 1000] = "Dialog";
|
|
39
|
+
})(EAppLaunchOptionType || (EAppLaunchOptionType = {}));
|
|
40
|
+
export var EWorkshopFileType;
|
|
41
|
+
(function (EWorkshopFileType) {
|
|
42
|
+
EWorkshopFileType[EWorkshopFileType["Invalid"] = -1] = "Invalid";
|
|
43
|
+
EWorkshopFileType[EWorkshopFileType["Community"] = 0] = "Community";
|
|
44
|
+
EWorkshopFileType[EWorkshopFileType["Microtransaction"] = 1] = "Microtransaction";
|
|
45
|
+
EWorkshopFileType[EWorkshopFileType["Collection"] = 2] = "Collection";
|
|
46
|
+
EWorkshopFileType[EWorkshopFileType["Art"] = 3] = "Art";
|
|
47
|
+
EWorkshopFileType[EWorkshopFileType["Video"] = 4] = "Video";
|
|
48
|
+
EWorkshopFileType[EWorkshopFileType["Screenshot"] = 5] = "Screenshot";
|
|
49
|
+
EWorkshopFileType[EWorkshopFileType["Game"] = 6] = "Game";
|
|
50
|
+
EWorkshopFileType[EWorkshopFileType["Software"] = 7] = "Software";
|
|
51
|
+
EWorkshopFileType[EWorkshopFileType["Concept"] = 8] = "Concept";
|
|
52
|
+
EWorkshopFileType[EWorkshopFileType["WebGuide"] = 9] = "WebGuide";
|
|
53
|
+
EWorkshopFileType[EWorkshopFileType["IntegratedGuide"] = 10] = "IntegratedGuide";
|
|
54
|
+
EWorkshopFileType[EWorkshopFileType["Merch"] = 11] = "Merch";
|
|
55
|
+
EWorkshopFileType[EWorkshopFileType["ControllerBinding"] = 12] = "ControllerBinding";
|
|
56
|
+
EWorkshopFileType[EWorkshopFileType["SteamworksAccessInvite"] = 13] = "SteamworksAccessInvite";
|
|
57
|
+
EWorkshopFileType[EWorkshopFileType["SteamVideo"] = 14] = "SteamVideo";
|
|
58
|
+
EWorkshopFileType[EWorkshopFileType["GameManagedItem"] = 15] = "GameManagedItem";
|
|
59
|
+
EWorkshopFileType[EWorkshopFileType["Max"] = 16] = "Max";
|
|
60
|
+
})(EWorkshopFileType || (EWorkshopFileType = {}));
|
|
61
|
+
export var EAppUpdateError;
|
|
62
|
+
(function (EAppUpdateError) {
|
|
63
|
+
EAppUpdateError[EAppUpdateError["None"] = 0] = "None";
|
|
64
|
+
EAppUpdateError[EAppUpdateError["Unspecified"] = 1] = "Unspecified";
|
|
65
|
+
EAppUpdateError[EAppUpdateError["Paused"] = 2] = "Paused";
|
|
66
|
+
EAppUpdateError[EAppUpdateError["Canceled"] = 3] = "Canceled";
|
|
67
|
+
EAppUpdateError[EAppUpdateError["Suspended"] = 4] = "Suspended";
|
|
68
|
+
EAppUpdateError[EAppUpdateError["NoSubscription"] = 5] = "NoSubscription";
|
|
69
|
+
EAppUpdateError[EAppUpdateError["NoConnection"] = 6] = "NoConnection";
|
|
70
|
+
EAppUpdateError[EAppUpdateError["Timeout"] = 7] = "Timeout";
|
|
71
|
+
EAppUpdateError[EAppUpdateError["MissingKey"] = 8] = "MissingKey";
|
|
72
|
+
EAppUpdateError[EAppUpdateError["MissingConfig"] = 9] = "MissingConfig";
|
|
73
|
+
EAppUpdateError[EAppUpdateError["DiskReadFailure"] = 10] = "DiskReadFailure";
|
|
74
|
+
EAppUpdateError[EAppUpdateError["DiskWriteFailure"] = 11] = "DiskWriteFailure";
|
|
75
|
+
EAppUpdateError[EAppUpdateError["NotEnoughDiskSpace"] = 12] = "NotEnoughDiskSpace";
|
|
76
|
+
EAppUpdateError[EAppUpdateError["CorruptGameFiles"] = 13] = "CorruptGameFiles";
|
|
77
|
+
EAppUpdateError[EAppUpdateError["WaitingForNextDisk"] = 14] = "WaitingForNextDisk";
|
|
78
|
+
EAppUpdateError[EAppUpdateError["InvalidInstallPath"] = 15] = "InvalidInstallPath";
|
|
79
|
+
EAppUpdateError[EAppUpdateError["AppRunning"] = 16] = "AppRunning";
|
|
80
|
+
EAppUpdateError[EAppUpdateError["DependencyFailure"] = 17] = "DependencyFailure";
|
|
81
|
+
EAppUpdateError[EAppUpdateError["NotInstalled"] = 18] = "NotInstalled";
|
|
82
|
+
EAppUpdateError[EAppUpdateError["UpdateRequired"] = 19] = "UpdateRequired";
|
|
83
|
+
EAppUpdateError[EAppUpdateError["Busy"] = 20] = "Busy";
|
|
84
|
+
EAppUpdateError[EAppUpdateError["NoDownloadSources"] = 21] = "NoDownloadSources";
|
|
85
|
+
EAppUpdateError[EAppUpdateError["InvalidAppConfig"] = 22] = "InvalidAppConfig";
|
|
86
|
+
EAppUpdateError[EAppUpdateError["InvalidDepotConfig"] = 23] = "InvalidDepotConfig";
|
|
87
|
+
EAppUpdateError[EAppUpdateError["MissingManifest"] = 24] = "MissingManifest";
|
|
88
|
+
EAppUpdateError[EAppUpdateError["NotReleased"] = 25] = "NotReleased";
|
|
89
|
+
EAppUpdateError[EAppUpdateError["RegionRestricted"] = 26] = "RegionRestricted";
|
|
90
|
+
EAppUpdateError[EAppUpdateError["CorruptDepotCache"] = 27] = "CorruptDepotCache";
|
|
91
|
+
EAppUpdateError[EAppUpdateError["MissingExecutable"] = 28] = "MissingExecutable";
|
|
92
|
+
EAppUpdateError[EAppUpdateError["InvalidPlatform"] = 29] = "InvalidPlatform";
|
|
93
|
+
EAppUpdateError[EAppUpdateError["InvalidFileSystem"] = 30] = "InvalidFileSystem";
|
|
94
|
+
EAppUpdateError[EAppUpdateError["CorruptUpdateFiles"] = 31] = "CorruptUpdateFiles";
|
|
95
|
+
EAppUpdateError[EAppUpdateError["DownloadDisabled"] = 32] = "DownloadDisabled";
|
|
96
|
+
EAppUpdateError[EAppUpdateError["SharedLibraryLocked"] = 33] = "SharedLibraryLocked";
|
|
97
|
+
EAppUpdateError[EAppUpdateError["PendingLicense"] = 34] = "PendingLicense";
|
|
98
|
+
EAppUpdateError[EAppUpdateError["OtherSessionPlaying"] = 35] = "OtherSessionPlaying";
|
|
99
|
+
EAppUpdateError[EAppUpdateError["CorruptDownload"] = 36] = "CorruptDownload";
|
|
100
|
+
EAppUpdateError[EAppUpdateError["CorruptDisk"] = 37] = "CorruptDisk";
|
|
101
|
+
EAppUpdateError[EAppUpdateError["FilePermissions"] = 38] = "FilePermissions";
|
|
102
|
+
EAppUpdateError[EAppUpdateError["FileLocked"] = 39] = "FileLocked";
|
|
103
|
+
EAppUpdateError[EAppUpdateError["MissingContent"] = 40] = "MissingContent";
|
|
104
|
+
EAppUpdateError[EAppUpdateError["Requires64BitOS"] = 41] = "Requires64BitOS";
|
|
105
|
+
EAppUpdateError[EAppUpdateError["MissingUpdateFiles"] = 42] = "MissingUpdateFiles";
|
|
106
|
+
EAppUpdateError[EAppUpdateError["NotEnoughDiskQuota"] = 43] = "NotEnoughDiskQuota";
|
|
107
|
+
EAppUpdateError[EAppUpdateError["LockedSiteLicense"] = 44] = "LockedSiteLicense";
|
|
108
|
+
EAppUpdateError[EAppUpdateError["ParentalControlBlocked"] = 45] = "ParentalControlBlocked";
|
|
109
|
+
EAppUpdateError[EAppUpdateError["CreateProcessFailure"] = 46] = "CreateProcessFailure";
|
|
110
|
+
EAppUpdateError[EAppUpdateError["SteamClientOutdated"] = 47] = "SteamClientOutdated";
|
|
111
|
+
EAppUpdateError[EAppUpdateError["PlaytimeExceeded"] = 48] = "PlaytimeExceeded";
|
|
112
|
+
EAppUpdateError[EAppUpdateError["CorruptFileSignature"] = 49] = "CorruptFileSignature";
|
|
113
|
+
EAppUpdateError[EAppUpdateError["MissingInstalledFiles"] = 50] = "MissingInstalledFiles";
|
|
114
|
+
EAppUpdateError[EAppUpdateError["CompatibilityToolFailure"] = 51] = "CompatibilityToolFailure";
|
|
115
|
+
EAppUpdateError[EAppUpdateError["UnmountedUninstallPath"] = 52] = "UnmountedUninstallPath";
|
|
116
|
+
EAppUpdateError[EAppUpdateError["InvalidBackupPath"] = 53] = "InvalidBackupPath";
|
|
117
|
+
EAppUpdateError[EAppUpdateError["InvalidPasscode"] = 54] = "InvalidPasscode";
|
|
118
|
+
EAppUpdateError[EAppUpdateError["ThirdPartyUpdater"] = 55] = "ThirdPartyUpdater";
|
|
119
|
+
EAppUpdateError[EAppUpdateError["ParentalPlaytimeExceeded"] = 56] = "ParentalPlaytimeExceeded";
|
|
120
|
+
EAppUpdateError[EAppUpdateError["Max"] = 57] = "Max";
|
|
121
|
+
})(EAppUpdateError || (EAppUpdateError = {}));
|
|
122
|
+
export var ESteamInputController;
|
|
123
|
+
(function (ESteamInputController) {
|
|
124
|
+
ESteamInputController[ESteamInputController["PlayStation"] = 1] = "PlayStation";
|
|
125
|
+
ESteamInputController[ESteamInputController["Xbox"] = 2] = "Xbox";
|
|
126
|
+
ESteamInputController[ESteamInputController["Generic"] = 4] = "Generic";
|
|
127
|
+
ESteamInputController[ESteamInputController["NintendoSwitch"] = 8] = "NintendoSwitch";
|
|
128
|
+
})(ESteamInputController || (ESteamInputController = {}));
|
|
129
|
+
export var EAppOwnershipFlags;
|
|
130
|
+
(function (EAppOwnershipFlags) {
|
|
131
|
+
EAppOwnershipFlags[EAppOwnershipFlags["None"] = 0] = "None";
|
|
132
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Subscribed"] = 1] = "Subscribed";
|
|
133
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Free"] = 2] = "Free";
|
|
134
|
+
EAppOwnershipFlags[EAppOwnershipFlags["RegionRestricted"] = 4] = "RegionRestricted";
|
|
135
|
+
EAppOwnershipFlags[EAppOwnershipFlags["LowViolence"] = 8] = "LowViolence";
|
|
136
|
+
EAppOwnershipFlags[EAppOwnershipFlags["InvalidPlatform"] = 16] = "InvalidPlatform";
|
|
137
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Borrowed"] = 32] = "Borrowed";
|
|
138
|
+
EAppOwnershipFlags[EAppOwnershipFlags["FreeWeekend"] = 64] = "FreeWeekend";
|
|
139
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Retail"] = 128] = "Retail";
|
|
140
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Locked"] = 256] = "Locked";
|
|
141
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Pending"] = 512] = "Pending";
|
|
142
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Expired"] = 1024] = "Expired";
|
|
143
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Permanent"] = 2048] = "Permanent";
|
|
144
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Recurring"] = 4096] = "Recurring";
|
|
145
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Canceled"] = 8192] = "Canceled";
|
|
146
|
+
EAppOwnershipFlags[EAppOwnershipFlags["AutoGrant"] = 16384] = "AutoGrant";
|
|
147
|
+
EAppOwnershipFlags[EAppOwnershipFlags["PendingGift"] = 32768] = "PendingGift";
|
|
148
|
+
EAppOwnershipFlags[EAppOwnershipFlags["RentalNotActivated"] = 65536] = "RentalNotActivated";
|
|
149
|
+
EAppOwnershipFlags[EAppOwnershipFlags["Rental"] = 131072] = "Rental";
|
|
150
|
+
EAppOwnershipFlags[EAppOwnershipFlags["SiteLicense"] = 262144] = "SiteLicense";
|
|
151
|
+
EAppOwnershipFlags[EAppOwnershipFlags["LegacyFreeSub"] = 524288] = "LegacyFreeSub";
|
|
152
|
+
EAppOwnershipFlags[EAppOwnershipFlags["InvalidOSType"] = 1048576] = "InvalidOSType";
|
|
153
|
+
EAppOwnershipFlags[EAppOwnershipFlags["TimedTrial"] = 2097152] = "TimedTrial";
|
|
154
|
+
})(EAppOwnershipFlags || (EAppOwnershipFlags = {}));
|
|
155
|
+
export var EAppAutoUpdateBehavior;
|
|
156
|
+
(function (EAppAutoUpdateBehavior) {
|
|
157
|
+
EAppAutoUpdateBehavior[EAppAutoUpdateBehavior["Always"] = 0] = "Always";
|
|
158
|
+
EAppAutoUpdateBehavior[EAppAutoUpdateBehavior["Launch"] = 1] = "Launch";
|
|
159
|
+
EAppAutoUpdateBehavior[EAppAutoUpdateBehavior["HighPriority"] = 2] = "HighPriority";
|
|
160
|
+
})(EAppAutoUpdateBehavior || (EAppAutoUpdateBehavior = {}));
|
|
161
|
+
export var EAppAllowDownloadsWhileRunningBehavior;
|
|
162
|
+
(function (EAppAllowDownloadsWhileRunningBehavior) {
|
|
163
|
+
EAppAllowDownloadsWhileRunningBehavior[EAppAllowDownloadsWhileRunningBehavior["UseGlobal"] = 0] = "UseGlobal";
|
|
164
|
+
EAppAllowDownloadsWhileRunningBehavior[EAppAllowDownloadsWhileRunningBehavior["AlwaysAllow"] = 1] = "AlwaysAllow";
|
|
165
|
+
EAppAllowDownloadsWhileRunningBehavior[EAppAllowDownloadsWhileRunningBehavior["NeverAllow"] = 2] = "NeverAllow";
|
|
166
|
+
})(EAppAllowDownloadsWhileRunningBehavior || (EAppAllowDownloadsWhileRunningBehavior = {}));
|
|
167
|
+
export var EDisplayStatus;
|
|
168
|
+
(function (EDisplayStatus) {
|
|
169
|
+
EDisplayStatus[EDisplayStatus["Invalid"] = 0] = "Invalid";
|
|
170
|
+
EDisplayStatus[EDisplayStatus["Launching"] = 1] = "Launching";
|
|
171
|
+
EDisplayStatus[EDisplayStatus["Uninstalling"] = 2] = "Uninstalling";
|
|
172
|
+
EDisplayStatus[EDisplayStatus["Installing"] = 3] = "Installing";
|
|
173
|
+
EDisplayStatus[EDisplayStatus["Running"] = 4] = "Running";
|
|
174
|
+
EDisplayStatus[EDisplayStatus["Validating"] = 5] = "Validating";
|
|
175
|
+
EDisplayStatus[EDisplayStatus["Updating"] = 6] = "Updating";
|
|
176
|
+
EDisplayStatus[EDisplayStatus["Downloading"] = 7] = "Downloading";
|
|
177
|
+
EDisplayStatus[EDisplayStatus["Synchronizing"] = 8] = "Synchronizing";
|
|
178
|
+
EDisplayStatus[EDisplayStatus["ReadyToInstall"] = 9] = "ReadyToInstall";
|
|
179
|
+
EDisplayStatus[EDisplayStatus["ReadyToPreload"] = 10] = "ReadyToPreload";
|
|
180
|
+
EDisplayStatus[EDisplayStatus["ReadyToLaunch"] = 11] = "ReadyToLaunch";
|
|
181
|
+
EDisplayStatus[EDisplayStatus["RegionRestricted"] = 12] = "RegionRestricted";
|
|
182
|
+
EDisplayStatus[EDisplayStatus["PresaleOnly"] = 13] = "PresaleOnly";
|
|
183
|
+
EDisplayStatus[EDisplayStatus["InvalidPlatform"] = 14] = "InvalidPlatform";
|
|
184
|
+
EDisplayStatus[EDisplayStatus["PreloadComplete"] = 16] = "PreloadComplete";
|
|
185
|
+
EDisplayStatus[EDisplayStatus["BorrowerLocked"] = 17] = "BorrowerLocked";
|
|
186
|
+
EDisplayStatus[EDisplayStatus["UpdatePaused"] = 18] = "UpdatePaused";
|
|
187
|
+
EDisplayStatus[EDisplayStatus["UpdateQueued"] = 19] = "UpdateQueued";
|
|
188
|
+
EDisplayStatus[EDisplayStatus["UpdateRequired"] = 20] = "UpdateRequired";
|
|
189
|
+
EDisplayStatus[EDisplayStatus["UpdateDisabled"] = 21] = "UpdateDisabled";
|
|
190
|
+
EDisplayStatus[EDisplayStatus["DownloadPaused"] = 22] = "DownloadPaused";
|
|
191
|
+
EDisplayStatus[EDisplayStatus["DownloadQueued"] = 23] = "DownloadQueued";
|
|
192
|
+
EDisplayStatus[EDisplayStatus["DownloadRequired"] = 24] = "DownloadRequired";
|
|
193
|
+
EDisplayStatus[EDisplayStatus["DownloadDisabled"] = 25] = "DownloadDisabled";
|
|
194
|
+
EDisplayStatus[EDisplayStatus["LicensePending"] = 26] = "LicensePending";
|
|
195
|
+
EDisplayStatus[EDisplayStatus["LicenseExpired"] = 27] = "LicenseExpired";
|
|
196
|
+
EDisplayStatus[EDisplayStatus["AvailForFree"] = 28] = "AvailForFree";
|
|
197
|
+
EDisplayStatus[EDisplayStatus["AvailToBorrow"] = 29] = "AvailToBorrow";
|
|
198
|
+
EDisplayStatus[EDisplayStatus["AvailGuestPass"] = 30] = "AvailGuestPass";
|
|
199
|
+
EDisplayStatus[EDisplayStatus["Purchase"] = 31] = "Purchase";
|
|
200
|
+
EDisplayStatus[EDisplayStatus["Unavailable"] = 32] = "Unavailable";
|
|
201
|
+
EDisplayStatus[EDisplayStatus["NotLaunchable"] = 33] = "NotLaunchable";
|
|
202
|
+
EDisplayStatus[EDisplayStatus["CloudError"] = 34] = "CloudError";
|
|
203
|
+
EDisplayStatus[EDisplayStatus["CloudOutOfDate"] = 35] = "CloudOutOfDate";
|
|
204
|
+
EDisplayStatus[EDisplayStatus["Terminating"] = 36] = "Terminating";
|
|
205
|
+
EDisplayStatus[EDisplayStatus["OwnerLocked"] = 37] = "OwnerLocked";
|
|
206
|
+
EDisplayStatus[EDisplayStatus["DownloadFailed"] = 38] = "DownloadFailed";
|
|
207
|
+
EDisplayStatus[EDisplayStatus["UpdateFailed"] = 39] = "UpdateFailed";
|
|
208
|
+
})(EDisplayStatus || (EDisplayStatus = {}));
|
|
209
|
+
export var ESteamDeckCompatibilityTestResult;
|
|
210
|
+
(function (ESteamDeckCompatibilityTestResult) {
|
|
211
|
+
ESteamDeckCompatibilityTestResult[ESteamDeckCompatibilityTestResult["Invalid"] = 0] = "Invalid";
|
|
212
|
+
ESteamDeckCompatibilityTestResult[ESteamDeckCompatibilityTestResult["NotApplicable"] = 1] = "NotApplicable";
|
|
213
|
+
ESteamDeckCompatibilityTestResult[ESteamDeckCompatibilityTestResult["Pass"] = 2] = "Pass";
|
|
214
|
+
ESteamDeckCompatibilityTestResult[ESteamDeckCompatibilityTestResult["Fail"] = 3] = "Fail";
|
|
215
|
+
ESteamDeckCompatibilityTestResult[ESteamDeckCompatibilityTestResult["FailMinor"] = 4] = "FailMinor";
|
|
216
|
+
})(ESteamDeckCompatibilityTestResult || (ESteamDeckCompatibilityTestResult = {}));
|
|
217
|
+
export var ELaunchSource;
|
|
218
|
+
(function (ELaunchSource) {
|
|
219
|
+
ELaunchSource[ELaunchSource["None"] = 0] = "None";
|
|
220
|
+
ELaunchSource[ELaunchSource["_2ftLibraryDetails"] = 100] = "_2ftLibraryDetails";
|
|
221
|
+
ELaunchSource[ELaunchSource["_2ftLibraryListView"] = 101] = "_2ftLibraryListView";
|
|
222
|
+
ELaunchSource[ELaunchSource["_2ftLibraryGrid"] = 102] = "_2ftLibraryGrid";
|
|
223
|
+
ELaunchSource[ELaunchSource["InstallSubComplete"] = 103] = "InstallSubComplete";
|
|
224
|
+
ELaunchSource[ELaunchSource["DownloadsPage"] = 104] = "DownloadsPage";
|
|
225
|
+
ELaunchSource[ELaunchSource["RemoteClientStartStreaming"] = 105] = "RemoteClientStartStreaming";
|
|
226
|
+
ELaunchSource[ELaunchSource["_2ftMiniModeList"] = 106] = "_2ftMiniModeList";
|
|
227
|
+
ELaunchSource[ELaunchSource["_10ft"] = 200] = "_10ft";
|
|
228
|
+
ELaunchSource[ELaunchSource["DashAppLaunchCmdLine"] = 300] = "DashAppLaunchCmdLine";
|
|
229
|
+
ELaunchSource[ELaunchSource["DashGameIdLaunchCmdLine"] = 301] = "DashGameIdLaunchCmdLine";
|
|
230
|
+
ELaunchSource[ELaunchSource["RunByGameDir"] = 302] = "RunByGameDir";
|
|
231
|
+
ELaunchSource[ELaunchSource["SubCmdRunDashGame"] = 303] = "SubCmdRunDashGame";
|
|
232
|
+
ELaunchSource[ELaunchSource["SteamURL_Launch"] = 400] = "SteamURL_Launch";
|
|
233
|
+
ELaunchSource[ELaunchSource["SteamURL_Run"] = 401] = "SteamURL_Run";
|
|
234
|
+
ELaunchSource[ELaunchSource["SteamURL_JoinLobby"] = 402] = "SteamURL_JoinLobby";
|
|
235
|
+
ELaunchSource[ELaunchSource["SteamURL_RunGame"] = 403] = "SteamURL_RunGame";
|
|
236
|
+
ELaunchSource[ELaunchSource["SteamURL_RunGameIdOrJumplist"] = 404] = "SteamURL_RunGameIdOrJumplist";
|
|
237
|
+
ELaunchSource[ELaunchSource["SteamURL_RunSafe"] = 405] = "SteamURL_RunSafe";
|
|
238
|
+
ELaunchSource[ELaunchSource["TrayIcon"] = 500] = "TrayIcon";
|
|
239
|
+
ELaunchSource[ELaunchSource["LibraryLeftColumnContextMenu"] = 600] = "LibraryLeftColumnContextMenu";
|
|
240
|
+
ELaunchSource[ELaunchSource["LibraryLeftColumnDoubleClick"] = 601] = "LibraryLeftColumnDoubleClick";
|
|
241
|
+
ELaunchSource[ELaunchSource["Dota2Launcher"] = 700] = "Dota2Launcher";
|
|
242
|
+
ELaunchSource[ELaunchSource["IRunGameEngine"] = 800] = "IRunGameEngine";
|
|
243
|
+
ELaunchSource[ELaunchSource["DRMFailureResponse"] = 801] = "DRMFailureResponse";
|
|
244
|
+
ELaunchSource[ELaunchSource["DRMDataRequest"] = 802] = "DRMDataRequest";
|
|
245
|
+
ELaunchSource[ELaunchSource["CloudFilePanel"] = 803] = "CloudFilePanel";
|
|
246
|
+
ELaunchSource[ELaunchSource["DiscoveredAlreadyRunning"] = 804] = "DiscoveredAlreadyRunning";
|
|
247
|
+
ELaunchSource[ELaunchSource["GameActionJoinParty"] = 900] = "GameActionJoinParty";
|
|
248
|
+
ELaunchSource[ELaunchSource["AppPortraitContextMenu"] = 1000] = "AppPortraitContextMenu";
|
|
249
|
+
})(ELaunchSource || (ELaunchSource = {}));
|
|
250
|
+
export var ECloudPendingRemoteOperation;
|
|
251
|
+
(function (ECloudPendingRemoteOperation) {
|
|
252
|
+
ECloudPendingRemoteOperation[ECloudPendingRemoteOperation["None"] = 0] = "None";
|
|
253
|
+
ECloudPendingRemoteOperation[ECloudPendingRemoteOperation["AppSessionActive"] = 1] = "AppSessionActive";
|
|
254
|
+
ECloudPendingRemoteOperation[ECloudPendingRemoteOperation["UploadInProgress"] = 2] = "UploadInProgress";
|
|
255
|
+
ECloudPendingRemoteOperation[ECloudPendingRemoteOperation["UploadPending"] = 3] = "UploadPending";
|
|
256
|
+
ECloudPendingRemoteOperation[ECloudPendingRemoteOperation["AppSessionSuspended"] = 4] = "AppSessionSuspended";
|
|
257
|
+
})(ECloudPendingRemoteOperation || (ECloudPendingRemoteOperation = {}));
|
|
258
|
+
export var EAppType;
|
|
259
|
+
(function (EAppType) {
|
|
260
|
+
EAppType[EAppType["DepotOnly"] = -2147483648] = "DepotOnly";
|
|
261
|
+
EAppType[EAppType["Invalid"] = 0] = "Invalid";
|
|
262
|
+
EAppType[EAppType["Game"] = 1] = "Game";
|
|
263
|
+
EAppType[EAppType["Application"] = 2] = "Application";
|
|
264
|
+
EAppType[EAppType["Tool"] = 4] = "Tool";
|
|
265
|
+
EAppType[EAppType["Demo"] = 8] = "Demo";
|
|
266
|
+
EAppType[EAppType["Deprecated"] = 16] = "Deprecated";
|
|
267
|
+
EAppType[EAppType["DLC"] = 32] = "DLC";
|
|
268
|
+
EAppType[EAppType["Guide"] = 64] = "Guide";
|
|
269
|
+
EAppType[EAppType["Driver"] = 128] = "Driver";
|
|
270
|
+
EAppType[EAppType["Config"] = 256] = "Config";
|
|
271
|
+
EAppType[EAppType["Hardware"] = 512] = "Hardware";
|
|
272
|
+
EAppType[EAppType["Franchise"] = 1024] = "Franchise";
|
|
273
|
+
EAppType[EAppType["Video"] = 2048] = "Video";
|
|
274
|
+
EAppType[EAppType["Plugin"] = 4096] = "Plugin";
|
|
275
|
+
EAppType[EAppType["MusicAlbum"] = 8192] = "MusicAlbum";
|
|
276
|
+
EAppType[EAppType["Series"] = 16384] = "Series";
|
|
277
|
+
EAppType[EAppType["Comic"] = 32768] = "Comic";
|
|
278
|
+
EAppType[EAppType["Beta"] = 65536] = "Beta";
|
|
279
|
+
EAppType[EAppType["Shortcut"] = 1073741824] = "Shortcut";
|
|
280
|
+
})(EAppType || (EAppType = {}));
|
|
281
|
+
export var EAppAssociationType;
|
|
282
|
+
(function (EAppAssociationType) {
|
|
283
|
+
EAppAssociationType[EAppAssociationType["Invalid"] = 0] = "Invalid";
|
|
284
|
+
EAppAssociationType[EAppAssociationType["Publisher"] = 1] = "Publisher";
|
|
285
|
+
EAppAssociationType[EAppAssociationType["Developer"] = 2] = "Developer";
|
|
286
|
+
EAppAssociationType[EAppAssociationType["Franchise"] = 3] = "Franchise";
|
|
287
|
+
})(EAppAssociationType || (EAppAssociationType = {}));
|
|
288
|
+
export var EAppControllerSupportLevel;
|
|
289
|
+
(function (EAppControllerSupportLevel) {
|
|
290
|
+
EAppControllerSupportLevel[EAppControllerSupportLevel["None"] = 0] = "None";
|
|
291
|
+
EAppControllerSupportLevel[EAppControllerSupportLevel["Partial"] = 1] = "Partial";
|
|
292
|
+
EAppControllerSupportLevel[EAppControllerSupportLevel["Full"] = 2] = "Full";
|
|
293
|
+
})(EAppControllerSupportLevel || (EAppControllerSupportLevel = {}));
|
|
294
|
+
export var ESteamDeckCompatibilityCategory;
|
|
295
|
+
(function (ESteamDeckCompatibilityCategory) {
|
|
296
|
+
ESteamDeckCompatibilityCategory[ESteamDeckCompatibilityCategory["Unknown"] = 0] = "Unknown";
|
|
297
|
+
ESteamDeckCompatibilityCategory[ESteamDeckCompatibilityCategory["Unsupported"] = 1] = "Unsupported";
|
|
298
|
+
ESteamDeckCompatibilityCategory[ESteamDeckCompatibilityCategory["Playable"] = 2] = "Playable";
|
|
299
|
+
ESteamDeckCompatibilityCategory[ESteamDeckCompatibilityCategory["Verified"] = 3] = "Verified";
|
|
300
|
+
})(ESteamDeckCompatibilityCategory || (ESteamDeckCompatibilityCategory = {}));
|
|
301
|
+
export var EAppCloudStatus;
|
|
302
|
+
(function (EAppCloudStatus) {
|
|
303
|
+
EAppCloudStatus[EAppCloudStatus["Invalid"] = 0] = "Invalid";
|
|
304
|
+
EAppCloudStatus[EAppCloudStatus["Disabled"] = 1] = "Disabled";
|
|
305
|
+
EAppCloudStatus[EAppCloudStatus["Unknown"] = 2] = "Unknown";
|
|
306
|
+
EAppCloudStatus[EAppCloudStatus["Synchronized"] = 3] = "Synchronized";
|
|
307
|
+
EAppCloudStatus[EAppCloudStatus["Checking"] = 4] = "Checking";
|
|
308
|
+
EAppCloudStatus[EAppCloudStatus["OutOfSync"] = 5] = "OutOfSync";
|
|
309
|
+
EAppCloudStatus[EAppCloudStatus["Uploading"] = 6] = "Uploading";
|
|
310
|
+
EAppCloudStatus[EAppCloudStatus["Downloading"] = 7] = "Downloading";
|
|
311
|
+
EAppCloudStatus[EAppCloudStatus["SyncFailed"] = 8] = "SyncFailed";
|
|
312
|
+
EAppCloudStatus[EAppCloudStatus["Conflict"] = 9] = "Conflict";
|
|
313
|
+
EAppCloudStatus[EAppCloudStatus["PendingElsewhere"] = 10] = "PendingElsewhere";
|
|
314
|
+
})(EAppCloudStatus || (EAppCloudStatus = {}));
|
|
315
|
+
export var ERaiseGameWindowResult;
|
|
316
|
+
(function (ERaiseGameWindowResult) {
|
|
317
|
+
ERaiseGameWindowResult[ERaiseGameWindowResult["NotRunning"] = 1] = "NotRunning";
|
|
318
|
+
ERaiseGameWindowResult[ERaiseGameWindowResult["Success"] = 2] = "Success";
|
|
319
|
+
ERaiseGameWindowResult[ERaiseGameWindowResult["Failure"] = 3] = "Failure";
|
|
320
|
+
})(ERaiseGameWindowResult || (ERaiseGameWindowResult = {}));
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { EResult, JsPbMessage, OperationResponse } from "./shared";
|
|
2
|
+
import { EOSType } from "./system";
|
|
3
|
+
export interface Auth {
|
|
4
|
+
ClearCachedSignInPin(): Promise<boolean>;
|
|
5
|
+
CurrentUserHasCachedSignInPin(): Promise<boolean>;
|
|
6
|
+
GetLocalHostname(): Promise<string>;
|
|
7
|
+
GetMachineID(): Promise<ArrayBuffer>;
|
|
8
|
+
GetRefreshInfo(): Promise<AuthRefreshInfo>;
|
|
9
|
+
GetSteamGuardData(param0: string): Promise<SteamGuardData>;
|
|
10
|
+
IsSecureComputer(): Promise<boolean>;
|
|
11
|
+
SetCachedSignInPin(pin: string): Promise<boolean>;
|
|
12
|
+
SetLoginToken(refreshToken: string, accountName: string): Promise<OperationResponse>;
|
|
13
|
+
SetSteamGuardData(accountName: string, newGuardData: string): void;
|
|
14
|
+
StartSignInFromCache(accountName: string, offlineMode: boolean): Promise<OperationResponse | void>;
|
|
15
|
+
UserHasCachedSignInPin(accountName: string): Promise<boolean>;
|
|
16
|
+
ValidateCachedSignInPin(accountName: string, pin: string): Promise<boolean>;
|
|
17
|
+
}
|
|
18
|
+
export interface AuthRefreshInfo {
|
|
19
|
+
reason: number;
|
|
20
|
+
account_name: string;
|
|
21
|
+
login_id_token: string;
|
|
22
|
+
}
|
|
23
|
+
export interface SteamGuardData {
|
|
24
|
+
data: string;
|
|
25
|
+
eresult: EResult;
|
|
26
|
+
}
|
|
27
|
+
export interface CAuthentication_DeviceDetails extends JsPbMessage {
|
|
28
|
+
client_count(): number | undefined;
|
|
29
|
+
device_friendly_name(): string | undefined;
|
|
30
|
+
gaming_device_type(): EGamingDeviceType | undefined;
|
|
31
|
+
machine_id(): Uint8Array | string;
|
|
32
|
+
os_type(): EOSType | undefined;
|
|
33
|
+
platform_type(): EAuthTokenPlatformType | undefined;
|
|
34
|
+
set_client_count(): any;
|
|
35
|
+
set_device_friendly_name(): any;
|
|
36
|
+
set_gaming_device_type(): any;
|
|
37
|
+
set_machine_id(): any;
|
|
38
|
+
set_os_type(): any;
|
|
39
|
+
set_platform_type(): any;
|
|
40
|
+
}
|
|
41
|
+
export declare enum EAuthTokenPlatformType {
|
|
42
|
+
Unknown = 0,
|
|
43
|
+
SteamClient = 1,
|
|
44
|
+
WebBrowser = 2,
|
|
45
|
+
MobileApp = 3
|
|
46
|
+
}
|
|
47
|
+
export declare enum EGamingDeviceType {
|
|
48
|
+
Unknown = 0,
|
|
49
|
+
StandardPC = 1,
|
|
50
|
+
Console = 256,
|
|
51
|
+
PS3 = 272,
|
|
52
|
+
Steambox = 288,
|
|
53
|
+
Tesla = 320,
|
|
54
|
+
Handheld = 512,
|
|
55
|
+
Phone = 528,
|
|
56
|
+
SteamDeck = 544
|
|
57
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export var EAuthTokenPlatformType;
|
|
2
|
+
(function (EAuthTokenPlatformType) {
|
|
3
|
+
EAuthTokenPlatformType[EAuthTokenPlatformType["Unknown"] = 0] = "Unknown";
|
|
4
|
+
EAuthTokenPlatformType[EAuthTokenPlatformType["SteamClient"] = 1] = "SteamClient";
|
|
5
|
+
EAuthTokenPlatformType[EAuthTokenPlatformType["WebBrowser"] = 2] = "WebBrowser";
|
|
6
|
+
EAuthTokenPlatformType[EAuthTokenPlatformType["MobileApp"] = 3] = "MobileApp";
|
|
7
|
+
})(EAuthTokenPlatformType || (EAuthTokenPlatformType = {}));
|
|
8
|
+
export var EGamingDeviceType;
|
|
9
|
+
(function (EGamingDeviceType) {
|
|
10
|
+
EGamingDeviceType[EGamingDeviceType["Unknown"] = 0] = "Unknown";
|
|
11
|
+
EGamingDeviceType[EGamingDeviceType["StandardPC"] = 1] = "StandardPC";
|
|
12
|
+
EGamingDeviceType[EGamingDeviceType["Console"] = 256] = "Console";
|
|
13
|
+
EGamingDeviceType[EGamingDeviceType["PS3"] = 272] = "PS3";
|
|
14
|
+
EGamingDeviceType[EGamingDeviceType["Steambox"] = 288] = "Steambox";
|
|
15
|
+
EGamingDeviceType[EGamingDeviceType["Tesla"] = 320] = "Tesla";
|
|
16
|
+
EGamingDeviceType[EGamingDeviceType["Handheld"] = 512] = "Handheld";
|
|
17
|
+
EGamingDeviceType[EGamingDeviceType["Phone"] = 528] = "Phone";
|
|
18
|
+
EGamingDeviceType[EGamingDeviceType["SteamDeck"] = 544] = "SteamDeck";
|
|
19
|
+
})(EGamingDeviceType || (EGamingDeviceType = {}));
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EResult, Unregisterable } from "./shared";
|
|
2
|
+
export interface Broadcast {
|
|
3
|
+
ApproveViewerRequest(steamId64: string, param1: number): void;
|
|
4
|
+
InviteToWatch(steamId64: string): Promise<EResult>;
|
|
5
|
+
RegisterForBroadcastStatus(callback: (status: BroadcastStatus) => void): Unregisterable;
|
|
6
|
+
RegisterForViewerRequests(callback: (viewerFriendCode: number, param1: number, param2: number) => void): Unregisterable;
|
|
7
|
+
RejectViewerRequest(steamId64: string, param1: number): void;
|
|
8
|
+
StopBroadcasting(): void;
|
|
9
|
+
}
|
|
10
|
+
export interface BroadcastStatus {
|
|
11
|
+
broadcastid: string;
|
|
12
|
+
nViewers: number;
|
|
13
|
+
nRequests: number;
|
|
14
|
+
bIsBroadcasting: boolean;
|
|
15
|
+
bIsRecordingDesktop: boolean;
|
|
16
|
+
eBroadcastReady: EResult;
|
|
17
|
+
bBroadcastCapable: boolean;
|
|
18
|
+
bMicrophoneEnabled: boolean;
|
|
19
|
+
bMicrophoneActive: boolean;
|
|
20
|
+
nCurrentFPS: number;
|
|
21
|
+
nUploadKbps: number;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Unregisterable } from "./shared";
|
|
2
|
+
export interface Browser {
|
|
3
|
+
AddWordToDictionary(word: string): void;
|
|
4
|
+
ClearAllBrowsingData(): void;
|
|
5
|
+
ClearHistory(): void;
|
|
6
|
+
CloseDevTools(): void;
|
|
7
|
+
GetBrowserID(): Promise<number>;
|
|
8
|
+
GetSpellingSuggestions(word: string): string[];
|
|
9
|
+
GetSteamBrowserID(): Promise<number>;
|
|
10
|
+
HideCursorUntilMouseEvent(): void;
|
|
11
|
+
InspectElement(clientY: number, clientX: number): void;
|
|
12
|
+
NotifyUserActivation(): void;
|
|
13
|
+
OpenDevTools(): void;
|
|
14
|
+
Paste(): void;
|
|
15
|
+
RegisterForGestureEvents(callback: (gesture: TouchGesture) => void): Unregisterable;
|
|
16
|
+
RegisterForOpenNewTab: Unregisterable;
|
|
17
|
+
ReplaceMisspelling(param0: string): void;
|
|
18
|
+
RestartJSContext(): void;
|
|
19
|
+
SetBackgroundThrottlingDisabled(value: boolean): void;
|
|
20
|
+
SetPendingFilePath(path: string): Promise<boolean>;
|
|
21
|
+
SetShouldExitSteamOnBrowserClosed(value: boolean): Promise<void>;
|
|
22
|
+
SetTouchGesturesToCancel(gestures: ETouchGesture[]): void;
|
|
23
|
+
StartDownload(url: string): void;
|
|
24
|
+
}
|
|
25
|
+
export interface TouchGesture {
|
|
26
|
+
eTouchGesture: ETouchGesture;
|
|
27
|
+
x: number;
|
|
28
|
+
y: number;
|
|
29
|
+
}
|
|
30
|
+
export declare enum ETouchGesture {
|
|
31
|
+
None = 0,
|
|
32
|
+
Touch = 1,
|
|
33
|
+
Tap = 2,
|
|
34
|
+
DoubleTap = 3,
|
|
35
|
+
ShortPress = 4,
|
|
36
|
+
LongPress = 5,
|
|
37
|
+
LongTap = 6,
|
|
38
|
+
TwoFingerTap = 7,
|
|
39
|
+
TapCancelled = 8,
|
|
40
|
+
PinchBegin = 9,
|
|
41
|
+
PinchUpdate = 10,
|
|
42
|
+
PinchEnd = 11,
|
|
43
|
+
FlingStart = 12,
|
|
44
|
+
FlingCancelled = 13
|
|
45
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export var ETouchGesture;
|
|
2
|
+
(function (ETouchGesture) {
|
|
3
|
+
ETouchGesture[ETouchGesture["None"] = 0] = "None";
|
|
4
|
+
ETouchGesture[ETouchGesture["Touch"] = 1] = "Touch";
|
|
5
|
+
ETouchGesture[ETouchGesture["Tap"] = 2] = "Tap";
|
|
6
|
+
ETouchGesture[ETouchGesture["DoubleTap"] = 3] = "DoubleTap";
|
|
7
|
+
ETouchGesture[ETouchGesture["ShortPress"] = 4] = "ShortPress";
|
|
8
|
+
ETouchGesture[ETouchGesture["LongPress"] = 5] = "LongPress";
|
|
9
|
+
ETouchGesture[ETouchGesture["LongTap"] = 6] = "LongTap";
|
|
10
|
+
ETouchGesture[ETouchGesture["TwoFingerTap"] = 7] = "TwoFingerTap";
|
|
11
|
+
ETouchGesture[ETouchGesture["TapCancelled"] = 8] = "TapCancelled";
|
|
12
|
+
ETouchGesture[ETouchGesture["PinchBegin"] = 9] = "PinchBegin";
|
|
13
|
+
ETouchGesture[ETouchGesture["PinchUpdate"] = 10] = "PinchUpdate";
|
|
14
|
+
ETouchGesture[ETouchGesture["PinchEnd"] = 11] = "PinchEnd";
|
|
15
|
+
ETouchGesture[ETouchGesture["FlingStart"] = 12] = "FlingStart";
|
|
16
|
+
ETouchGesture[ETouchGesture["FlingCancelled"] = 13] = "FlingCancelled";
|
|
17
|
+
})(ETouchGesture || (ETouchGesture = {}));
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BrowserContext } from "./shared";
|
|
2
|
+
export interface ClientNotifications {
|
|
3
|
+
DisplayClientNotification(notification: EClientUINotificationType, options: string, callback: (context: BrowserContext) => void): void;
|
|
4
|
+
OnRespondToClientNotification(notificationId: number, handleAction: boolean): void;
|
|
5
|
+
}
|
|
6
|
+
export interface SteamNotificationOptions {
|
|
7
|
+
body: string;
|
|
8
|
+
chatroomgroupid?: number;
|
|
9
|
+
chatroomid?: number;
|
|
10
|
+
icon?: string;
|
|
11
|
+
state: string;
|
|
12
|
+
steamid: string;
|
|
13
|
+
tag?: string;
|
|
14
|
+
title?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare enum EClientUINotificationType {
|
|
17
|
+
GroupChatMessage = 1,
|
|
18
|
+
FriendChatMessage = 2,
|
|
19
|
+
FriendPersonaState = 3
|
|
20
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var EClientUINotificationType;
|
|
2
|
+
(function (EClientUINotificationType) {
|
|
3
|
+
EClientUINotificationType[EClientUINotificationType["GroupChatMessage"] = 1] = "GroupChatMessage";
|
|
4
|
+
EClientUINotificationType[EClientUINotificationType["FriendChatMessage"] = 2] = "FriendChatMessage";
|
|
5
|
+
EClientUINotificationType[EClientUINotificationType["FriendPersonaState"] = 3] = "FriendPersonaState";
|
|
6
|
+
})(EClientUINotificationType || (EClientUINotificationType = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export interface CommunityItems {
|
|
2
|
+
DownloadItemAsset(communityItemId: string, param1: any, param2: string): any;
|
|
3
|
+
GetItemAssetPath(communityItemId: string, param1: any, param2: string): any;
|
|
4
|
+
RemoveDownloadedItemAsset(communityItemId: string, param1: any, param2: string): any;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Unregisterable } from "./shared";
|
|
2
|
+
export interface Console {
|
|
3
|
+
ExecCommand(command: string): void;
|
|
4
|
+
GetAutocompleteSuggestions(command: string): Promise<string[]>;
|
|
5
|
+
RegisterForSpewOutput(callback: (output: SpewOutput) => void): Unregisterable;
|
|
6
|
+
}
|
|
7
|
+
export type SpewType_t = "assert" | "error" | "warning" | "info" | "input";
|
|
8
|
+
export interface SpewOutput {
|
|
9
|
+
spew: string;
|
|
10
|
+
spew_type: SpewType_t;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface Customization {
|
|
2
|
+
GenerateLocalStartupMoviesThumbnails(param0: number): Promise<number>;
|
|
3
|
+
GetDownloadedStartupMovies(param0: string): Promise<StartupMovie[]>;
|
|
4
|
+
GetLocalStartupMovies(): Promise<StartupMovie[]>;
|
|
5
|
+
}
|
|
6
|
+
export interface StartupMovie {
|
|
7
|
+
strMovieURL: string;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Unregisterable } from "./shared";
|
|
2
|
+
import { EAppUpdateError } from "./App";
|
|
3
|
+
export interface Downloads {
|
|
4
|
+
EnableAllDownloads(enable: boolean): void;
|
|
5
|
+
MoveAppUpdateDown(appId: number): void;
|
|
6
|
+
MoveAppUpdateUp(appId: number): void;
|
|
7
|
+
PauseAppUpdate(appId: number): void;
|
|
8
|
+
QueueAppUpdate(appId: number): void;
|
|
9
|
+
RegisterForDownloadItems(callback: (isDownloading: boolean, downloadItems: DownloadItem[]) => void): Unregisterable;
|
|
10
|
+
RegisterForDownloadOverview(callback: (overview: DownloadOverview) => void): Unregisterable;
|
|
11
|
+
RemoveFromDownloadList(appId: number): void;
|
|
12
|
+
ResumeAppUpdate(appId: number): void;
|
|
13
|
+
SetLaunchOnUpdateComplete(appId: number): void;
|
|
14
|
+
SetQueueIndex(appId: number, index: number): void;
|
|
15
|
+
SuspendDownloadThrottling(suspend: boolean): void;
|
|
16
|
+
SuspendLanPeerContent(suspend: boolean): void;
|
|
17
|
+
}
|
|
18
|
+
export interface DownloadItem {
|
|
19
|
+
active: boolean;
|
|
20
|
+
appid: number;
|
|
21
|
+
buildid: number;
|
|
22
|
+
completed: boolean;
|
|
23
|
+
completed_time: number;
|
|
24
|
+
deferred_time: number;
|
|
25
|
+
downloaded_bytes: number;
|
|
26
|
+
launch_on_completion: boolean;
|
|
27
|
+
paused: boolean;
|
|
28
|
+
queue_index: number;
|
|
29
|
+
target_buildid: number;
|
|
30
|
+
total_bytes: number;
|
|
31
|
+
update_error: string;
|
|
32
|
+
update_result: EAppUpdateError;
|
|
33
|
+
update_type_info: UpdateTypeInfo[];
|
|
34
|
+
}
|
|
35
|
+
export interface DownloadOverview {
|
|
36
|
+
lan_peer_hostname: string;
|
|
37
|
+
paused: boolean;
|
|
38
|
+
throttling_suspended: boolean;
|
|
39
|
+
update_appid: number;
|
|
40
|
+
update_bytes_downloaded: number;
|
|
41
|
+
update_bytes_processed: number;
|
|
42
|
+
update_bytes_staged: number;
|
|
43
|
+
update_bytes_to_download: number;
|
|
44
|
+
update_bytes_to_process: number;
|
|
45
|
+
update_bytes_to_stage: number;
|
|
46
|
+
update_disc_bytes_per_second: number;
|
|
47
|
+
update_is_install: boolean;
|
|
48
|
+
update_is_prefetch_estimate: boolean;
|
|
49
|
+
update_is_shader: boolean;
|
|
50
|
+
update_is_upload: boolean;
|
|
51
|
+
update_is_workshop: boolean;
|
|
52
|
+
update_network_bytes_per_second: number;
|
|
53
|
+
update_peak_network_bytes_per_second: number;
|
|
54
|
+
update_seconds_remaining: number;
|
|
55
|
+
update_start_time: number;
|
|
56
|
+
update_state: 'None' | 'Starting' | 'Updating' | 'Stopping';
|
|
57
|
+
}
|
|
58
|
+
export interface UpdateTypeInfo {
|
|
59
|
+
completed_update: boolean;
|
|
60
|
+
downloaded_bytes: number;
|
|
61
|
+
has_update: boolean;
|
|
62
|
+
total_bytes: number;
|
|
63
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|