@seamapi/types 1.414.0 → 1.414.2
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 +290 -1124
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +352 -1133
- package/lib/seam/connect/models/locations/location.js +6 -1
- package/lib/seam/connect/models/locations/location.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/models/phones/phone-session.js +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-program.js +1 -1
- package/lib/seam/connect/openapi.d.ts +379 -1168
- package/lib/seam/connect/openapi.js +289 -1123
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/locations/location.ts +6 -1
- package/src/lib/seam/connect/models/phones/phone-session.ts +1 -1
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +337 -1234
- package/src/lib/seam/connect/route-types.ts +11 -3
|
@@ -41989,7 +41989,7 @@ export interface Routes {
|
|
|
41989
41989
|
endpoint_id?: string | undefined;
|
|
41990
41990
|
} | undefined;
|
|
41991
41991
|
is_managed: true;
|
|
41992
|
-
acs_credential_id
|
|
41992
|
+
acs_credential_id: string | null;
|
|
41993
41993
|
acs_entrances: Array<{
|
|
41994
41994
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
41995
41995
|
acs_system_id: string;
|
|
@@ -56820,6 +56820,7 @@ export interface Routes {
|
|
|
56820
56820
|
commonParams: {};
|
|
56821
56821
|
formData: {};
|
|
56822
56822
|
jsonResponse: {
|
|
56823
|
+
/** */
|
|
56823
56824
|
location: {
|
|
56824
56825
|
/** Unique identifier for the location. */
|
|
56825
56826
|
location_id: string;
|
|
@@ -56864,6 +56865,7 @@ export interface Routes {
|
|
|
56864
56865
|
};
|
|
56865
56866
|
formData: {};
|
|
56866
56867
|
jsonResponse: {
|
|
56868
|
+
/** */
|
|
56867
56869
|
location: {
|
|
56868
56870
|
/** Unique identifier for the location. */
|
|
56869
56871
|
location_id: string;
|
|
@@ -56962,6 +56964,7 @@ export interface Routes {
|
|
|
56962
56964
|
commonParams: {};
|
|
56963
56965
|
formData: {};
|
|
56964
56966
|
jsonResponse: {
|
|
56967
|
+
/** */
|
|
56965
56968
|
location: {
|
|
56966
56969
|
/** Unique identifier for the location. */
|
|
56967
56970
|
location_id: string;
|
|
@@ -57265,13 +57268,18 @@ export interface Routes {
|
|
|
57265
57268
|
};
|
|
57266
57269
|
formData: {};
|
|
57267
57270
|
jsonResponse: {
|
|
57271
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development). */
|
|
57268
57272
|
enrollment_automation: {
|
|
57269
|
-
|
|
57273
|
+
/** ID of the enrollment automation. */
|
|
57274
|
+
enrollment_automation_id: string;
|
|
57275
|
+
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
57270
57276
|
credential_manager_acs_system_id: string;
|
|
57277
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
57271
57278
|
user_identity_id: string;
|
|
57279
|
+
/** Date and time at which the enrollment automation was created. */
|
|
57272
57280
|
created_at: string;
|
|
57281
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
|
|
57273
57282
|
workspace_id: string;
|
|
57274
|
-
enrollment_automation_id: string;
|
|
57275
57283
|
};
|
|
57276
57284
|
};
|
|
57277
57285
|
};
|
package/package.json
CHANGED
|
@@ -26,6 +26,11 @@ export const location = z.object({
|
|
|
26
26
|
.string()
|
|
27
27
|
.datetime()
|
|
28
28
|
.describe('Date and time at which the location object was created.'),
|
|
29
|
-
})
|
|
29
|
+
}).describe(`
|
|
30
|
+
---
|
|
31
|
+
undocumented: Will be removed.
|
|
32
|
+
route_path: /unstable_locations
|
|
33
|
+
---
|
|
34
|
+
`)
|
|
30
35
|
|
|
31
36
|
export type Location = z.infer<typeof location>
|
|
@@ -50,7 +50,7 @@ export const thermostat_daily_program = z.object({
|
|
|
50
50
|
),
|
|
51
51
|
}).describe(`
|
|
52
52
|
---
|
|
53
|
-
route_path: /thermostats/
|
|
53
|
+
route_path: /thermostats/daily_programs
|
|
54
54
|
---
|
|
55
55
|
Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.
|
|
56
56
|
`)
|