@seamapi/types 1.737.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.
- package/dist/connect.cjs +655 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2935 -423
- package/dist/index.cjs +655 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +590 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-groups/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/acs-access-groups/index.js +2 -0
- package/lib/seam/connect/models/acs/acs-access-groups/index.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +511 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +126 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +12 -12
- package/lib/seam/connect/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/index.js +1 -0
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
- package/lib/seam/connect/models/batch.d.ts +868 -74
- package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
- package/lib/seam/connect/models/events/acs/index.d.ts +8 -8
- package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
- package/lib/seam/connect/models/events/devices.d.ts +4 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
- package/lib/seam/connect/models/phones/phone-session.d.ts +30 -30
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +12 -12
- package/lib/seam/connect/openapi.d.ts +512 -0
- package/lib/seam/connect/openapi.js +544 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +616 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-access-groups/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +171 -0
- package/src/lib/seam/connect/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +754 -172
- package/src/lib/seam/connect/route-types.ts +665 -0
|
@@ -14094,6 +14094,101 @@ export type Routes = {
|
|
|
14094
14094
|
ends_at: string | null
|
|
14095
14095
|
}
|
|
14096
14096
|
| undefined
|
|
14097
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
14098
|
+
pending_mutations: (
|
|
14099
|
+
| {
|
|
14100
|
+
/** Date and time at which the mutation was created. */
|
|
14101
|
+
created_at: string
|
|
14102
|
+
/** Detailed description of the mutation. */
|
|
14103
|
+
message: string
|
|
14104
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
14105
|
+
mutation_code: 'creating'
|
|
14106
|
+
}
|
|
14107
|
+
| {
|
|
14108
|
+
/** Date and time at which the mutation was created. */
|
|
14109
|
+
created_at: string
|
|
14110
|
+
/** Detailed description of the mutation. */
|
|
14111
|
+
message: string
|
|
14112
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
14113
|
+
mutation_code: 'deleting'
|
|
14114
|
+
}
|
|
14115
|
+
| {
|
|
14116
|
+
/** Date and time at which the mutation was created. */
|
|
14117
|
+
created_at: string
|
|
14118
|
+
/** Detailed description of the mutation. */
|
|
14119
|
+
message: string
|
|
14120
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
14121
|
+
mutation_code: 'updating_group_information'
|
|
14122
|
+
/** Old access group information. */
|
|
14123
|
+
from: {
|
|
14124
|
+
/** Name of the access group. */
|
|
14125
|
+
name?: (string | null) | undefined
|
|
14126
|
+
}
|
|
14127
|
+
/** New access group information. */
|
|
14128
|
+
to: {
|
|
14129
|
+
/** Name of the access group. */
|
|
14130
|
+
name?: (string | null) | undefined
|
|
14131
|
+
}
|
|
14132
|
+
}
|
|
14133
|
+
| {
|
|
14134
|
+
/** Date and time at which the mutation was created. */
|
|
14135
|
+
created_at: string
|
|
14136
|
+
/** Detailed description of the mutation. */
|
|
14137
|
+
message: string
|
|
14138
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
14139
|
+
mutation_code: 'updating_access_schedule'
|
|
14140
|
+
/** Old access schedule information. */
|
|
14141
|
+
from: {
|
|
14142
|
+
/** Starting time for the access schedule. */
|
|
14143
|
+
starts_at: string | null
|
|
14144
|
+
/** Ending time for the access schedule. */
|
|
14145
|
+
ends_at: string | null
|
|
14146
|
+
}
|
|
14147
|
+
/** New access schedule information. */
|
|
14148
|
+
to: {
|
|
14149
|
+
/** Starting time for the access schedule. */
|
|
14150
|
+
starts_at: string | null
|
|
14151
|
+
/** Ending time for the access schedule. */
|
|
14152
|
+
ends_at: string | null
|
|
14153
|
+
}
|
|
14154
|
+
}
|
|
14155
|
+
| {
|
|
14156
|
+
/** Date and time at which the mutation was created. */
|
|
14157
|
+
created_at: string
|
|
14158
|
+
/** Detailed description of the mutation. */
|
|
14159
|
+
message: string
|
|
14160
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
14161
|
+
mutation_code: 'updating_user_membership'
|
|
14162
|
+
/** Old user membership. */
|
|
14163
|
+
from: {
|
|
14164
|
+
/** Old user ID. */
|
|
14165
|
+
acs_user_id: string | null
|
|
14166
|
+
}
|
|
14167
|
+
/** New user membership. */
|
|
14168
|
+
to: {
|
|
14169
|
+
/** New user ID. */
|
|
14170
|
+
acs_user_id: string | null
|
|
14171
|
+
}
|
|
14172
|
+
}
|
|
14173
|
+
| {
|
|
14174
|
+
/** Date and time at which the mutation was created. */
|
|
14175
|
+
created_at: string
|
|
14176
|
+
/** Detailed description of the mutation. */
|
|
14177
|
+
message: string
|
|
14178
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
14179
|
+
mutation_code: 'updating_entrance_membership'
|
|
14180
|
+
/** Old entrance membership. */
|
|
14181
|
+
from: {
|
|
14182
|
+
/** Old entrance ID. */
|
|
14183
|
+
acs_entrance_id: string | null
|
|
14184
|
+
}
|
|
14185
|
+
/** New entrance membership. */
|
|
14186
|
+
to: {
|
|
14187
|
+
/** New entrance ID. */
|
|
14188
|
+
acs_entrance_id: string | null
|
|
14189
|
+
}
|
|
14190
|
+
}
|
|
14191
|
+
)[]
|
|
14097
14192
|
is_managed: true
|
|
14098
14193
|
}[]
|
|
14099
14194
|
| undefined
|
|
@@ -19463,6 +19558,101 @@ export type Routes = {
|
|
|
19463
19558
|
ends_at: string | null
|
|
19464
19559
|
}
|
|
19465
19560
|
| undefined
|
|
19561
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
19562
|
+
pending_mutations: (
|
|
19563
|
+
| {
|
|
19564
|
+
/** Date and time at which the mutation was created. */
|
|
19565
|
+
created_at: string
|
|
19566
|
+
/** Detailed description of the mutation. */
|
|
19567
|
+
message: string
|
|
19568
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
19569
|
+
mutation_code: 'creating'
|
|
19570
|
+
}
|
|
19571
|
+
| {
|
|
19572
|
+
/** Date and time at which the mutation was created. */
|
|
19573
|
+
created_at: string
|
|
19574
|
+
/** Detailed description of the mutation. */
|
|
19575
|
+
message: string
|
|
19576
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
19577
|
+
mutation_code: 'deleting'
|
|
19578
|
+
}
|
|
19579
|
+
| {
|
|
19580
|
+
/** Date and time at which the mutation was created. */
|
|
19581
|
+
created_at: string
|
|
19582
|
+
/** Detailed description of the mutation. */
|
|
19583
|
+
message: string
|
|
19584
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
19585
|
+
mutation_code: 'updating_group_information'
|
|
19586
|
+
/** Old access group information. */
|
|
19587
|
+
from: {
|
|
19588
|
+
/** Name of the access group. */
|
|
19589
|
+
name?: (string | null) | undefined
|
|
19590
|
+
}
|
|
19591
|
+
/** New access group information. */
|
|
19592
|
+
to: {
|
|
19593
|
+
/** Name of the access group. */
|
|
19594
|
+
name?: (string | null) | undefined
|
|
19595
|
+
}
|
|
19596
|
+
}
|
|
19597
|
+
| {
|
|
19598
|
+
/** Date and time at which the mutation was created. */
|
|
19599
|
+
created_at: string
|
|
19600
|
+
/** Detailed description of the mutation. */
|
|
19601
|
+
message: string
|
|
19602
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
19603
|
+
mutation_code: 'updating_access_schedule'
|
|
19604
|
+
/** Old access schedule information. */
|
|
19605
|
+
from: {
|
|
19606
|
+
/** Starting time for the access schedule. */
|
|
19607
|
+
starts_at: string | null
|
|
19608
|
+
/** Ending time for the access schedule. */
|
|
19609
|
+
ends_at: string | null
|
|
19610
|
+
}
|
|
19611
|
+
/** New access schedule information. */
|
|
19612
|
+
to: {
|
|
19613
|
+
/** Starting time for the access schedule. */
|
|
19614
|
+
starts_at: string | null
|
|
19615
|
+
/** Ending time for the access schedule. */
|
|
19616
|
+
ends_at: string | null
|
|
19617
|
+
}
|
|
19618
|
+
}
|
|
19619
|
+
| {
|
|
19620
|
+
/** Date and time at which the mutation was created. */
|
|
19621
|
+
created_at: string
|
|
19622
|
+
/** Detailed description of the mutation. */
|
|
19623
|
+
message: string
|
|
19624
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
19625
|
+
mutation_code: 'updating_user_membership'
|
|
19626
|
+
/** Old user membership. */
|
|
19627
|
+
from: {
|
|
19628
|
+
/** Old user ID. */
|
|
19629
|
+
acs_user_id: string | null
|
|
19630
|
+
}
|
|
19631
|
+
/** New user membership. */
|
|
19632
|
+
to: {
|
|
19633
|
+
/** New user ID. */
|
|
19634
|
+
acs_user_id: string | null
|
|
19635
|
+
}
|
|
19636
|
+
}
|
|
19637
|
+
| {
|
|
19638
|
+
/** Date and time at which the mutation was created. */
|
|
19639
|
+
created_at: string
|
|
19640
|
+
/** Detailed description of the mutation. */
|
|
19641
|
+
message: string
|
|
19642
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
19643
|
+
mutation_code: 'updating_entrance_membership'
|
|
19644
|
+
/** Old entrance membership. */
|
|
19645
|
+
from: {
|
|
19646
|
+
/** Old entrance ID. */
|
|
19647
|
+
acs_entrance_id: string | null
|
|
19648
|
+
}
|
|
19649
|
+
/** New entrance membership. */
|
|
19650
|
+
to: {
|
|
19651
|
+
/** New entrance ID. */
|
|
19652
|
+
acs_entrance_id: string | null
|
|
19653
|
+
}
|
|
19654
|
+
}
|
|
19655
|
+
)[]
|
|
19466
19656
|
is_managed: true
|
|
19467
19657
|
}
|
|
19468
19658
|
}
|
|
@@ -19551,6 +19741,101 @@ export type Routes = {
|
|
|
19551
19741
|
ends_at: string | null
|
|
19552
19742
|
}
|
|
19553
19743
|
| undefined
|
|
19744
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
19745
|
+
pending_mutations: (
|
|
19746
|
+
| {
|
|
19747
|
+
/** Date and time at which the mutation was created. */
|
|
19748
|
+
created_at: string
|
|
19749
|
+
/** Detailed description of the mutation. */
|
|
19750
|
+
message: string
|
|
19751
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
19752
|
+
mutation_code: 'creating'
|
|
19753
|
+
}
|
|
19754
|
+
| {
|
|
19755
|
+
/** Date and time at which the mutation was created. */
|
|
19756
|
+
created_at: string
|
|
19757
|
+
/** Detailed description of the mutation. */
|
|
19758
|
+
message: string
|
|
19759
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
19760
|
+
mutation_code: 'deleting'
|
|
19761
|
+
}
|
|
19762
|
+
| {
|
|
19763
|
+
/** Date and time at which the mutation was created. */
|
|
19764
|
+
created_at: string
|
|
19765
|
+
/** Detailed description of the mutation. */
|
|
19766
|
+
message: string
|
|
19767
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
19768
|
+
mutation_code: 'updating_group_information'
|
|
19769
|
+
/** Old access group information. */
|
|
19770
|
+
from: {
|
|
19771
|
+
/** Name of the access group. */
|
|
19772
|
+
name?: (string | null) | undefined
|
|
19773
|
+
}
|
|
19774
|
+
/** New access group information. */
|
|
19775
|
+
to: {
|
|
19776
|
+
/** Name of the access group. */
|
|
19777
|
+
name?: (string | null) | undefined
|
|
19778
|
+
}
|
|
19779
|
+
}
|
|
19780
|
+
| {
|
|
19781
|
+
/** Date and time at which the mutation was created. */
|
|
19782
|
+
created_at: string
|
|
19783
|
+
/** Detailed description of the mutation. */
|
|
19784
|
+
message: string
|
|
19785
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
19786
|
+
mutation_code: 'updating_access_schedule'
|
|
19787
|
+
/** Old access schedule information. */
|
|
19788
|
+
from: {
|
|
19789
|
+
/** Starting time for the access schedule. */
|
|
19790
|
+
starts_at: string | null
|
|
19791
|
+
/** Ending time for the access schedule. */
|
|
19792
|
+
ends_at: string | null
|
|
19793
|
+
}
|
|
19794
|
+
/** New access schedule information. */
|
|
19795
|
+
to: {
|
|
19796
|
+
/** Starting time for the access schedule. */
|
|
19797
|
+
starts_at: string | null
|
|
19798
|
+
/** Ending time for the access schedule. */
|
|
19799
|
+
ends_at: string | null
|
|
19800
|
+
}
|
|
19801
|
+
}
|
|
19802
|
+
| {
|
|
19803
|
+
/** Date and time at which the mutation was created. */
|
|
19804
|
+
created_at: string
|
|
19805
|
+
/** Detailed description of the mutation. */
|
|
19806
|
+
message: string
|
|
19807
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
19808
|
+
mutation_code: 'updating_user_membership'
|
|
19809
|
+
/** Old user membership. */
|
|
19810
|
+
from: {
|
|
19811
|
+
/** Old user ID. */
|
|
19812
|
+
acs_user_id: string | null
|
|
19813
|
+
}
|
|
19814
|
+
/** New user membership. */
|
|
19815
|
+
to: {
|
|
19816
|
+
/** New user ID. */
|
|
19817
|
+
acs_user_id: string | null
|
|
19818
|
+
}
|
|
19819
|
+
}
|
|
19820
|
+
| {
|
|
19821
|
+
/** Date and time at which the mutation was created. */
|
|
19822
|
+
created_at: string
|
|
19823
|
+
/** Detailed description of the mutation. */
|
|
19824
|
+
message: string
|
|
19825
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
19826
|
+
mutation_code: 'updating_entrance_membership'
|
|
19827
|
+
/** Old entrance membership. */
|
|
19828
|
+
from: {
|
|
19829
|
+
/** Old entrance ID. */
|
|
19830
|
+
acs_entrance_id: string | null
|
|
19831
|
+
}
|
|
19832
|
+
/** New entrance membership. */
|
|
19833
|
+
to: {
|
|
19834
|
+
/** New entrance ID. */
|
|
19835
|
+
acs_entrance_id: string | null
|
|
19836
|
+
}
|
|
19837
|
+
}
|
|
19838
|
+
)[]
|
|
19554
19839
|
is_managed: true
|
|
19555
19840
|
}[]
|
|
19556
19841
|
}
|
|
@@ -20097,6 +20382,101 @@ export type Routes = {
|
|
|
20097
20382
|
ends_at: string | null
|
|
20098
20383
|
}
|
|
20099
20384
|
| undefined
|
|
20385
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
20386
|
+
pending_mutations: (
|
|
20387
|
+
| {
|
|
20388
|
+
/** Date and time at which the mutation was created. */
|
|
20389
|
+
created_at: string
|
|
20390
|
+
/** Detailed description of the mutation. */
|
|
20391
|
+
message: string
|
|
20392
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
20393
|
+
mutation_code: 'creating'
|
|
20394
|
+
}
|
|
20395
|
+
| {
|
|
20396
|
+
/** Date and time at which the mutation was created. */
|
|
20397
|
+
created_at: string
|
|
20398
|
+
/** Detailed description of the mutation. */
|
|
20399
|
+
message: string
|
|
20400
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
20401
|
+
mutation_code: 'deleting'
|
|
20402
|
+
}
|
|
20403
|
+
| {
|
|
20404
|
+
/** Date and time at which the mutation was created. */
|
|
20405
|
+
created_at: string
|
|
20406
|
+
/** Detailed description of the mutation. */
|
|
20407
|
+
message: string
|
|
20408
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
20409
|
+
mutation_code: 'updating_group_information'
|
|
20410
|
+
/** Old access group information. */
|
|
20411
|
+
from: {
|
|
20412
|
+
/** Name of the access group. */
|
|
20413
|
+
name?: (string | null) | undefined
|
|
20414
|
+
}
|
|
20415
|
+
/** New access group information. */
|
|
20416
|
+
to: {
|
|
20417
|
+
/** Name of the access group. */
|
|
20418
|
+
name?: (string | null) | undefined
|
|
20419
|
+
}
|
|
20420
|
+
}
|
|
20421
|
+
| {
|
|
20422
|
+
/** Date and time at which the mutation was created. */
|
|
20423
|
+
created_at: string
|
|
20424
|
+
/** Detailed description of the mutation. */
|
|
20425
|
+
message: string
|
|
20426
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
20427
|
+
mutation_code: 'updating_access_schedule'
|
|
20428
|
+
/** Old access schedule information. */
|
|
20429
|
+
from: {
|
|
20430
|
+
/** Starting time for the access schedule. */
|
|
20431
|
+
starts_at: string | null
|
|
20432
|
+
/** Ending time for the access schedule. */
|
|
20433
|
+
ends_at: string | null
|
|
20434
|
+
}
|
|
20435
|
+
/** New access schedule information. */
|
|
20436
|
+
to: {
|
|
20437
|
+
/** Starting time for the access schedule. */
|
|
20438
|
+
starts_at: string | null
|
|
20439
|
+
/** Ending time for the access schedule. */
|
|
20440
|
+
ends_at: string | null
|
|
20441
|
+
}
|
|
20442
|
+
}
|
|
20443
|
+
| {
|
|
20444
|
+
/** Date and time at which the mutation was created. */
|
|
20445
|
+
created_at: string
|
|
20446
|
+
/** Detailed description of the mutation. */
|
|
20447
|
+
message: string
|
|
20448
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
20449
|
+
mutation_code: 'updating_user_membership'
|
|
20450
|
+
/** Old user membership. */
|
|
20451
|
+
from: {
|
|
20452
|
+
/** Old user ID. */
|
|
20453
|
+
acs_user_id: string | null
|
|
20454
|
+
}
|
|
20455
|
+
/** New user membership. */
|
|
20456
|
+
to: {
|
|
20457
|
+
/** New user ID. */
|
|
20458
|
+
acs_user_id: string | null
|
|
20459
|
+
}
|
|
20460
|
+
}
|
|
20461
|
+
| {
|
|
20462
|
+
/** Date and time at which the mutation was created. */
|
|
20463
|
+
created_at: string
|
|
20464
|
+
/** Detailed description of the mutation. */
|
|
20465
|
+
message: string
|
|
20466
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
20467
|
+
mutation_code: 'updating_entrance_membership'
|
|
20468
|
+
/** Old entrance membership. */
|
|
20469
|
+
from: {
|
|
20470
|
+
/** Old entrance ID. */
|
|
20471
|
+
acs_entrance_id: string | null
|
|
20472
|
+
}
|
|
20473
|
+
/** New entrance membership. */
|
|
20474
|
+
to: {
|
|
20475
|
+
/** New entrance ID. */
|
|
20476
|
+
acs_entrance_id: string | null
|
|
20477
|
+
}
|
|
20478
|
+
}
|
|
20479
|
+
)[]
|
|
20100
20480
|
is_managed: false
|
|
20101
20481
|
}
|
|
20102
20482
|
}
|
|
@@ -20183,6 +20563,101 @@ export type Routes = {
|
|
|
20183
20563
|
ends_at: string | null
|
|
20184
20564
|
}
|
|
20185
20565
|
| undefined
|
|
20566
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
20567
|
+
pending_mutations: (
|
|
20568
|
+
| {
|
|
20569
|
+
/** Date and time at which the mutation was created. */
|
|
20570
|
+
created_at: string
|
|
20571
|
+
/** Detailed description of the mutation. */
|
|
20572
|
+
message: string
|
|
20573
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
20574
|
+
mutation_code: 'creating'
|
|
20575
|
+
}
|
|
20576
|
+
| {
|
|
20577
|
+
/** Date and time at which the mutation was created. */
|
|
20578
|
+
created_at: string
|
|
20579
|
+
/** Detailed description of the mutation. */
|
|
20580
|
+
message: string
|
|
20581
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
20582
|
+
mutation_code: 'deleting'
|
|
20583
|
+
}
|
|
20584
|
+
| {
|
|
20585
|
+
/** Date and time at which the mutation was created. */
|
|
20586
|
+
created_at: string
|
|
20587
|
+
/** Detailed description of the mutation. */
|
|
20588
|
+
message: string
|
|
20589
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
20590
|
+
mutation_code: 'updating_group_information'
|
|
20591
|
+
/** Old access group information. */
|
|
20592
|
+
from: {
|
|
20593
|
+
/** Name of the access group. */
|
|
20594
|
+
name?: (string | null) | undefined
|
|
20595
|
+
}
|
|
20596
|
+
/** New access group information. */
|
|
20597
|
+
to: {
|
|
20598
|
+
/** Name of the access group. */
|
|
20599
|
+
name?: (string | null) | undefined
|
|
20600
|
+
}
|
|
20601
|
+
}
|
|
20602
|
+
| {
|
|
20603
|
+
/** Date and time at which the mutation was created. */
|
|
20604
|
+
created_at: string
|
|
20605
|
+
/** Detailed description of the mutation. */
|
|
20606
|
+
message: string
|
|
20607
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
20608
|
+
mutation_code: 'updating_access_schedule'
|
|
20609
|
+
/** Old access schedule information. */
|
|
20610
|
+
from: {
|
|
20611
|
+
/** Starting time for the access schedule. */
|
|
20612
|
+
starts_at: string | null
|
|
20613
|
+
/** Ending time for the access schedule. */
|
|
20614
|
+
ends_at: string | null
|
|
20615
|
+
}
|
|
20616
|
+
/** New access schedule information. */
|
|
20617
|
+
to: {
|
|
20618
|
+
/** Starting time for the access schedule. */
|
|
20619
|
+
starts_at: string | null
|
|
20620
|
+
/** Ending time for the access schedule. */
|
|
20621
|
+
ends_at: string | null
|
|
20622
|
+
}
|
|
20623
|
+
}
|
|
20624
|
+
| {
|
|
20625
|
+
/** Date and time at which the mutation was created. */
|
|
20626
|
+
created_at: string
|
|
20627
|
+
/** Detailed description of the mutation. */
|
|
20628
|
+
message: string
|
|
20629
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
20630
|
+
mutation_code: 'updating_user_membership'
|
|
20631
|
+
/** Old user membership. */
|
|
20632
|
+
from: {
|
|
20633
|
+
/** Old user ID. */
|
|
20634
|
+
acs_user_id: string | null
|
|
20635
|
+
}
|
|
20636
|
+
/** New user membership. */
|
|
20637
|
+
to: {
|
|
20638
|
+
/** New user ID. */
|
|
20639
|
+
acs_user_id: string | null
|
|
20640
|
+
}
|
|
20641
|
+
}
|
|
20642
|
+
| {
|
|
20643
|
+
/** Date and time at which the mutation was created. */
|
|
20644
|
+
created_at: string
|
|
20645
|
+
/** Detailed description of the mutation. */
|
|
20646
|
+
message: string
|
|
20647
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
20648
|
+
mutation_code: 'updating_entrance_membership'
|
|
20649
|
+
/** Old entrance membership. */
|
|
20650
|
+
from: {
|
|
20651
|
+
/** Old entrance ID. */
|
|
20652
|
+
acs_entrance_id: string | null
|
|
20653
|
+
}
|
|
20654
|
+
/** New entrance membership. */
|
|
20655
|
+
to: {
|
|
20656
|
+
/** New entrance ID. */
|
|
20657
|
+
acs_entrance_id: string | null
|
|
20658
|
+
}
|
|
20659
|
+
}
|
|
20660
|
+
)[]
|
|
20186
20661
|
is_managed: false
|
|
20187
20662
|
}[]
|
|
20188
20663
|
}
|
|
@@ -102301,6 +102776,101 @@ export type Routes = {
|
|
|
102301
102776
|
ends_at: string | null
|
|
102302
102777
|
}
|
|
102303
102778
|
| undefined
|
|
102779
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
102780
|
+
pending_mutations: (
|
|
102781
|
+
| {
|
|
102782
|
+
/** Date and time at which the mutation was created. */
|
|
102783
|
+
created_at: string
|
|
102784
|
+
/** Detailed description of the mutation. */
|
|
102785
|
+
message: string
|
|
102786
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
102787
|
+
mutation_code: 'creating'
|
|
102788
|
+
}
|
|
102789
|
+
| {
|
|
102790
|
+
/** Date and time at which the mutation was created. */
|
|
102791
|
+
created_at: string
|
|
102792
|
+
/** Detailed description of the mutation. */
|
|
102793
|
+
message: string
|
|
102794
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
102795
|
+
mutation_code: 'deleting'
|
|
102796
|
+
}
|
|
102797
|
+
| {
|
|
102798
|
+
/** Date and time at which the mutation was created. */
|
|
102799
|
+
created_at: string
|
|
102800
|
+
/** Detailed description of the mutation. */
|
|
102801
|
+
message: string
|
|
102802
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
102803
|
+
mutation_code: 'updating_group_information'
|
|
102804
|
+
/** Old access group information. */
|
|
102805
|
+
from: {
|
|
102806
|
+
/** Name of the access group. */
|
|
102807
|
+
name?: (string | null) | undefined
|
|
102808
|
+
}
|
|
102809
|
+
/** New access group information. */
|
|
102810
|
+
to: {
|
|
102811
|
+
/** Name of the access group. */
|
|
102812
|
+
name?: (string | null) | undefined
|
|
102813
|
+
}
|
|
102814
|
+
}
|
|
102815
|
+
| {
|
|
102816
|
+
/** Date and time at which the mutation was created. */
|
|
102817
|
+
created_at: string
|
|
102818
|
+
/** Detailed description of the mutation. */
|
|
102819
|
+
message: string
|
|
102820
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
102821
|
+
mutation_code: 'updating_access_schedule'
|
|
102822
|
+
/** Old access schedule information. */
|
|
102823
|
+
from: {
|
|
102824
|
+
/** Starting time for the access schedule. */
|
|
102825
|
+
starts_at: string | null
|
|
102826
|
+
/** Ending time for the access schedule. */
|
|
102827
|
+
ends_at: string | null
|
|
102828
|
+
}
|
|
102829
|
+
/** New access schedule information. */
|
|
102830
|
+
to: {
|
|
102831
|
+
/** Starting time for the access schedule. */
|
|
102832
|
+
starts_at: string | null
|
|
102833
|
+
/** Ending time for the access schedule. */
|
|
102834
|
+
ends_at: string | null
|
|
102835
|
+
}
|
|
102836
|
+
}
|
|
102837
|
+
| {
|
|
102838
|
+
/** Date and time at which the mutation was created. */
|
|
102839
|
+
created_at: string
|
|
102840
|
+
/** Detailed description of the mutation. */
|
|
102841
|
+
message: string
|
|
102842
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
102843
|
+
mutation_code: 'updating_user_membership'
|
|
102844
|
+
/** Old user membership. */
|
|
102845
|
+
from: {
|
|
102846
|
+
/** Old user ID. */
|
|
102847
|
+
acs_user_id: string | null
|
|
102848
|
+
}
|
|
102849
|
+
/** New user membership. */
|
|
102850
|
+
to: {
|
|
102851
|
+
/** New user ID. */
|
|
102852
|
+
acs_user_id: string | null
|
|
102853
|
+
}
|
|
102854
|
+
}
|
|
102855
|
+
| {
|
|
102856
|
+
/** Date and time at which the mutation was created. */
|
|
102857
|
+
created_at: string
|
|
102858
|
+
/** Detailed description of the mutation. */
|
|
102859
|
+
message: string
|
|
102860
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
102861
|
+
mutation_code: 'updating_entrance_membership'
|
|
102862
|
+
/** Old entrance membership. */
|
|
102863
|
+
from: {
|
|
102864
|
+
/** Old entrance ID. */
|
|
102865
|
+
acs_entrance_id: string | null
|
|
102866
|
+
}
|
|
102867
|
+
/** New entrance membership. */
|
|
102868
|
+
to: {
|
|
102869
|
+
/** New entrance ID. */
|
|
102870
|
+
acs_entrance_id: string | null
|
|
102871
|
+
}
|
|
102872
|
+
}
|
|
102873
|
+
)[]
|
|
102304
102874
|
is_managed: true
|
|
102305
102875
|
}[]
|
|
102306
102876
|
| undefined
|
|
@@ -104161,6 +104731,101 @@ export type Routes = {
|
|
|
104161
104731
|
ends_at: string | null
|
|
104162
104732
|
}
|
|
104163
104733
|
| undefined
|
|
104734
|
+
/** Collection of pending mutations for the access group. Represents operations that have been requested but not yet completed on the integrated access system. */
|
|
104735
|
+
pending_mutations: (
|
|
104736
|
+
| {
|
|
104737
|
+
/** Date and time at which the mutation was created. */
|
|
104738
|
+
created_at: string
|
|
104739
|
+
/** Detailed description of the mutation. */
|
|
104740
|
+
message: string
|
|
104741
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group creation to the integrated access system. */
|
|
104742
|
+
mutation_code: 'creating'
|
|
104743
|
+
}
|
|
104744
|
+
| {
|
|
104745
|
+
/** Date and time at which the mutation was created. */
|
|
104746
|
+
created_at: string
|
|
104747
|
+
/** Detailed description of the mutation. */
|
|
104748
|
+
message: string
|
|
104749
|
+
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
104750
|
+
mutation_code: 'deleting'
|
|
104751
|
+
}
|
|
104752
|
+
| {
|
|
104753
|
+
/** Date and time at which the mutation was created. */
|
|
104754
|
+
created_at: string
|
|
104755
|
+
/** Detailed description of the mutation. */
|
|
104756
|
+
message: string
|
|
104757
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access group information to the integrated access system. */
|
|
104758
|
+
mutation_code: 'updating_group_information'
|
|
104759
|
+
/** Old access group information. */
|
|
104760
|
+
from: {
|
|
104761
|
+
/** Name of the access group. */
|
|
104762
|
+
name?: (string | null) | undefined
|
|
104763
|
+
}
|
|
104764
|
+
/** New access group information. */
|
|
104765
|
+
to: {
|
|
104766
|
+
/** Name of the access group. */
|
|
104767
|
+
name?: (string | null) | undefined
|
|
104768
|
+
}
|
|
104769
|
+
}
|
|
104770
|
+
| {
|
|
104771
|
+
/** Date and time at which the mutation was created. */
|
|
104772
|
+
created_at: string
|
|
104773
|
+
/** Detailed description of the mutation. */
|
|
104774
|
+
message: string
|
|
104775
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated access schedule information to the integrated access system. */
|
|
104776
|
+
mutation_code: 'updating_access_schedule'
|
|
104777
|
+
/** Old access schedule information. */
|
|
104778
|
+
from: {
|
|
104779
|
+
/** Starting time for the access schedule. */
|
|
104780
|
+
starts_at: string | null
|
|
104781
|
+
/** Ending time for the access schedule. */
|
|
104782
|
+
ends_at: string | null
|
|
104783
|
+
}
|
|
104784
|
+
/** New access schedule information. */
|
|
104785
|
+
to: {
|
|
104786
|
+
/** Starting time for the access schedule. */
|
|
104787
|
+
starts_at: string | null
|
|
104788
|
+
/** Ending time for the access schedule. */
|
|
104789
|
+
ends_at: string | null
|
|
104790
|
+
}
|
|
104791
|
+
}
|
|
104792
|
+
| {
|
|
104793
|
+
/** Date and time at which the mutation was created. */
|
|
104794
|
+
created_at: string
|
|
104795
|
+
/** Detailed description of the mutation. */
|
|
104796
|
+
message: string
|
|
104797
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated user membership information to the integrated access system. */
|
|
104798
|
+
mutation_code: 'updating_user_membership'
|
|
104799
|
+
/** Old user membership. */
|
|
104800
|
+
from: {
|
|
104801
|
+
/** Old user ID. */
|
|
104802
|
+
acs_user_id: string | null
|
|
104803
|
+
}
|
|
104804
|
+
/** New user membership. */
|
|
104805
|
+
to: {
|
|
104806
|
+
/** New user ID. */
|
|
104807
|
+
acs_user_id: string | null
|
|
104808
|
+
}
|
|
104809
|
+
}
|
|
104810
|
+
| {
|
|
104811
|
+
/** Date and time at which the mutation was created. */
|
|
104812
|
+
created_at: string
|
|
104813
|
+
/** Detailed description of the mutation. */
|
|
104814
|
+
message: string
|
|
104815
|
+
/** Mutation code to indicate that Seam is in the process of pushing updated entrance membership information to the integrated access system. */
|
|
104816
|
+
mutation_code: 'updating_entrance_membership'
|
|
104817
|
+
/** Old entrance membership. */
|
|
104818
|
+
from: {
|
|
104819
|
+
/** Old entrance ID. */
|
|
104820
|
+
acs_entrance_id: string | null
|
|
104821
|
+
}
|
|
104822
|
+
/** New entrance membership. */
|
|
104823
|
+
to: {
|
|
104824
|
+
/** New entrance ID. */
|
|
104825
|
+
acs_entrance_id: string | null
|
|
104826
|
+
}
|
|
104827
|
+
}
|
|
104828
|
+
)[]
|
|
104164
104829
|
is_managed: false
|
|
104165
104830
|
}[]
|
|
104166
104831
|
| undefined
|