@seamapi/types 1.416.2 → 1.417.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.
@@ -10511,6 +10511,8 @@ export interface Routes {
10511
10511
  created_at: string;
10512
10512
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
10513
10513
  display_name: string;
10514
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
10515
+ connected_account_id: string;
10514
10516
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
10515
10517
  errors: Array<{
10516
10518
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -11808,6 +11810,8 @@ export interface Routes {
11808
11810
  created_at: string;
11809
11811
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11810
11812
  display_name: string;
11813
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11814
+ connected_account_id: string;
11811
11815
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11812
11816
  errors: Array<{
11813
11817
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -16622,6 +16626,8 @@ export interface Routes {
16622
16626
  created_at: string;
16623
16627
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16624
16628
  display_name: string;
16629
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16630
+ connected_account_id: string;
16625
16631
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16626
16632
  errors: Array<{
16627
16633
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -16750,6 +16756,8 @@ export interface Routes {
16750
16756
  created_at: string;
16751
16757
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16752
16758
  display_name: string;
16759
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16760
+ connected_account_id: string;
16753
16761
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
16754
16762
  errors: Array<{
16755
16763
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -18145,6 +18153,8 @@ export interface Routes {
18145
18153
  created_at: string;
18146
18154
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18147
18155
  display_name: string;
18156
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18157
+ connected_account_id: string;
18148
18158
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18149
18159
  errors: Array<{
18150
18160
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -45444,6 +45454,8 @@ export interface Routes {
45444
45454
  created_at: string;
45445
45455
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
45446
45456
  display_name: string;
45457
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
45458
+ connected_account_id: string;
45447
45459
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
45448
45460
  errors: Array<{
45449
45461
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.416.2",
3
+ "version": "1.417.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -33,6 +33,12 @@ export const acs_entrance = z.object({
33
33
  .describe(
34
34
  'Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
35
35
  ),
36
+ connected_account_id: z
37
+ .string()
38
+ .uuid()
39
+ .describe(
40
+ 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
41
+ ),
36
42
  errors: z
37
43
  .array(
38
44
  z.object({
@@ -2653,6 +2653,12 @@ export default {
2653
2653
  required: ['door_type', 'door_name'],
2654
2654
  type: 'object',
2655
2655
  },
2656
+ connected_account_id: {
2657
+ description:
2658
+ 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
2659
+ format: 'uuid',
2660
+ type: 'string',
2661
+ },
2656
2662
  created_at: {
2657
2663
  description:
2658
2664
  'Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.',
@@ -2855,6 +2861,7 @@ export default {
2855
2861
  'acs_entrance_id',
2856
2862
  'created_at',
2857
2863
  'display_name',
2864
+ 'connected_account_id',
2858
2865
  'errors',
2859
2866
  ],
2860
2867
  type: 'object',
@@ -18367,6 +18374,12 @@ export default {
18367
18374
  required: ['door_type', 'door_name'],
18368
18375
  type: 'object',
18369
18376
  },
18377
+ connected_account_id: {
18378
+ description:
18379
+ 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
18380
+ format: 'uuid',
18381
+ type: 'string',
18382
+ },
18370
18383
  created_at: {
18371
18384
  description:
18372
18385
  'Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.',
@@ -18577,6 +18590,7 @@ export default {
18577
18590
  'acs_entrance_id',
18578
18591
  'created_at',
18579
18592
  'display_name',
18593
+ 'connected_account_id',
18580
18594
  'errors',
18581
18595
  ],
18582
18596
  type: 'object',
@@ -11791,6 +11791,8 @@ export interface Routes {
11791
11791
  created_at: string
11792
11792
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11793
11793
  display_name: string
11794
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11795
+ connected_account_id: string
11794
11796
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
11795
11797
  errors: Array<{
11796
11798
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -13312,6 +13314,8 @@ export interface Routes {
13312
13314
  created_at: string
13313
13315
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
13314
13316
  display_name: string
13317
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
13318
+ connected_account_id: string
13315
13319
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
13316
13320
  errors: Array<{
13317
13321
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -18836,6 +18840,8 @@ export interface Routes {
18836
18840
  created_at: string
18837
18841
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18838
18842
  display_name: string
18843
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18844
+ connected_account_id: string
18839
18845
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18840
18846
  errors: Array<{
18841
18847
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -18987,6 +18993,8 @@ export interface Routes {
18987
18993
  created_at: string
18988
18994
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18989
18995
  display_name: string
18996
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18997
+ connected_account_id: string
18990
18998
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
18991
18999
  errors: Array<{
18992
19000
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -20667,6 +20675,8 @@ export interface Routes {
20667
20675
  created_at: string
20668
20676
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
20669
20677
  display_name: string
20678
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
20679
+ connected_account_id: string
20670
20680
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
20671
20681
  errors: Array<{
20672
20682
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -52920,6 +52930,8 @@ export interface Routes {
52920
52930
  created_at: string
52921
52931
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
52922
52932
  display_name: string
52933
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
52934
+ connected_account_id: string
52923
52935
  /** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
52924
52936
  errors: Array<{
52925
52937
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */