@seamapi/types 1.464.0 → 1.464.3

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.
Files changed (46) hide show
  1. package/LICENSE.txt +1 -1
  2. package/dist/connect.d.cts +2793 -2269
  3. package/dist/devicedb.d.cts +0 -4
  4. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
  5. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +6 -6
  8. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +248 -248
  9. package/lib/seam/connect/models/action-attempts/activate-climate-preset.d.ts +12 -12
  10. package/lib/seam/connect/models/action-attempts/common.d.ts +10 -10
  11. package/lib/seam/connect/models/action-attempts/deprecated.d.ts +84 -84
  12. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +28 -28
  13. package/lib/seam/connect/models/action-attempts/lock-door.d.ts +12 -12
  14. package/lib/seam/connect/models/action-attempts/push-thermostat-programs.d.ts +12 -12
  15. package/lib/seam/connect/models/action-attempts/reset-sandbox-workspace.d.ts +12 -12
  16. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
  17. package/lib/seam/connect/models/action-attempts/set-fan-mode.d.ts +12 -12
  18. package/lib/seam/connect/models/action-attempts/set-hvac-mode.d.ts +12 -12
  19. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +12 -12
  20. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +12 -12
  21. package/lib/seam/connect/models/action-attempts/unlock-door.d.ts +12 -12
  22. package/lib/seam/connect/models/batch.d.ts +2564 -2564
  23. package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +6 -6
  24. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +12 -12
  25. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +12 -12
  26. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +12 -12
  27. package/lib/seam/connect/models/devices/device-metadata.d.ts +56 -56
  28. package/lib/seam/connect/models/devices/device.d.ts +132 -132
  29. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +100 -100
  30. package/lib/seam/connect/models/events/devices.d.ts +16 -16
  31. package/lib/seam/connect/models/events/seam-event.d.ts +8 -8
  32. package/lib/seam/connect/models/locations/location.d.ts +2 -2
  33. package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
  34. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +2 -2
  35. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
  36. package/lib/seam/connect/models/webhooks/webhook.d.ts +2 -2
  37. package/lib/seam/connect/models/workspaces/workspace.d.ts +4 -4
  38. package/lib/seam/connect/openapi.js +6 -6
  39. package/lib/seam/connect/openapi.js.map +1 -1
  40. package/lib/seam/connect/route-types.d.ts +2793 -2269
  41. package/lib/seam/devicedb/models/device-model.d.ts +116 -116
  42. package/lib/seam/devicedb/models/image-reference.d.ts +4 -4
  43. package/lib/seam/devicedb/models/manufacturer.d.ts +12 -12
  44. package/lib/seam/devicedb/route-specs.d.ts +210 -214
  45. package/package.json +12 -13
  46. package/src/lib/seam/connect/route-types.ts +3007 -2362
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.464.0",
3
+ "version": "1.464.3",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -77,12 +77,11 @@
77
77
  "docs:build": "typedoc",
78
78
  "blueprint": "tsx ./blueprint.ts",
79
79
  "preblueprint": "mkdirp tmp",
80
- "lint": "eslint --ignore-path .gitignore .",
81
- "prelint": "prettier --check --ignore-path .gitignore .",
80
+ "lint": "eslint .",
81
+ "postlint": "prettier --check --ignore-path .gitignore .",
82
82
  "postversion": "git push --follow-tags",
83
83
  "format": "prettier --write --ignore-path .gitignore .",
84
- "preformat": "patch-package",
85
- "postformat": "eslint --ignore-path .gitignore --fix ."
84
+ "preformat": "eslint --fix ."
86
85
  },
87
86
  "engines": {
88
87
  "node": ">=20.9.0",
@@ -97,21 +96,21 @@
97
96
  "@types/node": "^22.15.21",
98
97
  "concurrently": "^9.2.0",
99
98
  "del-cli": "^6.0.0",
100
- "eslint": "^8.9.0",
101
- "eslint-config-prettier": "^9.0.0",
102
- "eslint-config-standard": "^17.1.0",
103
- "eslint-config-standard-with-typescript": "^43.0.1",
104
- "eslint-plugin-node": "^11.1.0",
105
- "eslint-plugin-simple-import-sort": "^12.0.0",
106
- "eslint-plugin-unused-imports": "^3.0.0",
99
+ "eslint": "^9.31.0",
100
+ "eslint-plugin-import": "^2.32.0",
101
+ "eslint-plugin-n": "^17.21.0",
102
+ "eslint-plugin-simple-import-sort": "^12.1.1",
103
+ "eslint-plugin-unused-imports": "^4.1.4",
104
+ "jiti": "^2.4.2",
107
105
  "mkdirp": "^3.0.1",
106
+ "neostandard": "^0.12.2",
108
107
  "patch-package": "^8.0.0",
109
108
  "prettier": "^3.0.0",
110
109
  "tsc-alias": "^1.8.2",
111
110
  "tsup": "^8.0.1",
112
111
  "tsx": "^4.6.2",
113
112
  "typedoc": "^0.28.7",
114
- "typescript": "~5.3.3",
113
+ "typescript": "^5.8.3",
115
114
  "zod": "^3.24.0"
116
115
  }
117
116
  }