@seamapi/types 1.736.0 → 1.738.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 (47) hide show
  1. package/dist/connect.cjs +659 -22
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2935 -423
  4. package/dist/index.cjs +659 -22
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.d.ts +590 -0
  7. package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-access-groups/index.d.ts +1 -0
  10. package/lib/seam/connect/models/acs/acs-access-groups/index.js +2 -0
  11. package/lib/seam/connect/models/acs/acs-access-groups/index.js.map +1 -0
  12. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +511 -0
  13. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +126 -0
  14. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -0
  15. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  16. package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
  17. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  18. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +12 -12
  19. package/lib/seam/connect/models/acs/index.d.ts +1 -0
  20. package/lib/seam/connect/models/acs/index.js +1 -0
  21. package/lib/seam/connect/models/acs/index.js.map +1 -1
  22. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  23. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  24. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  25. package/lib/seam/connect/models/batch.d.ts +868 -74
  26. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
  27. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  28. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  29. package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
  30. package/lib/seam/connect/models/events/acs/index.d.ts +8 -8
  31. package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
  32. package/lib/seam/connect/models/events/devices.d.ts +4 -4
  33. package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
  34. package/lib/seam/connect/models/phones/phone-session.d.ts +30 -30
  35. package/lib/seam/connect/models/user-identities/user-identity.d.ts +12 -12
  36. package/lib/seam/connect/openapi.d.ts +512 -0
  37. package/lib/seam/connect/openapi.js +544 -0
  38. package/lib/seam/connect/openapi.js.map +1 -1
  39. package/lib/seam/connect/route-types.d.ts +616 -0
  40. package/package.json +1 -1
  41. package/src/lib/seam/connect/models/acs/acs-access-group.ts +6 -0
  42. package/src/lib/seam/connect/models/acs/acs-access-groups/index.ts +1 -0
  43. package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +171 -0
  44. package/src/lib/seam/connect/models/acs/index.ts +1 -0
  45. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  46. package/src/lib/seam/connect/openapi.ts +754 -172
  47. package/src/lib/seam/connect/route-types.ts +665 -0
@@ -12269,6 +12269,94 @@ export type Routes = {
12269
12269
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12270
12270
  ends_at: string | null;
12271
12271
  } | undefined;
12272
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
12273
+ pending_mutations: ({
12274
+ /** Date and time at which the mutation was created. */
12275
+ created_at: string;
12276
+ /** Detailed description of the mutation. */
12277
+ message: string;
12278
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
12279
+ mutation_code: 'creating';
12280
+ } | {
12281
+ /** Date and time at which the mutation was created. */
12282
+ created_at: string;
12283
+ /** Detailed description of the mutation. */
12284
+ message: string;
12285
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
12286
+ mutation_code: 'deleting';
12287
+ } | {
12288
+ /** Date and time at which the mutation was created. */
12289
+ created_at: string;
12290
+ /** Detailed description of the mutation. */
12291
+ message: string;
12292
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
12293
+ mutation_code: 'updating_group_information';
12294
+ /** Old access group information. */
12295
+ from: {
12296
+ /** Name of the access group. */
12297
+ name?: (string | null) | undefined;
12298
+ };
12299
+ /** New access group information. */
12300
+ to: {
12301
+ /** Name of the access group. */
12302
+ name?: (string | null) | undefined;
12303
+ };
12304
+ } | {
12305
+ /** Date and time at which the mutation was created. */
12306
+ created_at: string;
12307
+ /** Detailed description of the mutation. */
12308
+ message: string;
12309
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
12310
+ mutation_code: 'updating_access_schedule';
12311
+ /** Old access schedule information. */
12312
+ from: {
12313
+ /** Starting time for the access schedule. */
12314
+ starts_at: string | null;
12315
+ /** Ending time for the access schedule. */
12316
+ ends_at: string | null;
12317
+ };
12318
+ /** New access schedule information. */
12319
+ to: {
12320
+ /** Starting time for the access schedule. */
12321
+ starts_at: string | null;
12322
+ /** Ending time for the access schedule. */
12323
+ ends_at: string | null;
12324
+ };
12325
+ } | {
12326
+ /** Date and time at which the mutation was created. */
12327
+ created_at: string;
12328
+ /** Detailed description of the mutation. */
12329
+ message: string;
12330
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
12331
+ mutation_code: 'updating_user_membership';
12332
+ /** Old user membership. */
12333
+ from: {
12334
+ /** Old user ID. */
12335
+ acs_user_id: string | null;
12336
+ };
12337
+ /** New user membership. */
12338
+ to: {
12339
+ /** New user ID. */
12340
+ acs_user_id: string | null;
12341
+ };
12342
+ } | {
12343
+ /** Date and time at which the mutation was created. */
12344
+ created_at: string;
12345
+ /** Detailed description of the mutation. */
12346
+ message: string;
12347
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
12348
+ mutation_code: 'updating_entrance_membership';
12349
+ /** Old entrance membership. */
12350
+ from: {
12351
+ /** Old entrance ID. */
12352
+ acs_entrance_id: string | null;
12353
+ };
12354
+ /** New entrance membership. */
12355
+ to: {
12356
+ /** New entrance ID. */
12357
+ acs_entrance_id: string | null;
12358
+ };
12359
+ })[];
12272
12360
  is_managed: true;
12273
12361
  }[] | undefined;
12274
12362
  access_methods?: {
@@ -16884,6 +16972,94 @@ export type Routes = {
16884
16972
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16885
16973
  ends_at: string | null;
16886
16974
  } | undefined;
16975
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
16976
+ pending_mutations: ({
16977
+ /** Date and time at which the mutation was created. */
16978
+ created_at: string;
16979
+ /** Detailed description of the mutation. */
16980
+ message: string;
16981
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
16982
+ mutation_code: 'creating';
16983
+ } | {
16984
+ /** Date and time at which the mutation was created. */
16985
+ created_at: string;
16986
+ /** Detailed description of the mutation. */
16987
+ message: string;
16988
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
16989
+ mutation_code: 'deleting';
16990
+ } | {
16991
+ /** Date and time at which the mutation was created. */
16992
+ created_at: string;
16993
+ /** Detailed description of the mutation. */
16994
+ message: string;
16995
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
16996
+ mutation_code: 'updating_group_information';
16997
+ /** Old access group information. */
16998
+ from: {
16999
+ /** Name of the access group. */
17000
+ name?: (string | null) | undefined;
17001
+ };
17002
+ /** New access group information. */
17003
+ to: {
17004
+ /** Name of the access group. */
17005
+ name?: (string | null) | undefined;
17006
+ };
17007
+ } | {
17008
+ /** Date and time at which the mutation was created. */
17009
+ created_at: string;
17010
+ /** Detailed description of the mutation. */
17011
+ message: string;
17012
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
17013
+ mutation_code: 'updating_access_schedule';
17014
+ /** Old access schedule information. */
17015
+ from: {
17016
+ /** Starting time for the access schedule. */
17017
+ starts_at: string | null;
17018
+ /** Ending time for the access schedule. */
17019
+ ends_at: string | null;
17020
+ };
17021
+ /** New access schedule information. */
17022
+ to: {
17023
+ /** Starting time for the access schedule. */
17024
+ starts_at: string | null;
17025
+ /** Ending time for the access schedule. */
17026
+ ends_at: string | null;
17027
+ };
17028
+ } | {
17029
+ /** Date and time at which the mutation was created. */
17030
+ created_at: string;
17031
+ /** Detailed description of the mutation. */
17032
+ message: string;
17033
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
17034
+ mutation_code: 'updating_user_membership';
17035
+ /** Old user membership. */
17036
+ from: {
17037
+ /** Old user ID. */
17038
+ acs_user_id: string | null;
17039
+ };
17040
+ /** New user membership. */
17041
+ to: {
17042
+ /** New user ID. */
17043
+ acs_user_id: string | null;
17044
+ };
17045
+ } | {
17046
+ /** Date and time at which the mutation was created. */
17047
+ created_at: string;
17048
+ /** Detailed description of the mutation. */
17049
+ message: string;
17050
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
17051
+ mutation_code: 'updating_entrance_membership';
17052
+ /** Old entrance membership. */
17053
+ from: {
17054
+ /** Old entrance ID. */
17055
+ acs_entrance_id: string | null;
17056
+ };
17057
+ /** New entrance membership. */
17058
+ to: {
17059
+ /** New entrance ID. */
17060
+ acs_entrance_id: string | null;
17061
+ };
17062
+ })[];
16887
17063
  is_managed: true;
16888
17064
  };
16889
17065
  };
@@ -16953,6 +17129,94 @@ export type Routes = {
16953
17129
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16954
17130
  ends_at: string | null;
16955
17131
  } | undefined;
17132
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
17133
+ pending_mutations: ({
17134
+ /** Date and time at which the mutation was created. */
17135
+ created_at: string;
17136
+ /** Detailed description of the mutation. */
17137
+ message: string;
17138
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
17139
+ mutation_code: 'creating';
17140
+ } | {
17141
+ /** Date and time at which the mutation was created. */
17142
+ created_at: string;
17143
+ /** Detailed description of the mutation. */
17144
+ message: string;
17145
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17146
+ mutation_code: 'deleting';
17147
+ } | {
17148
+ /** Date and time at which the mutation was created. */
17149
+ created_at: string;
17150
+ /** Detailed description of the mutation. */
17151
+ message: string;
17152
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
17153
+ mutation_code: 'updating_group_information';
17154
+ /** Old access group information. */
17155
+ from: {
17156
+ /** Name of the access group. */
17157
+ name?: (string | null) | undefined;
17158
+ };
17159
+ /** New access group information. */
17160
+ to: {
17161
+ /** Name of the access group. */
17162
+ name?: (string | null) | undefined;
17163
+ };
17164
+ } | {
17165
+ /** Date and time at which the mutation was created. */
17166
+ created_at: string;
17167
+ /** Detailed description of the mutation. */
17168
+ message: string;
17169
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
17170
+ mutation_code: 'updating_access_schedule';
17171
+ /** Old access schedule information. */
17172
+ from: {
17173
+ /** Starting time for the access schedule. */
17174
+ starts_at: string | null;
17175
+ /** Ending time for the access schedule. */
17176
+ ends_at: string | null;
17177
+ };
17178
+ /** New access schedule information. */
17179
+ to: {
17180
+ /** Starting time for the access schedule. */
17181
+ starts_at: string | null;
17182
+ /** Ending time for the access schedule. */
17183
+ ends_at: string | null;
17184
+ };
17185
+ } | {
17186
+ /** Date and time at which the mutation was created. */
17187
+ created_at: string;
17188
+ /** Detailed description of the mutation. */
17189
+ message: string;
17190
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
17191
+ mutation_code: 'updating_user_membership';
17192
+ /** Old user membership. */
17193
+ from: {
17194
+ /** Old user ID. */
17195
+ acs_user_id: string | null;
17196
+ };
17197
+ /** New user membership. */
17198
+ to: {
17199
+ /** New user ID. */
17200
+ acs_user_id: string | null;
17201
+ };
17202
+ } | {
17203
+ /** Date and time at which the mutation was created. */
17204
+ created_at: string;
17205
+ /** Detailed description of the mutation. */
17206
+ message: string;
17207
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
17208
+ mutation_code: 'updating_entrance_membership';
17209
+ /** Old entrance membership. */
17210
+ from: {
17211
+ /** Old entrance ID. */
17212
+ acs_entrance_id: string | null;
17213
+ };
17214
+ /** New entrance membership. */
17215
+ to: {
17216
+ /** New entrance ID. */
17217
+ acs_entrance_id: string | null;
17218
+ };
17219
+ })[];
16956
17220
  is_managed: true;
16957
17221
  }[];
16958
17222
  };
@@ -17415,6 +17679,94 @@ export type Routes = {
17415
17679
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
17416
17680
  ends_at: string | null;
17417
17681
  } | undefined;
17682
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
17683
+ pending_mutations: ({
17684
+ /** Date and time at which the mutation was created. */
17685
+ created_at: string;
17686
+ /** Detailed description of the mutation. */
17687
+ message: string;
17688
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
17689
+ mutation_code: 'creating';
17690
+ } | {
17691
+ /** Date and time at which the mutation was created. */
17692
+ created_at: string;
17693
+ /** Detailed description of the mutation. */
17694
+ message: string;
17695
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17696
+ mutation_code: 'deleting';
17697
+ } | {
17698
+ /** Date and time at which the mutation was created. */
17699
+ created_at: string;
17700
+ /** Detailed description of the mutation. */
17701
+ message: string;
17702
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
17703
+ mutation_code: 'updating_group_information';
17704
+ /** Old access group information. */
17705
+ from: {
17706
+ /** Name of the access group. */
17707
+ name?: (string | null) | undefined;
17708
+ };
17709
+ /** New access group information. */
17710
+ to: {
17711
+ /** Name of the access group. */
17712
+ name?: (string | null) | undefined;
17713
+ };
17714
+ } | {
17715
+ /** Date and time at which the mutation was created. */
17716
+ created_at: string;
17717
+ /** Detailed description of the mutation. */
17718
+ message: string;
17719
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
17720
+ mutation_code: 'updating_access_schedule';
17721
+ /** Old access schedule information. */
17722
+ from: {
17723
+ /** Starting time for the access schedule. */
17724
+ starts_at: string | null;
17725
+ /** Ending time for the access schedule. */
17726
+ ends_at: string | null;
17727
+ };
17728
+ /** New access schedule information. */
17729
+ to: {
17730
+ /** Starting time for the access schedule. */
17731
+ starts_at: string | null;
17732
+ /** Ending time for the access schedule. */
17733
+ ends_at: string | null;
17734
+ };
17735
+ } | {
17736
+ /** Date and time at which the mutation was created. */
17737
+ created_at: string;
17738
+ /** Detailed description of the mutation. */
17739
+ message: string;
17740
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
17741
+ mutation_code: 'updating_user_membership';
17742
+ /** Old user membership. */
17743
+ from: {
17744
+ /** Old user ID. */
17745
+ acs_user_id: string | null;
17746
+ };
17747
+ /** New user membership. */
17748
+ to: {
17749
+ /** New user ID. */
17750
+ acs_user_id: string | null;
17751
+ };
17752
+ } | {
17753
+ /** Date and time at which the mutation was created. */
17754
+ created_at: string;
17755
+ /** Detailed description of the mutation. */
17756
+ message: string;
17757
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
17758
+ mutation_code: 'updating_entrance_membership';
17759
+ /** Old entrance membership. */
17760
+ from: {
17761
+ /** Old entrance ID. */
17762
+ acs_entrance_id: string | null;
17763
+ };
17764
+ /** New entrance membership. */
17765
+ to: {
17766
+ /** New entrance ID. */
17767
+ acs_entrance_id: string | null;
17768
+ };
17769
+ })[];
17418
17770
  is_managed: false;
17419
17771
  };
17420
17772
  };
@@ -17482,6 +17834,94 @@ export type Routes = {
17482
17834
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
17483
17835
  ends_at: string | null;
17484
17836
  } | undefined;
17837
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
17838
+ pending_mutations: ({
17839
+ /** Date and time at which the mutation was created. */
17840
+ created_at: string;
17841
+ /** Detailed description of the mutation. */
17842
+ message: string;
17843
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
17844
+ mutation_code: 'creating';
17845
+ } | {
17846
+ /** Date and time at which the mutation was created. */
17847
+ created_at: string;
17848
+ /** Detailed description of the mutation. */
17849
+ message: string;
17850
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17851
+ mutation_code: 'deleting';
17852
+ } | {
17853
+ /** Date and time at which the mutation was created. */
17854
+ created_at: string;
17855
+ /** Detailed description of the mutation. */
17856
+ message: string;
17857
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
17858
+ mutation_code: 'updating_group_information';
17859
+ /** Old access group information. */
17860
+ from: {
17861
+ /** Name of the access group. */
17862
+ name?: (string | null) | undefined;
17863
+ };
17864
+ /** New access group information. */
17865
+ to: {
17866
+ /** Name of the access group. */
17867
+ name?: (string | null) | undefined;
17868
+ };
17869
+ } | {
17870
+ /** Date and time at which the mutation was created. */
17871
+ created_at: string;
17872
+ /** Detailed description of the mutation. */
17873
+ message: string;
17874
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
17875
+ mutation_code: 'updating_access_schedule';
17876
+ /** Old access schedule information. */
17877
+ from: {
17878
+ /** Starting time for the access schedule. */
17879
+ starts_at: string | null;
17880
+ /** Ending time for the access schedule. */
17881
+ ends_at: string | null;
17882
+ };
17883
+ /** New access schedule information. */
17884
+ to: {
17885
+ /** Starting time for the access schedule. */
17886
+ starts_at: string | null;
17887
+ /** Ending time for the access schedule. */
17888
+ ends_at: string | null;
17889
+ };
17890
+ } | {
17891
+ /** Date and time at which the mutation was created. */
17892
+ created_at: string;
17893
+ /** Detailed description of the mutation. */
17894
+ message: string;
17895
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
17896
+ mutation_code: 'updating_user_membership';
17897
+ /** Old user membership. */
17898
+ from: {
17899
+ /** Old user ID. */
17900
+ acs_user_id: string | null;
17901
+ };
17902
+ /** New user membership. */
17903
+ to: {
17904
+ /** New user ID. */
17905
+ acs_user_id: string | null;
17906
+ };
17907
+ } | {
17908
+ /** Date and time at which the mutation was created. */
17909
+ created_at: string;
17910
+ /** Detailed description of the mutation. */
17911
+ message: string;
17912
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
17913
+ mutation_code: 'updating_entrance_membership';
17914
+ /** Old entrance membership. */
17915
+ from: {
17916
+ /** Old entrance ID. */
17917
+ acs_entrance_id: string | null;
17918
+ };
17919
+ /** New entrance membership. */
17920
+ to: {
17921
+ /** New entrance ID. */
17922
+ acs_entrance_id: string | null;
17923
+ };
17924
+ })[];
17485
17925
  is_managed: false;
17486
17926
  }[];
17487
17927
  };
@@ -86154,6 +86594,94 @@ export type Routes = {
86154
86594
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
86155
86595
  ends_at: string | null;
86156
86596
  } | undefined;
86597
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
86598
+ pending_mutations: ({
86599
+ /** Date and time at which the mutation was created. */
86600
+ created_at: string;
86601
+ /** Detailed description of the mutation. */
86602
+ message: string;
86603
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
86604
+ mutation_code: 'creating';
86605
+ } | {
86606
+ /** Date and time at which the mutation was created. */
86607
+ created_at: string;
86608
+ /** Detailed description of the mutation. */
86609
+ message: string;
86610
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
86611
+ mutation_code: 'deleting';
86612
+ } | {
86613
+ /** Date and time at which the mutation was created. */
86614
+ created_at: string;
86615
+ /** Detailed description of the mutation. */
86616
+ message: string;
86617
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
86618
+ mutation_code: 'updating_group_information';
86619
+ /** Old access group information. */
86620
+ from: {
86621
+ /** Name of the access group. */
86622
+ name?: (string | null) | undefined;
86623
+ };
86624
+ /** New access group information. */
86625
+ to: {
86626
+ /** Name of the access group. */
86627
+ name?: (string | null) | undefined;
86628
+ };
86629
+ } | {
86630
+ /** Date and time at which the mutation was created. */
86631
+ created_at: string;
86632
+ /** Detailed description of the mutation. */
86633
+ message: string;
86634
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
86635
+ mutation_code: 'updating_access_schedule';
86636
+ /** Old access schedule information. */
86637
+ from: {
86638
+ /** Starting time for the access schedule. */
86639
+ starts_at: string | null;
86640
+ /** Ending time for the access schedule. */
86641
+ ends_at: string | null;
86642
+ };
86643
+ /** New access schedule information. */
86644
+ to: {
86645
+ /** Starting time for the access schedule. */
86646
+ starts_at: string | null;
86647
+ /** Ending time for the access schedule. */
86648
+ ends_at: string | null;
86649
+ };
86650
+ } | {
86651
+ /** Date and time at which the mutation was created. */
86652
+ created_at: string;
86653
+ /** Detailed description of the mutation. */
86654
+ message: string;
86655
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
86656
+ mutation_code: 'updating_user_membership';
86657
+ /** Old user membership. */
86658
+ from: {
86659
+ /** Old user ID. */
86660
+ acs_user_id: string | null;
86661
+ };
86662
+ /** New user membership. */
86663
+ to: {
86664
+ /** New user ID. */
86665
+ acs_user_id: string | null;
86666
+ };
86667
+ } | {
86668
+ /** Date and time at which the mutation was created. */
86669
+ created_at: string;
86670
+ /** Detailed description of the mutation. */
86671
+ message: string;
86672
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
86673
+ mutation_code: 'updating_entrance_membership';
86674
+ /** Old entrance membership. */
86675
+ from: {
86676
+ /** Old entrance ID. */
86677
+ acs_entrance_id: string | null;
86678
+ };
86679
+ /** New entrance membership. */
86680
+ to: {
86681
+ /** New entrance ID. */
86682
+ acs_entrance_id: string | null;
86683
+ };
86684
+ })[];
86157
86685
  is_managed: true;
86158
86686
  }[] | undefined;
86159
86687
  acs_encoders?: {
@@ -87733,6 +88261,94 @@ export type Routes = {
87733
88261
  /** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
87734
88262
  ends_at: string | null;
87735
88263
  } | undefined;
88264
+ /** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
88265
+ pending_mutations: ({
88266
+ /** Date and time at which the mutation was created. */
88267
+ created_at: string;
88268
+ /** Detailed description of the mutation. */
88269
+ message: string;
88270
+ /** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
88271
+ mutation_code: 'creating';
88272
+ } | {
88273
+ /** Date and time at which the mutation was created. */
88274
+ created_at: string;
88275
+ /** Detailed description of the mutation. */
88276
+ message: string;
88277
+ /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
88278
+ mutation_code: 'deleting';
88279
+ } | {
88280
+ /** Date and time at which the mutation was created. */
88281
+ created_at: string;
88282
+ /** Detailed description of the mutation. */
88283
+ message: string;
88284
+ /** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
88285
+ mutation_code: 'updating_group_information';
88286
+ /** Old access group information. */
88287
+ from: {
88288
+ /** Name of the access group. */
88289
+ name?: (string | null) | undefined;
88290
+ };
88291
+ /** New access group information. */
88292
+ to: {
88293
+ /** Name of the access group. */
88294
+ name?: (string | null) | undefined;
88295
+ };
88296
+ } | {
88297
+ /** Date and time at which the mutation was created. */
88298
+ created_at: string;
88299
+ /** Detailed description of the mutation. */
88300
+ message: string;
88301
+ /** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
88302
+ mutation_code: 'updating_access_schedule';
88303
+ /** Old access schedule information. */
88304
+ from: {
88305
+ /** Starting time for the access schedule. */
88306
+ starts_at: string | null;
88307
+ /** Ending time for the access schedule. */
88308
+ ends_at: string | null;
88309
+ };
88310
+ /** New access schedule information. */
88311
+ to: {
88312
+ /** Starting time for the access schedule. */
88313
+ starts_at: string | null;
88314
+ /** Ending time for the access schedule. */
88315
+ ends_at: string | null;
88316
+ };
88317
+ } | {
88318
+ /** Date and time at which the mutation was created. */
88319
+ created_at: string;
88320
+ /** Detailed description of the mutation. */
88321
+ message: string;
88322
+ /** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
88323
+ mutation_code: 'updating_user_membership';
88324
+ /** Old user membership. */
88325
+ from: {
88326
+ /** Old user ID. */
88327
+ acs_user_id: string | null;
88328
+ };
88329
+ /** New user membership. */
88330
+ to: {
88331
+ /** New user ID. */
88332
+ acs_user_id: string | null;
88333
+ };
88334
+ } | {
88335
+ /** Date and time at which the mutation was created. */
88336
+ created_at: string;
88337
+ /** Detailed description of the mutation. */
88338
+ message: string;
88339
+ /** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
88340
+ mutation_code: 'updating_entrance_membership';
88341
+ /** Old entrance membership. */
88342
+ from: {
88343
+ /** Old entrance ID. */
88344
+ acs_entrance_id: string | null;
88345
+ };
88346
+ /** New entrance membership. */
88347
+ to: {
88348
+ /** New entrance ID. */
88349
+ acs_entrance_id: string | null;
88350
+ };
88351
+ })[];
87736
88352
  is_managed: false;
87737
88353
  }[] | undefined;
87738
88354
  unmanaged_devices?: {