@seamapi/types 1.414.1 → 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.
@@ -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) | null;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.414.1",
3
+ "version": "1.414.2",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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().nullable(),
14
+ acs_credential_id: z.string().nullable(),
15
15
  acs_entrances: acs_entrance.array(),
16
16
  })
17
17
  .array(),
@@ -17206,6 +17206,7 @@ export default {
17206
17206
  'errors',
17207
17207
  'warnings',
17208
17208
  'is_managed',
17209
+ 'acs_credential_id',
17209
17210
  'acs_entrances',
17210
17211
  ],
17211
17212
  type: 'object',
@@ -49465,7 +49465,7 @@ export interface Routes {
49465
49465
  }
49466
49466
  | undefined
49467
49467
  is_managed: true
49468
- acs_credential_id?: (string | undefined) | null
49468
+ acs_credential_id: string | null
49469
49469
  acs_entrances: Array<{
49470
49470
  /** 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). */
49471
49471
  acs_system_id: string