@seamapi/types 1.738.0 → 1.740.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 +1391 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2600 -532
- package/dist/index.cjs +1391 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +62 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +53 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +19 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +62 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +53 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +19 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +172 -0
- package/lib/seam/connect/openapi.d.ts +1664 -241
- package/lib/seam/connect/openapi.js +1362 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +349 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +26 -0
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +26 -0
- package/src/lib/seam/connect/openapi.ts +1386 -0
- package/src/lib/seam/connect/route-types.ts +429 -0
|
@@ -14188,6 +14188,18 @@ export type Routes = {
|
|
|
14188
14188
|
acs_entrance_id: string | null
|
|
14189
14189
|
}
|
|
14190
14190
|
}
|
|
14191
|
+
| {
|
|
14192
|
+
/** Date and time at which the mutation was created. */
|
|
14193
|
+
created_at: string
|
|
14194
|
+
/** Detailed description of the mutation. */
|
|
14195
|
+
message: string
|
|
14196
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
14197
|
+
mutation_code: 'deferring_user_membership_update'
|
|
14198
|
+
/** ID of the user involved in the scheduled change. */
|
|
14199
|
+
acs_user_id: string
|
|
14200
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
14201
|
+
variant: 'adding' | 'removing'
|
|
14202
|
+
}
|
|
14191
14203
|
)[]
|
|
14192
14204
|
is_managed: true
|
|
14193
14205
|
}[]
|
|
@@ -19652,6 +19664,18 @@ export type Routes = {
|
|
|
19652
19664
|
acs_entrance_id: string | null
|
|
19653
19665
|
}
|
|
19654
19666
|
}
|
|
19667
|
+
| {
|
|
19668
|
+
/** Date and time at which the mutation was created. */
|
|
19669
|
+
created_at: string
|
|
19670
|
+
/** Detailed description of the mutation. */
|
|
19671
|
+
message: string
|
|
19672
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
19673
|
+
mutation_code: 'deferring_user_membership_update'
|
|
19674
|
+
/** ID of the user involved in the scheduled change. */
|
|
19675
|
+
acs_user_id: string
|
|
19676
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
19677
|
+
variant: 'adding' | 'removing'
|
|
19678
|
+
}
|
|
19655
19679
|
)[]
|
|
19656
19680
|
is_managed: true
|
|
19657
19681
|
}
|
|
@@ -19835,6 +19859,18 @@ export type Routes = {
|
|
|
19835
19859
|
acs_entrance_id: string | null
|
|
19836
19860
|
}
|
|
19837
19861
|
}
|
|
19862
|
+
| {
|
|
19863
|
+
/** Date and time at which the mutation was created. */
|
|
19864
|
+
created_at: string
|
|
19865
|
+
/** Detailed description of the mutation. */
|
|
19866
|
+
message: string
|
|
19867
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
19868
|
+
mutation_code: 'deferring_user_membership_update'
|
|
19869
|
+
/** ID of the user involved in the scheduled change. */
|
|
19870
|
+
acs_user_id: string
|
|
19871
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
19872
|
+
variant: 'adding' | 'removing'
|
|
19873
|
+
}
|
|
19838
19874
|
)[]
|
|
19839
19875
|
is_managed: true
|
|
19840
19876
|
}[]
|
|
@@ -20256,6 +20292,18 @@ export type Routes = {
|
|
|
20256
20292
|
acs_access_group_id: string | null
|
|
20257
20293
|
}
|
|
20258
20294
|
}
|
|
20295
|
+
| {
|
|
20296
|
+
/** Date and time at which the mutation was created. */
|
|
20297
|
+
created_at: string
|
|
20298
|
+
/** Detailed description of the mutation. */
|
|
20299
|
+
message: string
|
|
20300
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
20301
|
+
mutation_code: 'deferring_group_membership_update'
|
|
20302
|
+
/** ID of the access group involved in the scheduled change. */
|
|
20303
|
+
acs_access_group_id: string
|
|
20304
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
20305
|
+
variant: 'adding' | 'removing'
|
|
20306
|
+
}
|
|
20259
20307
|
)[]
|
|
20260
20308
|
| undefined
|
|
20261
20309
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -20476,6 +20524,18 @@ export type Routes = {
|
|
|
20476
20524
|
acs_entrance_id: string | null
|
|
20477
20525
|
}
|
|
20478
20526
|
}
|
|
20527
|
+
| {
|
|
20528
|
+
/** Date and time at which the mutation was created. */
|
|
20529
|
+
created_at: string
|
|
20530
|
+
/** Detailed description of the mutation. */
|
|
20531
|
+
message: string
|
|
20532
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
20533
|
+
mutation_code: 'deferring_user_membership_update'
|
|
20534
|
+
/** ID of the user involved in the scheduled change. */
|
|
20535
|
+
acs_user_id: string
|
|
20536
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
20537
|
+
variant: 'adding' | 'removing'
|
|
20538
|
+
}
|
|
20479
20539
|
)[]
|
|
20480
20540
|
is_managed: false
|
|
20481
20541
|
}
|
|
@@ -20657,6 +20717,18 @@ export type Routes = {
|
|
|
20657
20717
|
acs_entrance_id: string | null
|
|
20658
20718
|
}
|
|
20659
20719
|
}
|
|
20720
|
+
| {
|
|
20721
|
+
/** Date and time at which the mutation was created. */
|
|
20722
|
+
created_at: string
|
|
20723
|
+
/** Detailed description of the mutation. */
|
|
20724
|
+
message: string
|
|
20725
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
20726
|
+
mutation_code: 'deferring_user_membership_update'
|
|
20727
|
+
/** ID of the user involved in the scheduled change. */
|
|
20728
|
+
acs_user_id: string
|
|
20729
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
20730
|
+
variant: 'adding' | 'removing'
|
|
20731
|
+
}
|
|
20660
20732
|
)[]
|
|
20661
20733
|
is_managed: false
|
|
20662
20734
|
}[]
|
|
@@ -27211,6 +27283,18 @@ export type Routes = {
|
|
|
27211
27283
|
acs_access_group_id: string | null
|
|
27212
27284
|
}
|
|
27213
27285
|
}
|
|
27286
|
+
| {
|
|
27287
|
+
/** Date and time at which the mutation was created. */
|
|
27288
|
+
created_at: string
|
|
27289
|
+
/** Detailed description of the mutation. */
|
|
27290
|
+
message: string
|
|
27291
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
27292
|
+
mutation_code: 'deferring_group_membership_update'
|
|
27293
|
+
/** ID of the access group involved in the scheduled change. */
|
|
27294
|
+
acs_access_group_id: string
|
|
27295
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27296
|
+
variant: 'adding' | 'removing'
|
|
27297
|
+
}
|
|
27214
27298
|
)[]
|
|
27215
27299
|
| undefined
|
|
27216
27300
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -27511,6 +27595,18 @@ export type Routes = {
|
|
|
27511
27595
|
acs_access_group_id: string | null
|
|
27512
27596
|
}
|
|
27513
27597
|
}
|
|
27598
|
+
| {
|
|
27599
|
+
/** Date and time at which the mutation was created. */
|
|
27600
|
+
created_at: string
|
|
27601
|
+
/** Detailed description of the mutation. */
|
|
27602
|
+
message: string
|
|
27603
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
27604
|
+
mutation_code: 'deferring_group_membership_update'
|
|
27605
|
+
/** ID of the access group involved in the scheduled change. */
|
|
27606
|
+
acs_access_group_id: string
|
|
27607
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27608
|
+
variant: 'adding' | 'removing'
|
|
27609
|
+
}
|
|
27514
27610
|
)[]
|
|
27515
27611
|
| undefined
|
|
27516
27612
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -27799,6 +27895,18 @@ export type Routes = {
|
|
|
27799
27895
|
acs_access_group_id: string | null
|
|
27800
27896
|
}
|
|
27801
27897
|
}
|
|
27898
|
+
| {
|
|
27899
|
+
/** Date and time at which the mutation was created. */
|
|
27900
|
+
created_at: string
|
|
27901
|
+
/** Detailed description of the mutation. */
|
|
27902
|
+
message: string
|
|
27903
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
27904
|
+
mutation_code: 'deferring_group_membership_update'
|
|
27905
|
+
/** ID of the access group involved in the scheduled change. */
|
|
27906
|
+
acs_access_group_id: string
|
|
27907
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27908
|
+
variant: 'adding' | 'removing'
|
|
27909
|
+
}
|
|
27802
27910
|
)[]
|
|
27803
27911
|
| undefined
|
|
27804
27912
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -28310,6 +28418,18 @@ export type Routes = {
|
|
|
28310
28418
|
acs_access_group_id: string | null
|
|
28311
28419
|
}
|
|
28312
28420
|
}
|
|
28421
|
+
| {
|
|
28422
|
+
/** Date and time at which the mutation was created. */
|
|
28423
|
+
created_at: string
|
|
28424
|
+
/** Detailed description of the mutation. */
|
|
28425
|
+
message: string
|
|
28426
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
28427
|
+
mutation_code: 'deferring_group_membership_update'
|
|
28428
|
+
/** ID of the access group involved in the scheduled change. */
|
|
28429
|
+
acs_access_group_id: string
|
|
28430
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
28431
|
+
variant: 'adding' | 'removing'
|
|
28432
|
+
}
|
|
28313
28433
|
)[]
|
|
28314
28434
|
| undefined
|
|
28315
28435
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -28594,6 +28714,18 @@ export type Routes = {
|
|
|
28594
28714
|
acs_access_group_id: string | null
|
|
28595
28715
|
}
|
|
28596
28716
|
}
|
|
28717
|
+
| {
|
|
28718
|
+
/** Date and time at which the mutation was created. */
|
|
28719
|
+
created_at: string
|
|
28720
|
+
/** Detailed description of the mutation. */
|
|
28721
|
+
message: string
|
|
28722
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
28723
|
+
mutation_code: 'deferring_group_membership_update'
|
|
28724
|
+
/** ID of the access group involved in the scheduled change. */
|
|
28725
|
+
acs_access_group_id: string
|
|
28726
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
28727
|
+
variant: 'adding' | 'removing'
|
|
28728
|
+
}
|
|
28597
28729
|
)[]
|
|
28598
28730
|
| undefined
|
|
28599
28731
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -69297,6 +69429,243 @@ export type Routes = {
|
|
|
69297
69429
|
}
|
|
69298
69430
|
maxDuration: undefined
|
|
69299
69431
|
}
|
|
69432
|
+
'/seam/customer/v1/customers/automations/get': {
|
|
69433
|
+
route: '/seam/customer/v1/customers/automations/get'
|
|
69434
|
+
method: 'GET' | 'POST'
|
|
69435
|
+
queryParams: {}
|
|
69436
|
+
jsonBody: {}
|
|
69437
|
+
commonParams: {
|
|
69438
|
+
/** Key of the customer. */
|
|
69439
|
+
customer_key: string
|
|
69440
|
+
}
|
|
69441
|
+
formData: {}
|
|
69442
|
+
jsonResponse: {
|
|
69443
|
+
automation: {
|
|
69444
|
+
access_rules?:
|
|
69445
|
+
| {
|
|
69446
|
+
reservation_created?:
|
|
69447
|
+
| {
|
|
69448
|
+
rule: 'reservation_created'
|
|
69449
|
+
config: {
|
|
69450
|
+
access_methods: ('card' | 'mobile_key' | 'code')[]
|
|
69451
|
+
method_issuance_strategy:
|
|
69452
|
+
| 'first_available'
|
|
69453
|
+
| 'first_two_available'
|
|
69454
|
+
| 'all_available'
|
|
69455
|
+
card_count_on_reservation_create?: number | undefined
|
|
69456
|
+
code_count_on_reservation_create?: number | undefined
|
|
69457
|
+
instant_key_max_use_count?: number | undefined
|
|
69458
|
+
}
|
|
69459
|
+
}
|
|
69460
|
+
| undefined
|
|
69461
|
+
reservation_time_updated?:
|
|
69462
|
+
| {
|
|
69463
|
+
rule: 'reservation_time_updated'
|
|
69464
|
+
config?: {} | undefined
|
|
69465
|
+
}
|
|
69466
|
+
| undefined
|
|
69467
|
+
reservation_spaces_updated?:
|
|
69468
|
+
| {
|
|
69469
|
+
rule: 'reservation_spaces_updated'
|
|
69470
|
+
config?: {} | undefined
|
|
69471
|
+
}
|
|
69472
|
+
| undefined
|
|
69473
|
+
reservation_deleted?:
|
|
69474
|
+
| {
|
|
69475
|
+
rule: 'reservation_deleted'
|
|
69476
|
+
config?: {} | undefined
|
|
69477
|
+
}
|
|
69478
|
+
| undefined
|
|
69479
|
+
space_name_updated?:
|
|
69480
|
+
| {
|
|
69481
|
+
rule: 'space_name_updated'
|
|
69482
|
+
config?: {} | undefined
|
|
69483
|
+
}
|
|
69484
|
+
| undefined
|
|
69485
|
+
user_identity_name_updated?:
|
|
69486
|
+
| {
|
|
69487
|
+
rule: 'user_identity_name_updated'
|
|
69488
|
+
config?: {} | undefined
|
|
69489
|
+
}
|
|
69490
|
+
| undefined
|
|
69491
|
+
staff_member_name_updated?:
|
|
69492
|
+
| {
|
|
69493
|
+
rule: 'staff_member_name_updated'
|
|
69494
|
+
config?: {} | undefined
|
|
69495
|
+
}
|
|
69496
|
+
| undefined
|
|
69497
|
+
staff_member_created?:
|
|
69498
|
+
| {
|
|
69499
|
+
rule: 'staff_member_created'
|
|
69500
|
+
config: {}
|
|
69501
|
+
}
|
|
69502
|
+
| undefined
|
|
69503
|
+
}
|
|
69504
|
+
| undefined
|
|
69505
|
+
climate_rules?:
|
|
69506
|
+
| {
|
|
69507
|
+
rules: {
|
|
69508
|
+
reservation_created?:
|
|
69509
|
+
| {
|
|
69510
|
+
occupied_preset_key?: string | undefined
|
|
69511
|
+
automated_occupied_preset?:
|
|
69512
|
+
| {
|
|
69513
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
69514
|
+
heating_set_point_celsius?: number | undefined
|
|
69515
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
69516
|
+
cooling_set_point_celsius?: number | undefined
|
|
69517
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
69518
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
69519
|
+
is_override_allowed: boolean
|
|
69520
|
+
max_override_period_minutes: number
|
|
69521
|
+
}
|
|
69522
|
+
| undefined
|
|
69523
|
+
unoccupied_preset_key?: string | undefined
|
|
69524
|
+
automated_unoccupied_preset?:
|
|
69525
|
+
| {
|
|
69526
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
69527
|
+
heating_set_point_celsius?: number | undefined
|
|
69528
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
69529
|
+
cooling_set_point_celsius?: number | undefined
|
|
69530
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
69531
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
69532
|
+
is_override_allowed: boolean
|
|
69533
|
+
max_override_period_minutes: number
|
|
69534
|
+
}
|
|
69535
|
+
| undefined
|
|
69536
|
+
precondition_minutes_before_reservation?:
|
|
69537
|
+
| number
|
|
69538
|
+
| undefined
|
|
69539
|
+
}
|
|
69540
|
+
| undefined
|
|
69541
|
+
reservation_time_updated?: {} | undefined
|
|
69542
|
+
reservation_deleted?: {} | undefined
|
|
69543
|
+
}
|
|
69544
|
+
}
|
|
69545
|
+
| undefined
|
|
69546
|
+
}
|
|
69547
|
+
}
|
|
69548
|
+
maxDuration: undefined
|
|
69549
|
+
}
|
|
69550
|
+
'/seam/customer/v1/customers/automations/update': {
|
|
69551
|
+
route: '/seam/customer/v1/customers/automations/update'
|
|
69552
|
+
method: 'PATCH' | 'POST'
|
|
69553
|
+
queryParams: {}
|
|
69554
|
+
jsonBody: {
|
|
69555
|
+
/** Key of the customer. */
|
|
69556
|
+
customer_key: string
|
|
69557
|
+
/** Access automation rules configuration. */
|
|
69558
|
+
access_rules?:
|
|
69559
|
+
| {
|
|
69560
|
+
reservation_created?:
|
|
69561
|
+
| {
|
|
69562
|
+
rule: 'reservation_created'
|
|
69563
|
+
config: {
|
|
69564
|
+
access_methods: ('card' | 'mobile_key' | 'code')[]
|
|
69565
|
+
method_issuance_strategy:
|
|
69566
|
+
| 'first_available'
|
|
69567
|
+
| 'first_two_available'
|
|
69568
|
+
| 'all_available'
|
|
69569
|
+
card_count_on_reservation_create?: number | undefined
|
|
69570
|
+
code_count_on_reservation_create?: number | undefined
|
|
69571
|
+
instant_key_max_use_count?: number | undefined
|
|
69572
|
+
}
|
|
69573
|
+
}
|
|
69574
|
+
| undefined
|
|
69575
|
+
reservation_time_updated?:
|
|
69576
|
+
| {
|
|
69577
|
+
rule: 'reservation_time_updated'
|
|
69578
|
+
config?: {} | undefined
|
|
69579
|
+
}
|
|
69580
|
+
| undefined
|
|
69581
|
+
reservation_spaces_updated?:
|
|
69582
|
+
| {
|
|
69583
|
+
rule: 'reservation_spaces_updated'
|
|
69584
|
+
config?: {} | undefined
|
|
69585
|
+
}
|
|
69586
|
+
| undefined
|
|
69587
|
+
reservation_deleted?:
|
|
69588
|
+
| {
|
|
69589
|
+
rule: 'reservation_deleted'
|
|
69590
|
+
config?: {} | undefined
|
|
69591
|
+
}
|
|
69592
|
+
| undefined
|
|
69593
|
+
space_name_updated?:
|
|
69594
|
+
| {
|
|
69595
|
+
rule: 'space_name_updated'
|
|
69596
|
+
config?: {} | undefined
|
|
69597
|
+
}
|
|
69598
|
+
| undefined
|
|
69599
|
+
user_identity_name_updated?:
|
|
69600
|
+
| {
|
|
69601
|
+
rule: 'user_identity_name_updated'
|
|
69602
|
+
config?: {} | undefined
|
|
69603
|
+
}
|
|
69604
|
+
| undefined
|
|
69605
|
+
staff_member_name_updated?:
|
|
69606
|
+
| {
|
|
69607
|
+
rule: 'staff_member_name_updated'
|
|
69608
|
+
config?: {} | undefined
|
|
69609
|
+
}
|
|
69610
|
+
| undefined
|
|
69611
|
+
staff_member_created?:
|
|
69612
|
+
| {
|
|
69613
|
+
rule: 'staff_member_created'
|
|
69614
|
+
config: {}
|
|
69615
|
+
}
|
|
69616
|
+
| undefined
|
|
69617
|
+
}
|
|
69618
|
+
| undefined
|
|
69619
|
+
/** Climate automation rules configuration. */
|
|
69620
|
+
climate_rules?:
|
|
69621
|
+
| {
|
|
69622
|
+
rules?:
|
|
69623
|
+
| {
|
|
69624
|
+
reservation_created?:
|
|
69625
|
+
| {
|
|
69626
|
+
occupied_preset_key?: string | undefined
|
|
69627
|
+
automated_occupied_preset?:
|
|
69628
|
+
| {
|
|
69629
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
69630
|
+
heating_set_point_celsius?: number | undefined
|
|
69631
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
69632
|
+
cooling_set_point_celsius?: number | undefined
|
|
69633
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
69634
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
69635
|
+
is_override_allowed: boolean
|
|
69636
|
+
max_override_period_minutes: number
|
|
69637
|
+
}
|
|
69638
|
+
| undefined
|
|
69639
|
+
unoccupied_preset_key?: string | undefined
|
|
69640
|
+
automated_unoccupied_preset?:
|
|
69641
|
+
| {
|
|
69642
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
69643
|
+
heating_set_point_celsius?: number | undefined
|
|
69644
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
69645
|
+
cooling_set_point_celsius?: number | undefined
|
|
69646
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
69647
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
69648
|
+
is_override_allowed: boolean
|
|
69649
|
+
max_override_period_minutes: number
|
|
69650
|
+
}
|
|
69651
|
+
| undefined
|
|
69652
|
+
precondition_minutes_before_reservation?:
|
|
69653
|
+
| number
|
|
69654
|
+
| undefined
|
|
69655
|
+
}
|
|
69656
|
+
| undefined
|
|
69657
|
+
reservation_time_updated?: {} | undefined
|
|
69658
|
+
reservation_deleted?: {} | undefined
|
|
69659
|
+
}
|
|
69660
|
+
| undefined
|
|
69661
|
+
}
|
|
69662
|
+
| undefined
|
|
69663
|
+
}
|
|
69664
|
+
commonParams: {}
|
|
69665
|
+
formData: {}
|
|
69666
|
+
jsonResponse: {}
|
|
69667
|
+
maxDuration: undefined
|
|
69668
|
+
}
|
|
69300
69669
|
'/seam/customer/v1/customers/list': {
|
|
69301
69670
|
route: '/seam/customer/v1/customers/list'
|
|
69302
69671
|
method: 'GET' | 'POST'
|
|
@@ -99801,6 +100170,18 @@ export type Routes = {
|
|
|
99801
100170
|
acs_access_group_id: string | null
|
|
99802
100171
|
}
|
|
99803
100172
|
}
|
|
100173
|
+
| {
|
|
100174
|
+
/** Date and time at which the mutation was created. */
|
|
100175
|
+
created_at: string
|
|
100176
|
+
/** Detailed description of the mutation. */
|
|
100177
|
+
message: string
|
|
100178
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
100179
|
+
mutation_code: 'deferring_group_membership_update'
|
|
100180
|
+
/** ID of the access group involved in the scheduled change. */
|
|
100181
|
+
acs_access_group_id: string
|
|
100182
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
100183
|
+
variant: 'adding' | 'removing'
|
|
100184
|
+
}
|
|
99804
100185
|
)[]
|
|
99805
100186
|
| undefined
|
|
99806
100187
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -102680,6 +103061,18 @@ export type Routes = {
|
|
|
102680
103061
|
acs_access_group_id: string | null
|
|
102681
103062
|
}
|
|
102682
103063
|
}
|
|
103064
|
+
| {
|
|
103065
|
+
/** Date and time at which the mutation was created. */
|
|
103066
|
+
created_at: string
|
|
103067
|
+
/** Detailed description of the mutation. */
|
|
103068
|
+
message: string
|
|
103069
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
103070
|
+
mutation_code: 'deferring_group_membership_update'
|
|
103071
|
+
/** ID of the access group involved in the scheduled change. */
|
|
103072
|
+
acs_access_group_id: string
|
|
103073
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
103074
|
+
variant: 'adding' | 'removing'
|
|
103075
|
+
}
|
|
102683
103076
|
)[]
|
|
102684
103077
|
| undefined
|
|
102685
103078
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -102870,6 +103263,18 @@ export type Routes = {
|
|
|
102870
103263
|
acs_entrance_id: string | null
|
|
102871
103264
|
}
|
|
102872
103265
|
}
|
|
103266
|
+
| {
|
|
103267
|
+
/** Date and time at which the mutation was created. */
|
|
103268
|
+
created_at: string
|
|
103269
|
+
/** Detailed description of the mutation. */
|
|
103270
|
+
message: string
|
|
103271
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
103272
|
+
mutation_code: 'deferring_user_membership_update'
|
|
103273
|
+
/** ID of the user involved in the scheduled change. */
|
|
103274
|
+
acs_user_id: string
|
|
103275
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
103276
|
+
variant: 'adding' | 'removing'
|
|
103277
|
+
}
|
|
102873
103278
|
)[]
|
|
102874
103279
|
is_managed: true
|
|
102875
103280
|
}[]
|
|
@@ -104635,6 +105040,18 @@ export type Routes = {
|
|
|
104635
105040
|
acs_access_group_id: string | null
|
|
104636
105041
|
}
|
|
104637
105042
|
}
|
|
105043
|
+
| {
|
|
105044
|
+
/** Date and time at which the mutation was created. */
|
|
105045
|
+
created_at: string
|
|
105046
|
+
/** Detailed description of the mutation. */
|
|
105047
|
+
message: string
|
|
105048
|
+
/** Mutation code to indicate that a scheduled access group membership change is pending for this user. */
|
|
105049
|
+
mutation_code: 'deferring_group_membership_update'
|
|
105050
|
+
/** ID of the access group involved in the scheduled change. */
|
|
105051
|
+
acs_access_group_id: string
|
|
105052
|
+
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
105053
|
+
variant: 'adding' | 'removing'
|
|
105054
|
+
}
|
|
104638
105055
|
)[]
|
|
104639
105056
|
| undefined
|
|
104640
105057
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -104825,6 +105242,18 @@ export type Routes = {
|
|
|
104825
105242
|
acs_entrance_id: string | null
|
|
104826
105243
|
}
|
|
104827
105244
|
}
|
|
105245
|
+
| {
|
|
105246
|
+
/** Date and time at which the mutation was created. */
|
|
105247
|
+
created_at: string
|
|
105248
|
+
/** Detailed description of the mutation. */
|
|
105249
|
+
message: string
|
|
105250
|
+
/** Mutation code to indicate that a scheduled user membership change is pending for this access group. */
|
|
105251
|
+
mutation_code: 'deferring_user_membership_update'
|
|
105252
|
+
/** ID of the user involved in the scheduled change. */
|
|
105253
|
+
acs_user_id: string
|
|
105254
|
+
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
105255
|
+
variant: 'adding' | 'removing'
|
|
105256
|
+
}
|
|
104828
105257
|
)[]
|
|
104829
105258
|
is_managed: false
|
|
104830
105259
|
}[]
|