@seamapi/types 1.801.0 → 1.803.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +107 -58
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +209 -19
  4. package/dist/index.cjs +107 -58
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -0
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js +9 -0
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  9. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -0
  10. package/lib/seam/connect/models/acs/acs-access-group.js +2 -2
  11. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-system.js +2 -2
  13. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  14. package/lib/seam/connect/models/batch.d.ts +58 -0
  15. package/lib/seam/connect/models/events/access-grants.js +1 -1
  16. package/lib/seam/connect/models/events/access-grants.js.map +1 -1
  17. package/lib/seam/connect/models/events/acs/entrances.js +2 -2
  18. package/lib/seam/connect/models/events/connect-webviews.js +3 -3
  19. package/lib/seam/connect/models/events/connected-accounts.js +1 -1
  20. package/lib/seam/connect/openapi.js +89 -47
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +96 -19
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +14 -0
  25. package/src/lib/seam/connect/models/acs/acs-access-group.ts +2 -2
  26. package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
  27. package/src/lib/seam/connect/models/events/access-grants.ts +1 -1
  28. package/src/lib/seam/connect/models/events/acs/entrances.ts +2 -2
  29. package/src/lib/seam/connect/models/events/connect-webviews.ts +3 -3
  30. package/src/lib/seam/connect/models/events/connected-accounts.ts +1 -1
  31. package/src/lib/seam/connect/openapi.ts +97 -47
  32. package/src/lib/seam/connect/route-types.ts +107 -19
@@ -396,6 +396,19 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
396
396
  }>, z.ZodObject<{
397
397
  message: z.ZodString;
398
398
  created_at: z.ZodOptional<z.ZodString>;
399
+ } & {
400
+ warning_code: z.ZodLiteral<"schlage_access_code_ambiguous_timezone_dst_risk">;
401
+ }, "strip", z.ZodTypeAny, {
402
+ message: string;
403
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
404
+ created_at?: string | undefined;
405
+ }, {
406
+ message: string;
407
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
408
+ created_at?: string | undefined;
409
+ }>, z.ZodObject<{
410
+ message: z.ZodString;
411
+ created_at: z.ZodOptional<z.ZodString>;
399
412
  } & {
400
413
  warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
401
414
  }, "strip", z.ZodTypeAny, {
@@ -1292,6 +1305,19 @@ declare const access_code: z.ZodObject<{
1292
1305
  }>, z.ZodObject<{
1293
1306
  message: z.ZodString;
1294
1307
  created_at: z.ZodOptional<z.ZodString>;
1308
+ } & {
1309
+ warning_code: z.ZodLiteral<"schlage_access_code_ambiguous_timezone_dst_risk">;
1310
+ }, "strip", z.ZodTypeAny, {
1311
+ message: string;
1312
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
1313
+ created_at?: string | undefined;
1314
+ }, {
1315
+ message: string;
1316
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
1317
+ created_at?: string | undefined;
1318
+ }>, z.ZodObject<{
1319
+ message: z.ZodString;
1320
+ created_at: z.ZodOptional<z.ZodString>;
1295
1321
  } & {
1296
1322
  warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
1297
1323
  }, "strip", z.ZodTypeAny, {
@@ -1895,6 +1921,10 @@ declare const access_code: z.ZodObject<{
1895
1921
  message: string;
1896
1922
  warning_code: "schlage_creation_outage";
1897
1923
  created_at?: string | undefined;
1924
+ } | {
1925
+ message: string;
1926
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
1927
+ created_at?: string | undefined;
1898
1928
  } | {
1899
1929
  message: string;
1900
1930
  warning_code: "delay_in_setting_on_device";
@@ -2242,6 +2272,10 @@ declare const access_code: z.ZodObject<{
2242
2272
  message: string;
2243
2273
  warning_code: "schlage_creation_outage";
2244
2274
  created_at?: string | undefined;
2275
+ } | {
2276
+ message: string;
2277
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
2278
+ created_at?: string | undefined;
2245
2279
  } | {
2246
2280
  message: string;
2247
2281
  warning_code: "delay_in_setting_on_device";
@@ -3090,6 +3124,19 @@ declare const unmanaged_access_code: z.ZodObject<{
3090
3124
  }>, z.ZodObject<{
3091
3125
  message: z.ZodString;
3092
3126
  created_at: z.ZodOptional<z.ZodString>;
3127
+ } & {
3128
+ warning_code: z.ZodLiteral<"schlage_access_code_ambiguous_timezone_dst_risk">;
3129
+ }, "strip", z.ZodTypeAny, {
3130
+ message: string;
3131
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
3132
+ created_at?: string | undefined;
3133
+ }, {
3134
+ message: string;
3135
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
3136
+ created_at?: string | undefined;
3137
+ }>, z.ZodObject<{
3138
+ message: z.ZodString;
3139
+ created_at: z.ZodOptional<z.ZodString>;
3093
3140
  } & {
3094
3141
  warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
3095
3142
  }, "strip", z.ZodTypeAny, {
@@ -3517,6 +3564,10 @@ declare const unmanaged_access_code: z.ZodObject<{
3517
3564
  message: string;
3518
3565
  warning_code: "schlage_creation_outage";
3519
3566
  created_at?: string | undefined;
3567
+ } | {
3568
+ message: string;
3569
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
3570
+ created_at?: string | undefined;
3520
3571
  } | {
3521
3572
  message: string;
3522
3573
  warning_code: "delay_in_setting_on_device";
@@ -3809,6 +3860,10 @@ declare const unmanaged_access_code: z.ZodObject<{
3809
3860
  message: string;
3810
3861
  warning_code: "schlage_creation_outage";
3811
3862
  created_at?: string | undefined;
3863
+ } | {
3864
+ message: string;
3865
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
3866
+ created_at?: string | undefined;
3812
3867
  } | {
3813
3868
  message: string;
3814
3869
  warning_code: "delay_in_setting_on_device";
@@ -35344,6 +35399,19 @@ declare const batch: z.ZodObject<{
35344
35399
  }>, z.ZodObject<{
35345
35400
  message: z.ZodString;
35346
35401
  created_at: z.ZodOptional<z.ZodString>;
35402
+ } & {
35403
+ warning_code: z.ZodLiteral<"schlage_access_code_ambiguous_timezone_dst_risk">;
35404
+ }, "strip", z.ZodTypeAny, {
35405
+ message: string;
35406
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
35407
+ created_at?: string | undefined;
35408
+ }, {
35409
+ message: string;
35410
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
35411
+ created_at?: string | undefined;
35412
+ }>, z.ZodObject<{
35413
+ message: z.ZodString;
35414
+ created_at: z.ZodOptional<z.ZodString>;
35347
35415
  } & {
35348
35416
  warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
35349
35417
  }, "strip", z.ZodTypeAny, {
@@ -35947,6 +36015,10 @@ declare const batch: z.ZodObject<{
35947
36015
  message: string;
35948
36016
  warning_code: "schlage_creation_outage";
35949
36017
  created_at?: string | undefined;
36018
+ } | {
36019
+ message: string;
36020
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
36021
+ created_at?: string | undefined;
35950
36022
  } | {
35951
36023
  message: string;
35952
36024
  warning_code: "delay_in_setting_on_device";
@@ -36294,6 +36366,10 @@ declare const batch: z.ZodObject<{
36294
36366
  message: string;
36295
36367
  warning_code: "schlage_creation_outage";
36296
36368
  created_at?: string | undefined;
36369
+ } | {
36370
+ message: string;
36371
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
36372
+ created_at?: string | undefined;
36297
36373
  } | {
36298
36374
  message: string;
36299
36375
  warning_code: "delay_in_setting_on_device";
@@ -37140,6 +37216,19 @@ declare const batch: z.ZodObject<{
37140
37216
  }>, z.ZodObject<{
37141
37217
  message: z.ZodString;
37142
37218
  created_at: z.ZodOptional<z.ZodString>;
37219
+ } & {
37220
+ warning_code: z.ZodLiteral<"schlage_access_code_ambiguous_timezone_dst_risk">;
37221
+ }, "strip", z.ZodTypeAny, {
37222
+ message: string;
37223
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
37224
+ created_at?: string | undefined;
37225
+ }, {
37226
+ message: string;
37227
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
37228
+ created_at?: string | undefined;
37229
+ }>, z.ZodObject<{
37230
+ message: z.ZodString;
37231
+ created_at: z.ZodOptional<z.ZodString>;
37143
37232
  } & {
37144
37233
  warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
37145
37234
  }, "strip", z.ZodTypeAny, {
@@ -37567,6 +37656,10 @@ declare const batch: z.ZodObject<{
37567
37656
  message: string;
37568
37657
  warning_code: "schlage_creation_outage";
37569
37658
  created_at?: string | undefined;
37659
+ } | {
37660
+ message: string;
37661
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
37662
+ created_at?: string | undefined;
37570
37663
  } | {
37571
37664
  message: string;
37572
37665
  warning_code: "delay_in_setting_on_device";
@@ -37859,6 +37952,10 @@ declare const batch: z.ZodObject<{
37859
37952
  message: string;
37860
37953
  warning_code: "schlage_creation_outage";
37861
37954
  created_at?: string | undefined;
37955
+ } | {
37956
+ message: string;
37957
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
37958
+ created_at?: string | undefined;
37862
37959
  } | {
37863
37960
  message: string;
37864
37961
  warning_code: "delay_in_setting_on_device";
@@ -42567,6 +42664,10 @@ declare const batch: z.ZodObject<{
42567
42664
  message: string;
42568
42665
  warning_code: "schlage_creation_outage";
42569
42666
  created_at?: string | undefined;
42667
+ } | {
42668
+ message: string;
42669
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
42670
+ created_at?: string | undefined;
42570
42671
  } | {
42571
42672
  message: string;
42572
42673
  warning_code: "delay_in_setting_on_device";
@@ -42915,6 +43016,10 @@ declare const batch: z.ZodObject<{
42915
43016
  message: string;
42916
43017
  warning_code: "schlage_creation_outage";
42917
43018
  created_at?: string | undefined;
43019
+ } | {
43020
+ message: string;
43021
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
43022
+ created_at?: string | undefined;
42918
43023
  } | {
42919
43024
  message: string;
42920
43025
  warning_code: "delay_in_setting_on_device";
@@ -47496,6 +47601,10 @@ declare const batch: z.ZodObject<{
47496
47601
  message: string;
47497
47602
  warning_code: "schlage_creation_outage";
47498
47603
  created_at?: string | undefined;
47604
+ } | {
47605
+ message: string;
47606
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
47607
+ created_at?: string | undefined;
47499
47608
  } | {
47500
47609
  message: string;
47501
47610
  warning_code: "delay_in_setting_on_device";
@@ -47844,6 +47953,10 @@ declare const batch: z.ZodObject<{
47844
47953
  message: string;
47845
47954
  warning_code: "schlage_creation_outage";
47846
47955
  created_at?: string | undefined;
47956
+ } | {
47957
+ message: string;
47958
+ warning_code: "schlage_access_code_ambiguous_timezone_dst_risk";
47959
+ created_at?: string | undefined;
47847
47960
  } | {
47848
47961
  message: string;
47849
47962
  warning_code: "delay_in_setting_on_device";
@@ -137494,7 +137607,7 @@ type Routes = {
137494
137607
  common_code_key?: string | undefined;
137495
137608
  /** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
137496
137609
  prefer_native_scheduling?: boolean | undefined;
137497
- /** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
137610
+ /** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
137498
137611
  use_backup_access_code_pool?: boolean | undefined;
137499
137612
  /** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
137500
137613
  allow_external_modification?: boolean | undefined;
@@ -139232,6 +139345,13 @@ type Routes = {
139232
139345
  created_at?: string | undefined;
139233
139346
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139234
139347
  warning_code: 'schlage_creation_outage';
139348
+ } | {
139349
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
139350
+ message: string;
139351
+ /** Date and time at which Seam created the warning. */
139352
+ created_at?: string | undefined;
139353
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139354
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
139235
139355
  } | {
139236
139356
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
139237
139357
  message: string;
@@ -139860,6 +139980,13 @@ type Routes = {
139860
139980
  created_at?: string | undefined;
139861
139981
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139862
139982
  warning_code: 'schlage_creation_outage';
139983
+ } | {
139984
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
139985
+ message: string;
139986
+ /** Date and time at which Seam created the warning. */
139987
+ created_at?: string | undefined;
139988
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139989
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
139863
139990
  } | {
139864
139991
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
139865
139992
  message: string;
@@ -141836,6 +141963,13 @@ type Routes = {
141836
141963
  created_at?: string | undefined;
141837
141964
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
141838
141965
  warning_code: 'schlage_creation_outage';
141966
+ } | {
141967
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
141968
+ message: string;
141969
+ /** Date and time at which Seam created the warning. */
141970
+ created_at?: string | undefined;
141971
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
141972
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
141839
141973
  } | {
141840
141974
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
141841
141975
  message: string;
@@ -142512,6 +142646,13 @@ type Routes = {
142512
142646
  created_at?: string | undefined;
142513
142647
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
142514
142648
  warning_code: 'schlage_creation_outage';
142649
+ } | {
142650
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
142651
+ message: string;
142652
+ /** Date and time at which Seam created the warning. */
142653
+ created_at?: string | undefined;
142654
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
142655
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
142515
142656
  } | {
142516
142657
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
142517
142658
  message: string;
@@ -143131,6 +143272,13 @@ type Routes = {
143131
143272
  created_at?: string | undefined;
143132
143273
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143133
143274
  warning_code: 'schlage_creation_outage';
143275
+ } | {
143276
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143277
+ message: string;
143278
+ /** Date and time at which Seam created the warning. */
143279
+ created_at?: string | undefined;
143280
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143281
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
143134
143282
  } | {
143135
143283
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143136
143284
  message: string;
@@ -143727,6 +143875,13 @@ type Routes = {
143727
143875
  created_at?: string | undefined;
143728
143876
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143729
143877
  warning_code: 'schlage_creation_outage';
143878
+ } | {
143879
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143880
+ message: string;
143881
+ /** Date and time at which Seam created the warning. */
143882
+ created_at?: string | undefined;
143883
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143884
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
143730
143885
  } | {
143731
143886
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143732
143887
  message: string;
@@ -144358,6 +144513,13 @@ type Routes = {
144358
144513
  created_at?: string | undefined;
144359
144514
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144360
144515
  warning_code: 'schlage_creation_outage';
144516
+ } | {
144517
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
144518
+ message: string;
144519
+ /** Date and time at which Seam created the warning. */
144520
+ created_at?: string | undefined;
144521
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144522
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
144361
144523
  } | {
144362
144524
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
144363
144525
  message: string;
@@ -146241,6 +146403,13 @@ type Routes = {
146241
146403
  created_at?: string | undefined;
146242
146404
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
146243
146405
  warning_code: 'schlage_creation_outage';
146406
+ } | {
146407
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
146408
+ message: string;
146409
+ /** Date and time at which Seam created the warning. */
146410
+ created_at?: string | undefined;
146411
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
146412
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
146244
146413
  } | {
146245
146414
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
146246
146415
  message: string;
@@ -146754,6 +146923,13 @@ type Routes = {
146754
146923
  created_at?: string | undefined;
146755
146924
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
146756
146925
  warning_code: 'schlage_creation_outage';
146926
+ } | {
146927
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
146928
+ message: string;
146929
+ /** Date and time at which Seam created the warning. */
146930
+ created_at?: string | undefined;
146931
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
146932
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
146757
146933
  } | {
146758
146934
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
146759
146935
  message: string;
@@ -146923,7 +147099,7 @@ type Routes = {
146923
147099
  attempt_for_offline_device?: boolean;
146924
147100
  /** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
146925
147101
  prefer_native_scheduling?: boolean | undefined;
146926
- /** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
147102
+ /** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
146927
147103
  use_backup_access_code_pool?: boolean | undefined;
146928
147104
  /** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
146929
147105
  allow_external_modification?: boolean | undefined;
@@ -155482,7 +155658,7 @@ type Routes = {
155482
155658
  jsonResponse: {
155483
155659
  /** Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
155484
155660
 
155485
- Some access control systems use [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups), which are sets of users, combined with sets of permissions. These permissions include both the set of areas or assets that the users can access and the schedule during which the users can access these areas or assets. Instead of assigning access rights individually to each access control system user, which can be time-consuming and error-prone, administrators can assign users to an access group, thereby ensuring that the users inherit all the permissions associated with the access group. Using access groups streamlines the process of managing large numbers of access control system users, especially in bigger organizations or complexes.
155661
+ Some access control systems use [access group](https://docs.seam.co/latest/capability-guides/access-systems/user-management/assigning-users-to-access-groups), which are sets of users, combined with sets of permissions. These permissions include both the set of areas or assets that the users can access and the schedule during which the users can access these areas or assets. Instead of assigning access rights individually to each access control system user, which can be time-consuming and error-prone, administrators can assign users to an access group, thereby ensuring that the users inherit all the permissions associated with the access group. Using access groups streamlines the process of managing large numbers of access control system users, especially in bigger organizations or complexes.
155486
155662
 
155487
155663
  To learn whether your access control system supports access groups, see the corresponding [system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview#access-control-systems). */
155488
155664
  acs_access_group: {
@@ -174278,7 +174454,7 @@ type Routes = {
174278
174454
  /** ID of the affected Access Grant. */
174279
174455
  access_grant_id: string;
174280
174456
  event_type: 'access_grant.access_granted_to_door';
174281
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
174457
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
174282
174458
  acs_entrance_id: string;
174283
174459
  } | {
174284
174460
  /** ID of the event. */
@@ -174292,7 +174468,7 @@ type Routes = {
174292
174468
  /** ID of the affected Access Grant. */
174293
174469
  access_grant_id: string;
174294
174470
  event_type: 'access_grant.access_to_door_lost';
174295
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
174471
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
174296
174472
  acs_entrance_id: string;
174297
174473
  } | {
174298
174474
  /** ID of the event. */
@@ -175037,7 +175213,7 @@ type Routes = {
175037
175213
  created_at: string;
175038
175214
  /** Date and time at which the event occurred. */
175039
175215
  occurred_at: string;
175040
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
175216
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
175041
175217
  connect_webview_id: string;
175042
175218
  event_type: 'connect_webview.login_succeeded';
175043
175219
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
@@ -175057,7 +175233,7 @@ type Routes = {
175057
175233
  created_at: string;
175058
175234
  /** Date and time at which the event occurred. */
175059
175235
  occurred_at: string;
175060
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
175236
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
175061
175237
  connect_webview_id: string;
175062
175238
  event_type: 'connect_webview.login_failed';
175063
175239
  } | {
@@ -177106,7 +177282,7 @@ type Routes = {
177106
177282
  /** ID of the affected Access Grant. */
177107
177283
  access_grant_id: string;
177108
177284
  event_type: 'access_grant.access_granted_to_door';
177109
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
177285
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
177110
177286
  acs_entrance_id: string;
177111
177287
  } | {
177112
177288
  /** ID of the event. */
@@ -177120,7 +177296,7 @@ type Routes = {
177120
177296
  /** ID of the affected Access Grant. */
177121
177297
  access_grant_id: string;
177122
177298
  event_type: 'access_grant.access_to_door_lost';
177123
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
177299
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
177124
177300
  acs_entrance_id: string;
177125
177301
  } | {
177126
177302
  /** ID of the event. */
@@ -177865,7 +178041,7 @@ type Routes = {
177865
178041
  created_at: string;
177866
178042
  /** Date and time at which the event occurred. */
177867
178043
  occurred_at: string;
177868
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
178044
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
177869
178045
  connect_webview_id: string;
177870
178046
  event_type: 'connect_webview.login_succeeded';
177871
178047
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
@@ -177885,7 +178061,7 @@ type Routes = {
177885
178061
  created_at: string;
177886
178062
  /** Date and time at which the event occurred. */
177887
178063
  occurred_at: string;
177888
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
178064
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
177889
178065
  connect_webview_id: string;
177890
178066
  event_type: 'connect_webview.login_failed';
177891
178067
  } | {
@@ -202178,7 +202354,7 @@ type Routes = {
202178
202354
  /** ID of the affected Access Grant. */
202179
202355
  access_grant_id: string;
202180
202356
  event_type: 'access_grant.access_granted_to_door';
202181
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
202357
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
202182
202358
  acs_entrance_id: string;
202183
202359
  } | {
202184
202360
  /** ID of the event. */
@@ -202192,7 +202368,7 @@ type Routes = {
202192
202368
  /** ID of the affected Access Grant. */
202193
202369
  access_grant_id: string;
202194
202370
  event_type: 'access_grant.access_to_door_lost';
202195
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
202371
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
202196
202372
  acs_entrance_id: string;
202197
202373
  } | {
202198
202374
  /** ID of the event. */
@@ -202937,7 +203113,7 @@ type Routes = {
202937
203113
  created_at: string;
202938
203114
  /** Date and time at which the event occurred. */
202939
203115
  occurred_at: string;
202940
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
203116
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
202941
203117
  connect_webview_id: string;
202942
203118
  event_type: 'connect_webview.login_succeeded';
202943
203119
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
@@ -202957,7 +203133,7 @@ type Routes = {
202957
203133
  created_at: string;
202958
203134
  /** Date and time at which the event occurred. */
202959
203135
  occurred_at: string;
202960
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
203136
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
202961
203137
  connect_webview_id: string;
202962
203138
  event_type: 'connect_webview.login_failed';
202963
203139
  } | {
@@ -234443,7 +234619,7 @@ type Routes = {
234443
234619
  /** ID of the affected Access Grant. */
234444
234620
  access_grant_id: string;
234445
234621
  event_type: 'access_grant.access_granted_to_door';
234446
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
234622
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
234447
234623
  acs_entrance_id: string;
234448
234624
  } | {
234449
234625
  /** ID of the event. */
@@ -234457,7 +234633,7 @@ type Routes = {
234457
234633
  /** ID of the affected Access Grant. */
234458
234634
  access_grant_id: string;
234459
234635
  event_type: 'access_grant.access_to_door_lost';
234460
- /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details). */
234636
+ /** ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
234461
234637
  acs_entrance_id: string;
234462
234638
  } | {
234463
234639
  /** ID of the event. */
@@ -235202,7 +235378,7 @@ type Routes = {
235202
235378
  created_at: string;
235203
235379
  /** Date and time at which the event occurred. */
235204
235380
  occurred_at: string;
235205
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
235381
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
235206
235382
  connect_webview_id: string;
235207
235383
  event_type: 'connect_webview.login_succeeded';
235208
235384
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
@@ -235222,7 +235398,7 @@ type Routes = {
235222
235398
  created_at: string;
235223
235399
  /** Date and time at which the event occurred. */
235224
235400
  occurred_at: string;
235225
- /** ID of the affected [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
235401
+ /** ID of the affected [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews). */
235226
235402
  connect_webview_id: string;
235227
235403
  event_type: 'connect_webview.login_failed';
235228
235404
  } | {
@@ -237136,6 +237312,13 @@ type Routes = {
237136
237312
  created_at?: string | undefined;
237137
237313
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
237138
237314
  warning_code: 'schlage_creation_outage';
237315
+ } | {
237316
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
237317
+ message: string;
237318
+ /** Date and time at which Seam created the warning. */
237319
+ created_at?: string | undefined;
237320
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
237321
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
237139
237322
  } | {
237140
237323
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
237141
237324
  message: string;
@@ -237633,6 +237816,13 @@ type Routes = {
237633
237816
  created_at?: string | undefined;
237634
237817
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
237635
237818
  warning_code: 'schlage_creation_outage';
237819
+ } | {
237820
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
237821
+ message: string;
237822
+ /** Date and time at which Seam created the warning. */
237823
+ created_at?: string | undefined;
237824
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
237825
+ warning_code: 'schlage_access_code_ambiguous_timezone_dst_risk';
237636
237826
  } | {
237637
237827
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
237638
237828
  message: string;