@seamapi/types 1.427.0 → 1.429.0
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/connect.cjs +816 -438
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4712 -5979
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -183
- package/lib/seam/connect/models/action-attempts/action-attempt.js +1 -3
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1038 -393
- package/lib/seam/connect/openapi.js +746 -292
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3192 -4921
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +1 -3
- package/src/lib/seam/connect/openapi.ts +760 -319
- package/src/lib/seam/connect/route-types.ts +3752 -5656
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +0 -186
- package/lib/seam/connect/models/action-attempts/encode-access-method.js +0 -60
- package/lib/seam/connect/models/action-attempts/encode-access-method.js.map +0 -1
- package/src/lib/seam/connect/models/action-attempts/encode-access-method.ts +0 -101
package/package.json
CHANGED
|
@@ -26,11 +26,11 @@ export const access_method = z.object({
|
|
|
26
26
|
.url()
|
|
27
27
|
.optional()
|
|
28
28
|
.describe('URL of the Instant Key for mobile key access methods.'),
|
|
29
|
-
|
|
29
|
+
is_encoding_required: z
|
|
30
30
|
.boolean()
|
|
31
31
|
.optional()
|
|
32
32
|
.describe(
|
|
33
|
-
'Indicates whether card
|
|
33
|
+
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
34
34
|
),
|
|
35
35
|
}).describe(`
|
|
36
36
|
---
|
|
@@ -2,7 +2,6 @@ import { z } from 'zod'
|
|
|
2
2
|
|
|
3
3
|
import { activate_climate_preset_action_attempt } from './activate-climate-preset.js'
|
|
4
4
|
import { deprecated_action_attempts } from './deprecated.js'
|
|
5
|
-
import { encode_access_method_action_attempt } from './encode-access-method.js'
|
|
6
5
|
import { encode_credential_action_attempt } from './encode-credential.js'
|
|
7
6
|
import { lock_door_action_attempt } from './lock-door.js'
|
|
8
7
|
import { push_thermostat_programs_action_attempt } from './push-thermostat-programs.js'
|
|
@@ -18,7 +17,6 @@ export const action_attempt = z.union([
|
|
|
18
17
|
...lock_door_action_attempt.options,
|
|
19
18
|
...unlock_door_action_attempt.options,
|
|
20
19
|
...scan_credential_action_attempt.options,
|
|
21
|
-
...encode_access_method_action_attempt.options,
|
|
22
20
|
...encode_credential_action_attempt.options,
|
|
23
21
|
...reset_sandbox_workspace_action_attempt.options,
|
|
24
22
|
...set_fan_mode_action_attempt.options,
|
|
@@ -33,7 +31,7 @@ export const action_attempt = z.union([
|
|
|
33
31
|
route_path: /action_attempts
|
|
34
32
|
---
|
|
35
33
|
Represents an action attempt that enables you to keep track of the progress of your action that affects a physical device or system.actions against a device. Action attempts are useful because the physical world is intrinsically asynchronous.
|
|
36
|
-
|
|
34
|
+
|
|
37
35
|
When you request for a device to perform an action, the Seam API immediately returns an action attempt object. In the background, the Seam API performs the action.
|
|
38
36
|
|
|
39
37
|
See also [Action Attempts](https://docs.seam.co/latest/core-concepts/action-attempts).
|