@seamapi/types 1.414.0 → 1.414.1

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.
@@ -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?: string | undefined;
41992
+ acs_credential_id?: (string | undefined) | 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
- acs_credential_provisioning_automation_id: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.414.0",
3
+ "version": "1.414.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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>
@@ -11,7 +11,7 @@ const phone_provider_session = z.object({
11
11
  acs_credential_id: true,
12
12
  })
13
13
  .extend({
14
- acs_credential_id: z.string().optional(),
14
+ acs_credential_id: z.string().optional().nullable(),
15
15
  acs_entrances: acs_entrance.array(),
16
16
  })
17
17
  .array(),
@@ -50,7 +50,7 @@ export const thermostat_daily_program = z.object({
50
50
  ),
51
51
  }).describe(`
52
52
  ---
53
- route_path: /thermostats/thermostat_daily_programs
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
  `)