steamworks.js-timmy 0.1.18 → 0.1.20

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/client.d.ts CHANGED
@@ -567,6 +567,16 @@ export declare namespace input {
567
567
  PS5Controller = 'PS5Controller',
568
568
  SteamDeckController = 'SteamDeckController'
569
569
  }
570
+ export const enum KeyboardInputKind {
571
+ /** The text input that will closes on Enter keypress */
572
+ SingleLine = 0,
573
+ /** Text input that will closes on user's demand. */
574
+ MultiLine = 1,
575
+ /** Text input that will make typing email address easier. */
576
+ Email = 2,
577
+ /** Text input that will make typing numeric input easier. */
578
+ Numeric = 3
579
+ }
570
580
  export interface MotionData {
571
581
  /** Absolute Rotation (drift) X axis */
572
582
  rotQuatX: number
@@ -567,6 +567,16 @@ export declare namespace input {
567
567
  PS5Controller = 'PS5Controller',
568
568
  SteamDeckController = 'SteamDeckController'
569
569
  }
570
+ export const enum KeyboardInputKind {
571
+ /** The text input that will closes on Enter keypress */
572
+ SingleLine = 0,
573
+ /** Text input that will closes on user's demand. */
574
+ MultiLine = 1,
575
+ /** Text input that will make typing email address easier. */
576
+ Email = 2,
577
+ /** Text input that will make typing numeric input easier. */
578
+ Numeric = 3
579
+ }
570
580
  export interface MotionData {
571
581
  /** Absolute Rotation (drift) X axis */
572
582
  rotQuatX: number
@@ -567,6 +567,16 @@ export declare namespace input {
567
567
  PS5Controller = 'PS5Controller',
568
568
  SteamDeckController = 'SteamDeckController'
569
569
  }
570
+ export const enum KeyboardInputKind {
571
+ /** The text input that will closes on Enter keypress */
572
+ SingleLine = 0,
573
+ /** Text input that will closes on user's demand. */
574
+ MultiLine = 1,
575
+ /** Text input that will make typing email address easier. */
576
+ Email = 2,
577
+ /** Text input that will make typing numeric input easier. */
578
+ Numeric = 3
579
+ }
570
580
  export interface MotionData {
571
581
  /** Absolute Rotation (drift) X axis */
572
582
  rotQuatX: number
@@ -567,6 +567,16 @@ export declare namespace input {
567
567
  PS5Controller = 'PS5Controller',
568
568
  SteamDeckController = 'SteamDeckController'
569
569
  }
570
+ export const enum KeyboardInputKind {
571
+ /** The text input that will closes on Enter keypress */
572
+ SingleLine = 0,
573
+ /** Text input that will closes on user's demand. */
574
+ MultiLine = 1,
575
+ /** Text input that will make typing email address easier. */
576
+ Email = 2,
577
+ /** Text input that will make typing numeric input easier. */
578
+ Numeric = 3
579
+ }
570
580
  export interface MotionData {
571
581
  /** Absolute Rotation (drift) X axis */
572
582
  rotQuatX: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamworks.js-timmy",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "napi": {
@@ -35,8 +35,8 @@
35
35
  },
36
36
  "scripts": {
37
37
  "build": "npm run types && node build --release",
38
- "prepare": "npm run build",
39
- "build:debug": "node build",
38
+ "prepare": "npm run build:debug",
39
+ "build:debug": "npm run types && node build",
40
40
  "prune": "rimraf dist target client.d.ts",
41
41
  "format": "cargo clippy --fix --allow-staged && cargo fmt",
42
42
  "types": "tsc index.js --allowJs --declaration --emitDeclarationOnly"