@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.
- package/LICENSE.txt +1 -1
- package/dist/connect.d.cts +2793 -2269
- package/dist/devicedb.d.cts +0 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-system.d.ts +6 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +248 -248
- package/lib/seam/connect/models/action-attempts/activate-climate-preset.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/common.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/deprecated.d.ts +84 -84
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/lock-door.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/push-thermostat-programs.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/reset-sandbox-workspace.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/set-fan-mode.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/unlock-door.d.ts +12 -12
- package/lib/seam/connect/models/batch.d.ts +2564 -2564
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +6 -6
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +12 -12
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +12 -12
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +12 -12
- package/lib/seam/connect/models/devices/device-metadata.d.ts +56 -56
- package/lib/seam/connect/models/devices/device.d.ts +132 -132
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +100 -100
- package/lib/seam/connect/models/events/devices.d.ts +16 -16
- package/lib/seam/connect/models/events/seam-event.d.ts +8 -8
- package/lib/seam/connect/models/locations/location.d.ts +2 -2
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
- package/lib/seam/connect/models/webhooks/webhook.d.ts +2 -2
- package/lib/seam/connect/models/workspaces/workspace.d.ts +4 -4
- package/lib/seam/connect/openapi.js +6 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2793 -2269
- package/lib/seam/devicedb/models/device-model.d.ts +116 -116
- package/lib/seam/devicedb/models/image-reference.d.ts +4 -4
- package/lib/seam/devicedb/models/manufacturer.d.ts +12 -12
- package/lib/seam/devicedb/route-specs.d.ts +210 -214
- package/package.json +12 -13
- 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.
|
|
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
|
|
81
|
-
"
|
|
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": "
|
|
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": "^
|
|
101
|
-
"eslint-
|
|
102
|
-
"eslint-
|
|
103
|
-
"eslint-
|
|
104
|
-
"eslint-plugin-
|
|
105
|
-
"
|
|
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": "
|
|
113
|
+
"typescript": "^5.8.3",
|
|
115
114
|
"zod": "^3.24.0"
|
|
116
115
|
}
|
|
117
116
|
}
|