@seamapi/types 1.620.0 → 1.622.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.
@@ -27990,6 +27990,38 @@ declare const batch: z.ZodObject<{
27990
27990
  occurred_at: string;
27991
27991
  event_type: "phone.deactivated";
27992
27992
  device_custom_metadata?: Record<string, string | boolean> | undefined;
27993
+ }>, z.ZodObject<{
27994
+ event_id: z.ZodString;
27995
+ workspace_id: z.ZodString;
27996
+ created_at: z.ZodString;
27997
+ occurred_at: z.ZodString;
27998
+ } & {
27999
+ space_id: z.ZodString;
28000
+ } & {
28001
+ event_type: z.ZodLiteral<"space.device_membership_changed">;
28002
+ space_key: z.ZodOptional<z.ZodString>;
28003
+ device_ids: z.ZodArray<z.ZodString, "many">;
28004
+ acs_entrance_ids: z.ZodArray<z.ZodString, "many">;
28005
+ }, "strip", z.ZodTypeAny, {
28006
+ workspace_id: string;
28007
+ created_at: string;
28008
+ event_id: string;
28009
+ occurred_at: string;
28010
+ event_type: "space.device_membership_changed";
28011
+ space_id: string;
28012
+ device_ids: string[];
28013
+ acs_entrance_ids: string[];
28014
+ space_key?: string | undefined;
28015
+ }, {
28016
+ workspace_id: string;
28017
+ created_at: string;
28018
+ event_id: string;
28019
+ occurred_at: string;
28020
+ event_type: "space.device_membership_changed";
28021
+ space_id: string;
28022
+ device_ids: string[];
28023
+ acs_entrance_ids: string[];
28024
+ space_key?: string | undefined;
27993
28025
  }>]>, "many">>;
27994
28026
  instant_keys: z.ZodOptional<z.ZodArray<z.ZodObject<{
27995
28027
  instant_key_id: z.ZodString;
@@ -34518,6 +34550,16 @@ declare const batch: z.ZodObject<{
34518
34550
  occurred_at: string;
34519
34551
  event_type: "phone.deactivated";
34520
34552
  device_custom_metadata?: Record<string, string | boolean> | undefined;
34553
+ } | {
34554
+ workspace_id: string;
34555
+ created_at: string;
34556
+ event_id: string;
34557
+ occurred_at: string;
34558
+ event_type: "space.device_membership_changed";
34559
+ space_id: string;
34560
+ device_ids: string[];
34561
+ acs_entrance_ids: string[];
34562
+ space_key?: string | undefined;
34521
34563
  })[] | undefined;
34522
34564
  access_codes?: {
34523
34565
  code: string | null;
@@ -38449,6 +38491,16 @@ declare const batch: z.ZodObject<{
38449
38491
  occurred_at: string;
38450
38492
  event_type: "phone.deactivated";
38451
38493
  device_custom_metadata?: Record<string, string | boolean> | undefined;
38494
+ } | {
38495
+ workspace_id: string;
38496
+ created_at: string;
38497
+ event_id: string;
38498
+ occurred_at: string;
38499
+ event_type: "space.device_membership_changed";
38500
+ space_id: string;
38501
+ device_ids: string[];
38502
+ acs_entrance_ids: string[];
38503
+ space_key?: string | undefined;
38452
38504
  })[] | undefined;
38453
38505
  access_codes?: {
38454
38506
  code: string | null;
@@ -51225,6 +51277,38 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
51225
51277
  occurred_at: string;
51226
51278
  event_type: "phone.deactivated";
51227
51279
  device_custom_metadata?: Record<string, string | boolean> | undefined;
51280
+ }>, z.ZodObject<{
51281
+ event_id: z.ZodString;
51282
+ workspace_id: z.ZodString;
51283
+ created_at: z.ZodString;
51284
+ occurred_at: z.ZodString;
51285
+ } & {
51286
+ space_id: z.ZodString;
51287
+ } & {
51288
+ event_type: z.ZodLiteral<"space.device_membership_changed">;
51289
+ space_key: z.ZodOptional<z.ZodString>;
51290
+ device_ids: z.ZodArray<z.ZodString, "many">;
51291
+ acs_entrance_ids: z.ZodArray<z.ZodString, "many">;
51292
+ }, "strip", z.ZodTypeAny, {
51293
+ workspace_id: string;
51294
+ created_at: string;
51295
+ event_id: string;
51296
+ occurred_at: string;
51297
+ event_type: "space.device_membership_changed";
51298
+ space_id: string;
51299
+ device_ids: string[];
51300
+ acs_entrance_ids: string[];
51301
+ space_key?: string | undefined;
51302
+ }, {
51303
+ workspace_id: string;
51304
+ created_at: string;
51305
+ event_id: string;
51306
+ occurred_at: string;
51307
+ event_type: "space.device_membership_changed";
51308
+ space_id: string;
51309
+ device_ids: string[];
51310
+ acs_entrance_ids: string[];
51311
+ space_key?: string | undefined;
51228
51312
  }>]>;
51229
51313
  type SeamEvent = z.infer<typeof seam_event>;
51230
51314
  type SeamEventType = SeamEvent['event_type'];
@@ -59035,6 +59119,7 @@ declare const _default: {
59035
59119
  event_type: {
59036
59120
  enum: string[];
59037
59121
  type: string;
59122
+ description?: never;
59038
59123
  };
59039
59124
  occurred_at: {
59040
59125
  description: string;
@@ -59097,6 +59182,10 @@ declare const _default: {
59097
59182
  desired_temperature_fahrenheit?: never;
59098
59183
  device_name?: never;
59099
59184
  enrollment_automation_id?: never;
59185
+ acs_entrance_ids?: never;
59186
+ device_ids?: never;
59187
+ space_id?: never;
59188
+ space_key?: never;
59100
59189
  };
59101
59190
  required: string[];
59102
59191
  type: string;
@@ -59157,6 +59246,7 @@ declare const _default: {
59157
59246
  event_type: {
59158
59247
  enum: string[];
59159
59248
  type: string;
59249
+ description?: never;
59160
59250
  };
59161
59251
  occurred_at: {
59162
59252
  description: string;
@@ -59218,6 +59308,10 @@ declare const _default: {
59218
59308
  desired_temperature_fahrenheit?: never;
59219
59309
  device_name?: never;
59220
59310
  enrollment_automation_id?: never;
59311
+ acs_entrance_ids?: never;
59312
+ device_ids?: never;
59313
+ space_id?: never;
59314
+ space_key?: never;
59221
59315
  };
59222
59316
  required: string[];
59223
59317
  type: string;
@@ -59278,6 +59372,7 @@ declare const _default: {
59278
59372
  event_type: {
59279
59373
  enum: string[];
59280
59374
  type: string;
59375
+ description?: never;
59281
59376
  };
59282
59377
  occurred_at: {
59283
59378
  description: string;
@@ -59339,6 +59434,10 @@ declare const _default: {
59339
59434
  desired_temperature_fahrenheit?: never;
59340
59435
  device_name?: never;
59341
59436
  enrollment_automation_id?: never;
59437
+ acs_entrance_ids?: never;
59438
+ device_ids?: never;
59439
+ space_id?: never;
59440
+ space_key?: never;
59342
59441
  };
59343
59442
  required: string[];
59344
59443
  type: string;
@@ -59397,6 +59496,7 @@ declare const _default: {
59397
59496
  event_type: {
59398
59497
  enum: string[];
59399
59498
  type: string;
59499
+ description?: never;
59400
59500
  };
59401
59501
  occurred_at: {
59402
59502
  description: string;
@@ -59458,6 +59558,10 @@ declare const _default: {
59458
59558
  desired_temperature_fahrenheit?: never;
59459
59559
  device_name?: never;
59460
59560
  enrollment_automation_id?: never;
59561
+ acs_entrance_ids?: never;
59562
+ device_ids?: never;
59563
+ space_id?: never;
59564
+ space_key?: never;
59461
59565
  };
59462
59566
  required: string[];
59463
59567
  type: string;
@@ -59485,6 +59589,7 @@ declare const _default: {
59485
59589
  event_type: {
59486
59590
  enum: string[];
59487
59591
  type: string;
59592
+ description?: never;
59488
59593
  };
59489
59594
  occurred_at: {
59490
59595
  description: string;
@@ -59551,6 +59656,10 @@ declare const _default: {
59551
59656
  desired_temperature_fahrenheit?: never;
59552
59657
  device_name?: never;
59553
59658
  enrollment_automation_id?: never;
59659
+ acs_entrance_ids?: never;
59660
+ device_ids?: never;
59661
+ space_id?: never;
59662
+ space_key?: never;
59554
59663
  };
59555
59664
  required: string[];
59556
59665
  type: string;
@@ -59583,6 +59692,7 @@ declare const _default: {
59583
59692
  event_type: {
59584
59693
  enum: string[];
59585
59694
  type: string;
59695
+ description?: never;
59586
59696
  };
59587
59697
  occurred_at: {
59588
59698
  description: string;
@@ -59648,6 +59758,10 @@ declare const _default: {
59648
59758
  desired_temperature_fahrenheit?: never;
59649
59759
  device_name?: never;
59650
59760
  enrollment_automation_id?: never;
59761
+ acs_entrance_ids?: never;
59762
+ device_ids?: never;
59763
+ space_id?: never;
59764
+ space_key?: never;
59651
59765
  };
59652
59766
  required: string[];
59653
59767
  type: string;
@@ -59683,6 +59797,7 @@ declare const _default: {
59683
59797
  event_type: {
59684
59798
  enum: string[];
59685
59799
  type: string;
59800
+ description?: never;
59686
59801
  };
59687
59802
  occurred_at: {
59688
59803
  description: string;
@@ -59750,6 +59865,10 @@ declare const _default: {
59750
59865
  desired_temperature_fahrenheit?: never;
59751
59866
  device_name?: never;
59752
59867
  enrollment_automation_id?: never;
59868
+ acs_entrance_ids?: never;
59869
+ device_ids?: never;
59870
+ space_id?: never;
59871
+ space_key?: never;
59753
59872
  };
59754
59873
  required: string[];
59755
59874
  type: string;
@@ -59797,6 +59916,7 @@ declare const _default: {
59797
59916
  event_type: {
59798
59917
  enum: string[];
59799
59918
  type: string;
59919
+ description?: never;
59800
59920
  };
59801
59921
  is_backup_code: {
59802
59922
  description: string;
@@ -59863,6 +59983,10 @@ declare const _default: {
59863
59983
  desired_temperature_fahrenheit?: never;
59864
59984
  device_name?: never;
59865
59985
  enrollment_automation_id?: never;
59986
+ acs_entrance_ids?: never;
59987
+ device_ids?: never;
59988
+ space_id?: never;
59989
+ space_key?: never;
59866
59990
  };
59867
59991
  required: string[];
59868
59992
  type: string;
@@ -59905,6 +60029,7 @@ declare const _default: {
59905
60029
  event_type: {
59906
60030
  enum: string[];
59907
60031
  type: string;
60032
+ description?: never;
59908
60033
  };
59909
60034
  occurred_at: {
59910
60035
  description: string;
@@ -59969,6 +60094,10 @@ declare const _default: {
59969
60094
  desired_temperature_fahrenheit?: never;
59970
60095
  device_name?: never;
59971
60096
  enrollment_automation_id?: never;
60097
+ acs_entrance_ids?: never;
60098
+ device_ids?: never;
60099
+ space_id?: never;
60100
+ space_key?: never;
59972
60101
  };
59973
60102
  required: string[];
59974
60103
  type: string;
@@ -60001,6 +60130,7 @@ declare const _default: {
60001
60130
  event_type: {
60002
60131
  enum: string[];
60003
60132
  type: string;
60133
+ description?: never;
60004
60134
  };
60005
60135
  occurred_at: {
60006
60136
  description: string;
@@ -60066,6 +60196,10 @@ declare const _default: {
60066
60196
  desired_temperature_fahrenheit?: never;
60067
60197
  device_name?: never;
60068
60198
  enrollment_automation_id?: never;
60199
+ acs_entrance_ids?: never;
60200
+ device_ids?: never;
60201
+ space_id?: never;
60202
+ space_key?: never;
60069
60203
  };
60070
60204
  required: string[];
60071
60205
  type: string;
@@ -60103,6 +60237,7 @@ declare const _default: {
60103
60237
  event_type: {
60104
60238
  enum: string[];
60105
60239
  type: string;
60240
+ description?: never;
60106
60241
  };
60107
60242
  occurred_at: {
60108
60243
  description: string;
@@ -60167,6 +60302,10 @@ declare const _default: {
60167
60302
  desired_temperature_fahrenheit?: never;
60168
60303
  device_name?: never;
60169
60304
  enrollment_automation_id?: never;
60305
+ acs_entrance_ids?: never;
60306
+ device_ids?: never;
60307
+ space_id?: never;
60308
+ space_key?: never;
60170
60309
  };
60171
60310
  required: string[];
60172
60311
  type: string;
@@ -60203,6 +60342,7 @@ declare const _default: {
60203
60342
  event_type: {
60204
60343
  enum: string[];
60205
60344
  type: string;
60345
+ description?: never;
60206
60346
  };
60207
60347
  occurred_at: {
60208
60348
  description: string;
@@ -60267,6 +60407,10 @@ declare const _default: {
60267
60407
  desired_temperature_fahrenheit?: never;
60268
60408
  device_name?: never;
60269
60409
  enrollment_automation_id?: never;
60410
+ acs_entrance_ids?: never;
60411
+ device_ids?: never;
60412
+ space_id?: never;
60413
+ space_key?: never;
60270
60414
  };
60271
60415
  required: string[];
60272
60416
  type: string;
@@ -60304,6 +60448,7 @@ declare const _default: {
60304
60448
  event_type: {
60305
60449
  enum: string[];
60306
60450
  type: string;
60451
+ description?: never;
60307
60452
  };
60308
60453
  occurred_at: {
60309
60454
  description: string;
@@ -60368,6 +60513,10 @@ declare const _default: {
60368
60513
  desired_temperature_fahrenheit?: never;
60369
60514
  device_name?: never;
60370
60515
  enrollment_automation_id?: never;
60516
+ acs_entrance_ids?: never;
60517
+ device_ids?: never;
60518
+ space_id?: never;
60519
+ space_key?: never;
60371
60520
  };
60372
60521
  required: string[];
60373
60522
  type: string;
@@ -60405,6 +60554,7 @@ declare const _default: {
60405
60554
  event_type: {
60406
60555
  enum: string[];
60407
60556
  type: string;
60557
+ description?: never;
60408
60558
  };
60409
60559
  occurred_at: {
60410
60560
  description: string;
@@ -60469,6 +60619,10 @@ declare const _default: {
60469
60619
  desired_temperature_fahrenheit?: never;
60470
60620
  device_name?: never;
60471
60621
  enrollment_automation_id?: never;
60622
+ acs_entrance_ids?: never;
60623
+ device_ids?: never;
60624
+ space_id?: never;
60625
+ space_key?: never;
60472
60626
  };
60473
60627
  required: string[];
60474
60628
  type: string;
@@ -60506,6 +60660,7 @@ declare const _default: {
60506
60660
  event_type: {
60507
60661
  enum: string[];
60508
60662
  type: string;
60663
+ description?: never;
60509
60664
  };
60510
60665
  occurred_at: {
60511
60666
  description: string;
@@ -60570,6 +60725,10 @@ declare const _default: {
60570
60725
  desired_temperature_fahrenheit?: never;
60571
60726
  device_name?: never;
60572
60727
  enrollment_automation_id?: never;
60728
+ acs_entrance_ids?: never;
60729
+ device_ids?: never;
60730
+ space_id?: never;
60731
+ space_key?: never;
60573
60732
  };
60574
60733
  required: string[];
60575
60734
  type: string;
@@ -60597,6 +60756,7 @@ declare const _default: {
60597
60756
  event_type: {
60598
60757
  enum: string[];
60599
60758
  type: string;
60759
+ description?: never;
60600
60760
  };
60601
60761
  occurred_at: {
60602
60762
  description: string;
@@ -60663,6 +60823,10 @@ declare const _default: {
60663
60823
  desired_temperature_fahrenheit?: never;
60664
60824
  device_name?: never;
60665
60825
  enrollment_automation_id?: never;
60826
+ acs_entrance_ids?: never;
60827
+ device_ids?: never;
60828
+ space_id?: never;
60829
+ space_key?: never;
60666
60830
  };
60667
60831
  required: string[];
60668
60832
  type: string;
@@ -60708,6 +60872,7 @@ declare const _default: {
60708
60872
  event_type: {
60709
60873
  enum: string[];
60710
60874
  type: string;
60875
+ description?: never;
60711
60876
  };
60712
60877
  occurred_at: {
60713
60878
  description: string;
@@ -60771,6 +60936,10 @@ declare const _default: {
60771
60936
  desired_temperature_fahrenheit?: never;
60772
60937
  device_name?: never;
60773
60938
  enrollment_automation_id?: never;
60939
+ acs_entrance_ids?: never;
60940
+ device_ids?: never;
60941
+ space_id?: never;
60942
+ space_key?: never;
60774
60943
  };
60775
60944
  required: string[];
60776
60945
  type: string;
@@ -60812,6 +60981,7 @@ declare const _default: {
60812
60981
  event_type: {
60813
60982
  enum: string[];
60814
60983
  type: string;
60984
+ description?: never;
60815
60985
  };
60816
60986
  occurred_at: {
60817
60987
  description: string;
@@ -60876,6 +61046,10 @@ declare const _default: {
60876
61046
  desired_temperature_fahrenheit?: never;
60877
61047
  device_name?: never;
60878
61048
  enrollment_automation_id?: never;
61049
+ acs_entrance_ids?: never;
61050
+ device_ids?: never;
61051
+ space_id?: never;
61052
+ space_key?: never;
60879
61053
  };
60880
61054
  required: string[];
60881
61055
  type: string;
@@ -60918,6 +61092,7 @@ declare const _default: {
60918
61092
  event_type: {
60919
61093
  enum: string[];
60920
61094
  type: string;
61095
+ description?: never;
60921
61096
  };
60922
61097
  occurred_at: {
60923
61098
  description: string;
@@ -60982,6 +61157,10 @@ declare const _default: {
60982
61157
  desired_temperature_fahrenheit?: never;
60983
61158
  device_name?: never;
60984
61159
  enrollment_automation_id?: never;
61160
+ acs_entrance_ids?: never;
61161
+ device_ids?: never;
61162
+ space_id?: never;
61163
+ space_key?: never;
60985
61164
  };
60986
61165
  required: string[];
60987
61166
  type: string;
@@ -61017,6 +61196,7 @@ declare const _default: {
61017
61196
  event_type: {
61018
61197
  enum: string[];
61019
61198
  type: string;
61199
+ description?: never;
61020
61200
  };
61021
61201
  occurred_at: {
61022
61202
  description: string;
@@ -61082,6 +61262,10 @@ declare const _default: {
61082
61262
  desired_temperature_fahrenheit?: never;
61083
61263
  device_name?: never;
61084
61264
  enrollment_automation_id?: never;
61265
+ acs_entrance_ids?: never;
61266
+ device_ids?: never;
61267
+ space_id?: never;
61268
+ space_key?: never;
61085
61269
  };
61086
61270
  required: string[];
61087
61271
  type: string;
@@ -61113,6 +61297,7 @@ declare const _default: {
61113
61297
  event_type: {
61114
61298
  enum: string[];
61115
61299
  type: string;
61300
+ description?: never;
61116
61301
  };
61117
61302
  occurred_at: {
61118
61303
  description: string;
@@ -61181,6 +61366,10 @@ declare const _default: {
61181
61366
  desired_temperature_fahrenheit?: never;
61182
61367
  device_name?: never;
61183
61368
  enrollment_automation_id?: never;
61369
+ acs_entrance_ids?: never;
61370
+ device_ids?: never;
61371
+ space_id?: never;
61372
+ space_key?: never;
61184
61373
  };
61185
61374
  required: string[];
61186
61375
  type: string;
@@ -61208,6 +61397,7 @@ declare const _default: {
61208
61397
  event_type: {
61209
61398
  enum: string[];
61210
61399
  type: string;
61400
+ description?: never;
61211
61401
  };
61212
61402
  occurred_at: {
61213
61403
  description: string;
@@ -61274,6 +61464,10 @@ declare const _default: {
61274
61464
  desired_temperature_fahrenheit?: never;
61275
61465
  device_name?: never;
61276
61466
  enrollment_automation_id?: never;
61467
+ acs_entrance_ids?: never;
61468
+ device_ids?: never;
61469
+ space_id?: never;
61470
+ space_key?: never;
61277
61471
  };
61278
61472
  required: string[];
61279
61473
  type: string;
@@ -61324,6 +61518,7 @@ declare const _default: {
61324
61518
  event_type: {
61325
61519
  enum: string[];
61326
61520
  type: string;
61521
+ description?: never;
61327
61522
  };
61328
61523
  occurred_at: {
61329
61524
  description: string;
@@ -61387,6 +61582,10 @@ declare const _default: {
61387
61582
  desired_temperature_fahrenheit?: never;
61388
61583
  device_name?: never;
61389
61584
  enrollment_automation_id?: never;
61585
+ acs_entrance_ids?: never;
61586
+ device_ids?: never;
61587
+ space_id?: never;
61588
+ space_key?: never;
61390
61589
  };
61391
61590
  required: string[];
61392
61591
  type: string;
@@ -61442,6 +61641,7 @@ declare const _default: {
61442
61641
  event_type: {
61443
61642
  enum: string[];
61444
61643
  type: string;
61644
+ description?: never;
61445
61645
  };
61446
61646
  occurred_at: {
61447
61647
  description: string;
@@ -61504,6 +61704,10 @@ declare const _default: {
61504
61704
  desired_temperature_fahrenheit?: never;
61505
61705
  device_name?: never;
61506
61706
  enrollment_automation_id?: never;
61707
+ acs_entrance_ids?: never;
61708
+ device_ids?: never;
61709
+ space_id?: never;
61710
+ space_key?: never;
61507
61711
  };
61508
61712
  required: string[];
61509
61713
  type: string;
@@ -61561,6 +61765,7 @@ declare const _default: {
61561
61765
  event_type: {
61562
61766
  enum: string[];
61563
61767
  type: string;
61768
+ description?: never;
61564
61769
  };
61565
61770
  occurred_at: {
61566
61771
  description: string;
@@ -61623,6 +61828,10 @@ declare const _default: {
61623
61828
  desired_temperature_fahrenheit?: never;
61624
61829
  device_name?: never;
61625
61830
  enrollment_automation_id?: never;
61831
+ acs_entrance_ids?: never;
61832
+ device_ids?: never;
61833
+ space_id?: never;
61834
+ space_key?: never;
61626
61835
  };
61627
61836
  required: string[];
61628
61837
  type: string;
@@ -61685,6 +61894,7 @@ declare const _default: {
61685
61894
  event_type: {
61686
61895
  enum: string[];
61687
61896
  type: string;
61897
+ description?: never;
61688
61898
  };
61689
61899
  occurred_at: {
61690
61900
  description: string;
@@ -61746,6 +61956,10 @@ declare const _default: {
61746
61956
  desired_temperature_fahrenheit?: never;
61747
61957
  device_name?: never;
61748
61958
  enrollment_automation_id?: never;
61959
+ acs_entrance_ids?: never;
61960
+ device_ids?: never;
61961
+ space_id?: never;
61962
+ space_key?: never;
61749
61963
  };
61750
61964
  required: string[];
61751
61965
  type: string;
@@ -61796,6 +62010,7 @@ declare const _default: {
61796
62010
  event_type: {
61797
62011
  enum: string[];
61798
62012
  type: string;
62013
+ description?: never;
61799
62014
  };
61800
62015
  minut_metadata: {
61801
62016
  additionalProperties: {};
@@ -61882,6 +62097,10 @@ declare const _default: {
61882
62097
  desired_temperature_fahrenheit?: never;
61883
62098
  device_name?: never;
61884
62099
  enrollment_automation_id?: never;
62100
+ acs_entrance_ids?: never;
62101
+ device_ids?: never;
62102
+ space_id?: never;
62103
+ space_key?: never;
61885
62104
  };
61886
62105
  required: string[];
61887
62106
  type: string;
@@ -61942,6 +62161,7 @@ declare const _default: {
61942
62161
  event_type: {
61943
62162
  enum: string[];
61944
62163
  type: string;
62164
+ description?: never;
61945
62165
  };
61946
62166
  method: {
61947
62167
  description: string;
@@ -62007,6 +62227,10 @@ declare const _default: {
62007
62227
  desired_temperature_fahrenheit?: never;
62008
62228
  device_name?: never;
62009
62229
  enrollment_automation_id?: never;
62230
+ acs_entrance_ids?: never;
62231
+ device_ids?: never;
62232
+ space_id?: never;
62233
+ space_key?: never;
62010
62234
  };
62011
62235
  required: string[];
62012
62236
  type: string;
@@ -62061,6 +62285,7 @@ declare const _default: {
62061
62285
  event_type: {
62062
62286
  enum: string[];
62063
62287
  type: string;
62288
+ description?: never;
62064
62289
  };
62065
62290
  is_fallback_climate_preset: {
62066
62291
  description: string;
@@ -62131,6 +62356,10 @@ declare const _default: {
62131
62356
  desired_temperature_fahrenheit?: never;
62132
62357
  device_name?: never;
62133
62358
  enrollment_automation_id?: never;
62359
+ acs_entrance_ids?: never;
62360
+ device_ids?: never;
62361
+ space_id?: never;
62362
+ space_key?: never;
62134
62363
  };
62135
62364
  required: string[];
62136
62365
  type: string;
@@ -62191,6 +62420,7 @@ declare const _default: {
62191
62420
  event_type: {
62192
62421
  enum: string[];
62193
62422
  type: string;
62423
+ description?: never;
62194
62424
  };
62195
62425
  fan_mode_setting: {
62196
62426
  description: string;
@@ -62272,6 +62502,10 @@ declare const _default: {
62272
62502
  desired_temperature_fahrenheit?: never;
62273
62503
  device_name?: never;
62274
62504
  enrollment_automation_id?: never;
62505
+ acs_entrance_ids?: never;
62506
+ device_ids?: never;
62507
+ space_id?: never;
62508
+ space_key?: never;
62275
62509
  };
62276
62510
  required: string[];
62277
62511
  type: string;
@@ -62322,6 +62556,7 @@ declare const _default: {
62322
62556
  event_type: {
62323
62557
  enum: string[];
62324
62558
  type: string;
62559
+ description?: never;
62325
62560
  };
62326
62561
  lower_limit_celsius: {
62327
62562
  description: string;
@@ -62413,6 +62648,10 @@ declare const _default: {
62413
62648
  desired_temperature_fahrenheit?: never;
62414
62649
  device_name?: never;
62415
62650
  enrollment_automation_id?: never;
62651
+ acs_entrance_ids?: never;
62652
+ device_ids?: never;
62653
+ space_id?: never;
62654
+ space_key?: never;
62416
62655
  };
62417
62656
  required: string[];
62418
62657
  type: string;
@@ -62473,6 +62712,7 @@ declare const _default: {
62473
62712
  event_type: {
62474
62713
  enum: string[];
62475
62714
  type: string;
62715
+ description?: never;
62476
62716
  };
62477
62717
  occurred_at: {
62478
62718
  description: string;
@@ -62542,6 +62782,10 @@ declare const _default: {
62542
62782
  upper_limit_fahrenheit?: never;
62543
62783
  device_name?: never;
62544
62784
  enrollment_automation_id?: never;
62785
+ acs_entrance_ids?: never;
62786
+ device_ids?: never;
62787
+ space_id?: never;
62788
+ space_key?: never;
62545
62789
  };
62546
62790
  required: string[];
62547
62791
  type: string;
@@ -62592,6 +62836,7 @@ declare const _default: {
62592
62836
  event_type: {
62593
62837
  enum: string[];
62594
62838
  type: string;
62839
+ description?: never;
62595
62840
  };
62596
62841
  occurred_at: {
62597
62842
  description: string;
@@ -62663,6 +62908,10 @@ declare const _default: {
62663
62908
  desired_temperature_fahrenheit?: never;
62664
62909
  device_name?: never;
62665
62910
  enrollment_automation_id?: never;
62911
+ acs_entrance_ids?: never;
62912
+ device_ids?: never;
62913
+ space_id?: never;
62914
+ space_key?: never;
62666
62915
  };
62667
62916
  required: string[];
62668
62917
  type: string;
@@ -62717,6 +62966,7 @@ declare const _default: {
62717
62966
  event_type: {
62718
62967
  enum: string[];
62719
62968
  type: string;
62969
+ description?: never;
62720
62970
  };
62721
62971
  occurred_at: {
62722
62972
  description: string;
@@ -62779,6 +63029,10 @@ declare const _default: {
62779
63029
  desired_temperature_celsius?: never;
62780
63030
  desired_temperature_fahrenheit?: never;
62781
63031
  enrollment_automation_id?: never;
63032
+ acs_entrance_ids?: never;
63033
+ device_ids?: never;
63034
+ space_id?: never;
63035
+ space_key?: never;
62782
63036
  };
62783
63037
  required: string[];
62784
63038
  type: string;
@@ -62806,6 +63060,7 @@ declare const _default: {
62806
63060
  event_type: {
62807
63061
  enum: string[];
62808
63062
  type: string;
63063
+ description?: never;
62809
63064
  };
62810
63065
  occurred_at: {
62811
63066
  description: string;
@@ -62872,6 +63127,10 @@ declare const _default: {
62872
63127
  desired_temperature_celsius?: never;
62873
63128
  desired_temperature_fahrenheit?: never;
62874
63129
  device_name?: never;
63130
+ acs_entrance_ids?: never;
63131
+ device_ids?: never;
63132
+ space_id?: never;
63133
+ space_key?: never;
62875
63134
  };
62876
63135
  required: string[];
62877
63136
  type: string;
@@ -62908,6 +63167,7 @@ declare const _default: {
62908
63167
  event_type: {
62909
63168
  enum: string[];
62910
63169
  type: string;
63170
+ description?: never;
62911
63171
  };
62912
63172
  occurred_at: {
62913
63173
  description: string;
@@ -62973,6 +63233,125 @@ declare const _default: {
62973
63233
  desired_temperature_fahrenheit?: never;
62974
63234
  device_name?: never;
62975
63235
  enrollment_automation_id?: never;
63236
+ acs_entrance_ids?: never;
63237
+ device_ids?: never;
63238
+ space_id?: never;
63239
+ space_key?: never;
63240
+ };
63241
+ required: string[];
63242
+ type: string;
63243
+ 'x-route-path': string;
63244
+ deprecated?: never;
63245
+ 'x-deprecated'?: never;
63246
+ } | {
63247
+ description: string;
63248
+ properties: {
63249
+ acs_entrance_ids: {
63250
+ description: string;
63251
+ items: {
63252
+ format: string;
63253
+ type: string;
63254
+ };
63255
+ type: string;
63256
+ };
63257
+ created_at: {
63258
+ description: string;
63259
+ format: string;
63260
+ type: string;
63261
+ };
63262
+ device_ids: {
63263
+ description: string;
63264
+ items: {
63265
+ format: string;
63266
+ type: string;
63267
+ };
63268
+ type: string;
63269
+ };
63270
+ event_id: {
63271
+ description: string;
63272
+ format: string;
63273
+ type: string;
63274
+ };
63275
+ event_type: {
63276
+ description: string;
63277
+ enum: string[];
63278
+ type: string;
63279
+ };
63280
+ occurred_at: {
63281
+ description: string;
63282
+ format: string;
63283
+ type: string;
63284
+ };
63285
+ space_id: {
63286
+ description: string;
63287
+ format: string;
63288
+ type: string;
63289
+ };
63290
+ space_key: {
63291
+ description: string;
63292
+ type: string;
63293
+ };
63294
+ workspace_id: {
63295
+ description: string;
63296
+ format: string;
63297
+ type: string;
63298
+ };
63299
+ access_code_id?: never;
63300
+ connected_account_custom_metadata?: never;
63301
+ connected_account_id?: never;
63302
+ device_custom_metadata?: never;
63303
+ device_id?: never;
63304
+ code?: never;
63305
+ backup_access_code_id?: never;
63306
+ access_grant_id?: never;
63307
+ acs_entrance_id?: never;
63308
+ access_grant_key?: never;
63309
+ ends_at?: never;
63310
+ starts_at?: never;
63311
+ access_grant_ids?: never;
63312
+ access_grant_keys?: never;
63313
+ access_method_id?: never;
63314
+ is_backup_code?: never;
63315
+ acs_system_id?: never;
63316
+ acs_credential_id?: never;
63317
+ acs_user_id?: never;
63318
+ acs_encoder_id?: never;
63319
+ acs_access_group_id?: never;
63320
+ client_session_id?: never;
63321
+ connect_webview_id?: never;
63322
+ customer_key?: never;
63323
+ action_attempt_id?: never;
63324
+ action_type?: never;
63325
+ status?: never;
63326
+ error_code?: never;
63327
+ battery_level?: never;
63328
+ battery_status?: never;
63329
+ minut_metadata?: never;
63330
+ noise_level_decibels?: never;
63331
+ noise_level_nrs?: never;
63332
+ noise_threshold_id?: never;
63333
+ noise_threshold_name?: never;
63334
+ noiseaware_metadata?: never;
63335
+ method?: never;
63336
+ climate_preset_key?: never;
63337
+ is_fallback_climate_preset?: never;
63338
+ thermostat_schedule_id?: never;
63339
+ cooling_set_point_celsius?: never;
63340
+ cooling_set_point_fahrenheit?: never;
63341
+ fan_mode_setting?: never;
63342
+ heating_set_point_celsius?: never;
63343
+ heating_set_point_fahrenheit?: never;
63344
+ hvac_mode_setting?: never;
63345
+ lower_limit_celsius?: never;
63346
+ lower_limit_fahrenheit?: never;
63347
+ temperature_celsius?: never;
63348
+ temperature_fahrenheit?: never;
63349
+ upper_limit_celsius?: never;
63350
+ upper_limit_fahrenheit?: never;
63351
+ desired_temperature_celsius?: never;
63352
+ desired_temperature_fahrenheit?: never;
63353
+ device_name?: never;
63354
+ enrollment_automation_id?: never;
62976
63355
  };
62977
63356
  required: string[];
62978
63357
  type: string;
@@ -85059,6 +85438,13 @@ declare const _default: {
85059
85438
  };
85060
85439
  type: string;
85061
85440
  };
85441
+ staff_member_keys: {
85442
+ description: string;
85443
+ items: {
85444
+ type: string;
85445
+ };
85446
+ type: string;
85447
+ };
85062
85448
  tenant_keys: {
85063
85449
  description: string;
85064
85450
  items: {
@@ -94014,6 +94400,32 @@ declare const _default: {
94014
94400
  required: string[];
94015
94401
  type: string;
94016
94402
  };
94403
+ staff_member_created: {
94404
+ properties: {
94405
+ config: {
94406
+ $ref: string;
94407
+ };
94408
+ rule: {
94409
+ enum: string[];
94410
+ type: string;
94411
+ };
94412
+ };
94413
+ required: string[];
94414
+ type: string;
94415
+ };
94416
+ staff_member_name_updated: {
94417
+ properties: {
94418
+ config: {
94419
+ $ref: string;
94420
+ };
94421
+ rule: {
94422
+ enum: string[];
94423
+ type: string;
94424
+ };
94425
+ };
94426
+ required: string[];
94427
+ type: string;
94428
+ };
94017
94429
  user_identity_name_updated: {
94018
94430
  properties: {
94019
94431
  config: {
@@ -94217,6 +94629,32 @@ declare const _default: {
94217
94629
  required: string[];
94218
94630
  type: string;
94219
94631
  };
94632
+ staff_member_created: {
94633
+ properties: {
94634
+ config: {
94635
+ $ref: string;
94636
+ };
94637
+ rule: {
94638
+ enum: string[];
94639
+ type: string;
94640
+ };
94641
+ };
94642
+ required: string[];
94643
+ type: string;
94644
+ };
94645
+ staff_member_name_updated: {
94646
+ properties: {
94647
+ config: {
94648
+ $ref: string;
94649
+ };
94650
+ rule: {
94651
+ enum: string[];
94652
+ type: string;
94653
+ };
94654
+ };
94655
+ required: string[];
94656
+ type: string;
94657
+ };
94220
94658
  user_identity_name_updated: {
94221
94659
  properties: {
94222
94660
  config: {
@@ -94425,6 +94863,34 @@ declare const _default: {
94425
94863
  required: string[];
94426
94864
  type: string;
94427
94865
  };
94866
+ staff_member_created: {
94867
+ properties: {
94868
+ config: {
94869
+ properties: {};
94870
+ type: string;
94871
+ };
94872
+ rule: {
94873
+ enum: string[];
94874
+ type: string;
94875
+ };
94876
+ };
94877
+ required: string[];
94878
+ type: string;
94879
+ };
94880
+ staff_member_name_updated: {
94881
+ properties: {
94882
+ config: {
94883
+ properties: {};
94884
+ type: string;
94885
+ };
94886
+ rule: {
94887
+ enum: string[];
94888
+ type: string;
94889
+ };
94890
+ };
94891
+ required: string[];
94892
+ type: string;
94893
+ };
94428
94894
  user_identity_name_updated: {
94429
94895
  properties: {
94430
94896
  config: {
@@ -94644,6 +95110,34 @@ declare const _default: {
94644
95110
  required: string[];
94645
95111
  type: string;
94646
95112
  };
95113
+ staff_member_created: {
95114
+ properties: {
95115
+ config: {
95116
+ properties: {};
95117
+ type: string;
95118
+ };
95119
+ rule: {
95120
+ enum: string[];
95121
+ type: string;
95122
+ };
95123
+ };
95124
+ required: string[];
95125
+ type: string;
95126
+ };
95127
+ staff_member_name_updated: {
95128
+ properties: {
95129
+ config: {
95130
+ properties: {};
95131
+ type: string;
95132
+ };
95133
+ rule: {
95134
+ enum: string[];
95135
+ type: string;
95136
+ };
95137
+ };
95138
+ required: string[];
95139
+ type: string;
95140
+ };
94647
95141
  user_identity_name_updated: {
94648
95142
  properties: {
94649
95143
  config: {
@@ -129406,6 +129900,25 @@ type Routes = {
129406
129900
  [x: string]: string | boolean;
129407
129901
  } | undefined;
129408
129902
  event_type: 'phone.deactivated';
129903
+ } | {
129904
+ /** ID of the event. */
129905
+ event_id: string;
129906
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
129907
+ workspace_id: string;
129908
+ /** Date and time at which the event was created. */
129909
+ created_at: string;
129910
+ /** Date and time at which the event occurred. */
129911
+ occurred_at: string;
129912
+ /** ID of the affected space. */
129913
+ space_id: string;
129914
+ /** Type of the event. */
129915
+ event_type: 'space.device_membership_changed';
129916
+ /** Unique key for the space within the workspace. */
129917
+ space_key?: string | undefined;
129918
+ /** IDs of all devices currently attached to the space. */
129919
+ device_ids: string[];
129920
+ /** IDs of all ACS entrances currently attached to the space. */
129921
+ acs_entrance_ids: string[];
129409
129922
  })[] | undefined;
129410
129923
  instant_keys?: {
129411
129924
  /** ID of the Instant Key. */
@@ -142026,6 +142539,8 @@ type Routes = {
142026
142539
  booking_keys?: string[] | undefined;
142027
142540
  /** List of access grant keys to delete. */
142028
142541
  access_grant_keys?: string[] | undefined;
142542
+ /** List of staff member keys to delete. */
142543
+ staff_member_keys?: string[] | undefined;
142029
142544
  };
142030
142545
  formData: {};
142031
142546
  jsonResponse: {};
@@ -147740,6 +148255,25 @@ type Routes = {
147740
148255
  [x: string]: string | boolean;
147741
148256
  } | undefined;
147742
148257
  event_type: 'phone.deactivated';
148258
+ } | {
148259
+ /** ID of the event. */
148260
+ event_id: string;
148261
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
148262
+ workspace_id: string;
148263
+ /** Date and time at which the event was created. */
148264
+ created_at: string;
148265
+ /** Date and time at which the event occurred. */
148266
+ occurred_at: string;
148267
+ /** ID of the affected space. */
148268
+ space_id: string;
148269
+ /** Type of the event. */
148270
+ event_type: 'space.device_membership_changed';
148271
+ /** Unique key for the space within the workspace. */
148272
+ space_key?: string | undefined;
148273
+ /** IDs of all devices currently attached to the space. */
148274
+ device_ids: string[];
148275
+ /** IDs of all ACS entrances currently attached to the space. */
148276
+ acs_entrance_ids: string[];
147743
148277
  }) | undefined;
147744
148278
  message?: string | undefined;
147745
148279
  };
@@ -147771,9 +148305,9 @@ type Routes = {
147771
148305
  /** IDs of the access codes for which you want to list events. */
147772
148306
  access_code_ids?: string[] | undefined;
147773
148307
  /** Type of the events that you want to list. */
147774
- event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
148308
+ event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed') | undefined;
147775
148309
  /** Types of the events that you want to list. */
147776
- event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated')[] | undefined;
148310
+ event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed')[] | undefined;
147777
148311
  /** ID of the connected account for which you want to list events. */
147778
148312
  connected_account_id?: string | undefined;
147779
148313
  /** ID of the Connect Webview for which you want to list events. */
@@ -149680,6 +150214,25 @@ type Routes = {
149680
150214
  [x: string]: string | boolean;
149681
150215
  } | undefined;
149682
150216
  event_type: 'phone.deactivated';
150217
+ } | {
150218
+ /** ID of the event. */
150219
+ event_id: string;
150220
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
150221
+ workspace_id: string;
150222
+ /** Date and time at which the event was created. */
150223
+ created_at: string;
150224
+ /** Date and time at which the event occurred. */
150225
+ occurred_at: string;
150226
+ /** ID of the affected space. */
150227
+ space_id: string;
150228
+ /** Type of the event. */
150229
+ event_type: 'space.device_membership_changed';
150230
+ /** Unique key for the space within the workspace. */
150231
+ space_key?: string | undefined;
150232
+ /** IDs of all devices currently attached to the space. */
150233
+ device_ids: string[];
150234
+ /** IDs of all ACS entrances currently attached to the space. */
150235
+ acs_entrance_ids: string[];
149683
150236
  })[];
149684
150237
  };
149685
150238
  };
@@ -166932,6 +167485,14 @@ type Routes = {
166932
167485
  rule: 'user_identity_name_updated';
166933
167486
  config?: {} | undefined;
166934
167487
  } | undefined;
167488
+ staff_member_name_updated?: {
167489
+ rule: 'staff_member_name_updated';
167490
+ config?: {} | undefined;
167491
+ } | undefined;
167492
+ staff_member_created?: {
167493
+ rule: 'staff_member_created';
167494
+ config: {};
167495
+ } | undefined;
166935
167496
  } | undefined;
166936
167497
  climate_rules?: {
166937
167498
  rules: {
@@ -166987,6 +167548,14 @@ type Routes = {
166987
167548
  rule: 'user_identity_name_updated';
166988
167549
  config?: {} | undefined;
166989
167550
  } | undefined;
167551
+ staff_member_name_updated?: {
167552
+ rule: 'staff_member_name_updated';
167553
+ config?: {} | undefined;
167554
+ } | undefined;
167555
+ staff_member_created?: {
167556
+ rule: 'staff_member_created';
167557
+ config: {};
167558
+ } | undefined;
166990
167559
  } | undefined;
166991
167560
  /** Climate automation rules configuration. */
166992
167561
  climate_rules?: {
@@ -167081,9 +167650,9 @@ type Routes = {
167081
167650
  /** Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`. */
167082
167651
  between?: (string | Date)[] | undefined;
167083
167652
  /** Type of the events that you want to list. */
167084
- event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
167653
+ event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed') | undefined;
167085
167654
  /** Types of the events that you want to list. */
167086
- event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated')[] | undefined;
167655
+ event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed')[] | undefined;
167087
167656
  /** Numerical limit on the number of events to return. */
167088
167657
  limit?: number;
167089
167658
  };
@@ -168984,6 +169553,25 @@ type Routes = {
168984
169553
  [x: string]: string | boolean;
168985
169554
  } | undefined;
168986
169555
  event_type: 'phone.deactivated';
169556
+ } | {
169557
+ /** ID of the event. */
169558
+ event_id: string;
169559
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
169560
+ workspace_id: string;
169561
+ /** Date and time at which the event was created. */
169562
+ created_at: string;
169563
+ /** Date and time at which the event occurred. */
169564
+ occurred_at: string;
169565
+ /** ID of the affected space. */
169566
+ space_id: string;
169567
+ /** Type of the event. */
169568
+ event_type: 'space.device_membership_changed';
169569
+ /** Unique key for the space within the workspace. */
169570
+ space_key?: string | undefined;
169571
+ /** IDs of all devices currently attached to the space. */
169572
+ device_ids: string[];
169573
+ /** IDs of all ACS entrances currently attached to the space. */
169574
+ acs_entrance_ids: string[];
168987
169575
  })[];
168988
169576
  };
168989
169577
  };
@@ -197283,6 +197871,25 @@ type Routes = {
197283
197871
  [x: string]: string | boolean;
197284
197872
  } | undefined;
197285
197873
  event_type: 'phone.deactivated';
197874
+ } | {
197875
+ /** ID of the event. */
197876
+ event_id: string;
197877
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
197878
+ workspace_id: string;
197879
+ /** Date and time at which the event was created. */
197880
+ created_at: string;
197881
+ /** Date and time at which the event occurred. */
197882
+ occurred_at: string;
197883
+ /** ID of the affected space. */
197884
+ space_id: string;
197885
+ /** Type of the event. */
197886
+ event_type: 'space.device_membership_changed';
197887
+ /** Unique key for the space within the workspace. */
197888
+ space_key?: string | undefined;
197889
+ /** IDs of all devices currently attached to the space. */
197890
+ device_ids: string[];
197891
+ /** IDs of all ACS entrances currently attached to the space. */
197892
+ acs_entrance_ids: string[];
197286
197893
  })[] | undefined;
197287
197894
  instant_keys?: {
197288
197895
  /** ID of the Instant Key. */