@pipelab/steamworks.js 0.8.0 → 0.9.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/callbacks.d.ts CHANGED
@@ -53,4 +53,7 @@ export interface CallbackReturns {
53
53
  order_id: number | bigint
54
54
  authorized: boolean
55
55
  }
56
+ [client.callback.SteamCallback.GameOverlayActivated]: {
57
+ active: boolean
58
+ }
56
59
  }
package/client.d.ts CHANGED
@@ -56,7 +56,8 @@ export declare namespace callback {
56
56
  P2PSessionRequest = 6,
57
57
  P2PSessionConnectFail = 7,
58
58
  GameLobbyJoinRequested = 8,
59
- MicroTxnAuthorizationResponse = 9
59
+ MicroTxnAuthorizationResponse = 9,
60
+ GameOverlayActivated = 10
60
61
  }
61
62
  export function register<C extends keyof import('./callbacks').CallbackReturns>(steamCallback: C, handler: (value: import('./callbacks').CallbackReturns[C]) => void): Handle
62
63
  export class Handle {
@@ -273,6 +274,7 @@ export declare namespace stats {
273
274
  export declare namespace utils {
274
275
  export function getAppId(): number
275
276
  export function getServerRealTime(): number
277
+ export function getSteamUiLanguage(): string
276
278
  export function isSteamRunningOnSteamDeck(): boolean
277
279
  export const enum GamepadTextInputMode {
278
280
  Normal = 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/steamworks.js",
3
- "version": "0.8.0",
3
+ "version": "0.9.1",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "publishConfig": {