@seamapi/types 1.365.0 → 1.366.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 +370 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1304 -14
- package/lib/seam/connect/models/acs/{acs-user.d.ts → acs-users/acs-user.d.ts} +540 -18
- package/lib/seam/connect/models/acs/{acs-user.js → acs-users/acs-user.js} +9 -2
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-users/index.d.ts +2 -0
- package/lib/seam/connect/models/acs/acs-users/index.js +3 -0
- package/lib/seam/connect/models/acs/acs-users/index.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +176 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +42 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -0
- package/lib/seam/connect/models/acs/index.d.ts +1 -1
- package/lib/seam/connect/models/acs/index.js +1 -1
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +432 -0
- package/lib/seam/connect/openapi.js +320 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +336 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +9 -2
- package/src/lib/seam/connect/models/acs/acs-users/index.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +56 -0
- package/src/lib/seam/connect/models/acs/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +328 -0
- package/src/lib/seam/connect/route-types.ts +385 -0
- package/lib/seam/connect/models/acs/acs-user.js.map +0 -1
|
@@ -8239,6 +8239,61 @@ export interface Routes {
|
|
|
8239
8239
|
error_code: 'failed_to_delete_on_acs_system'
|
|
8240
8240
|
}
|
|
8241
8241
|
>
|
|
8242
|
+
/** */
|
|
8243
|
+
pending_modifications?:
|
|
8244
|
+
| Array<
|
|
8245
|
+
| {
|
|
8246
|
+
created_at: string
|
|
8247
|
+
modification_code: 'profile'
|
|
8248
|
+
modified_from: {
|
|
8249
|
+
email_address?: (string | null) | undefined
|
|
8250
|
+
full_name?: (string | null) | undefined
|
|
8251
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
8252
|
+
}
|
|
8253
|
+
modified_to: {
|
|
8254
|
+
email_address?: (string | null) | undefined
|
|
8255
|
+
full_name?: (string | null) | undefined
|
|
8256
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
8257
|
+
}
|
|
8258
|
+
}
|
|
8259
|
+
| {
|
|
8260
|
+
created_at: string
|
|
8261
|
+
modification_code: 'access_schedule'
|
|
8262
|
+
modified_from: {
|
|
8263
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8264
|
+
starts_at: string
|
|
8265
|
+
/** 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. */
|
|
8266
|
+
ends_at: string | null
|
|
8267
|
+
}
|
|
8268
|
+
modified_to: {
|
|
8269
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8270
|
+
starts_at: string
|
|
8271
|
+
/** 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. */
|
|
8272
|
+
ends_at: string | null
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8275
|
+
| {
|
|
8276
|
+
created_at: string
|
|
8277
|
+
modification_code: 'suspension_state'
|
|
8278
|
+
modified_from: {
|
|
8279
|
+
is_suspended: boolean
|
|
8280
|
+
}
|
|
8281
|
+
modified_to: {
|
|
8282
|
+
is_suspended: boolean
|
|
8283
|
+
}
|
|
8284
|
+
}
|
|
8285
|
+
| {
|
|
8286
|
+
created_at: string
|
|
8287
|
+
modification_code: 'acs_access_group_membership'
|
|
8288
|
+
modified_from: {
|
|
8289
|
+
acs_access_group_id: string | null
|
|
8290
|
+
}
|
|
8291
|
+
modified_to: {
|
|
8292
|
+
acs_access_group_id: string | null
|
|
8293
|
+
}
|
|
8294
|
+
}
|
|
8295
|
+
>
|
|
8296
|
+
| undefined
|
|
8242
8297
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
8243
8298
|
full_name?: string | undefined
|
|
8244
8299
|
/**
|
|
@@ -13290,6 +13345,61 @@ export interface Routes {
|
|
|
13290
13345
|
error_code: 'failed_to_delete_on_acs_system'
|
|
13291
13346
|
}
|
|
13292
13347
|
>
|
|
13348
|
+
/** */
|
|
13349
|
+
pending_modifications?:
|
|
13350
|
+
| Array<
|
|
13351
|
+
| {
|
|
13352
|
+
created_at: string
|
|
13353
|
+
modification_code: 'profile'
|
|
13354
|
+
modified_from: {
|
|
13355
|
+
email_address?: (string | null) | undefined
|
|
13356
|
+
full_name?: (string | null) | undefined
|
|
13357
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13358
|
+
}
|
|
13359
|
+
modified_to: {
|
|
13360
|
+
email_address?: (string | null) | undefined
|
|
13361
|
+
full_name?: (string | null) | undefined
|
|
13362
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13363
|
+
}
|
|
13364
|
+
}
|
|
13365
|
+
| {
|
|
13366
|
+
created_at: string
|
|
13367
|
+
modification_code: 'access_schedule'
|
|
13368
|
+
modified_from: {
|
|
13369
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13370
|
+
starts_at: string
|
|
13371
|
+
/** 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. */
|
|
13372
|
+
ends_at: string | null
|
|
13373
|
+
}
|
|
13374
|
+
modified_to: {
|
|
13375
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13376
|
+
starts_at: string
|
|
13377
|
+
/** 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. */
|
|
13378
|
+
ends_at: string | null
|
|
13379
|
+
}
|
|
13380
|
+
}
|
|
13381
|
+
| {
|
|
13382
|
+
created_at: string
|
|
13383
|
+
modification_code: 'suspension_state'
|
|
13384
|
+
modified_from: {
|
|
13385
|
+
is_suspended: boolean
|
|
13386
|
+
}
|
|
13387
|
+
modified_to: {
|
|
13388
|
+
is_suspended: boolean
|
|
13389
|
+
}
|
|
13390
|
+
}
|
|
13391
|
+
| {
|
|
13392
|
+
created_at: string
|
|
13393
|
+
modification_code: 'acs_access_group_membership'
|
|
13394
|
+
modified_from: {
|
|
13395
|
+
acs_access_group_id: string | null
|
|
13396
|
+
}
|
|
13397
|
+
modified_to: {
|
|
13398
|
+
acs_access_group_id: string | null
|
|
13399
|
+
}
|
|
13400
|
+
}
|
|
13401
|
+
>
|
|
13402
|
+
| undefined
|
|
13293
13403
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
13294
13404
|
full_name?: string | undefined
|
|
13295
13405
|
/**
|
|
@@ -13442,6 +13552,61 @@ export interface Routes {
|
|
|
13442
13552
|
error_code: 'failed_to_delete_on_acs_system'
|
|
13443
13553
|
}
|
|
13444
13554
|
>
|
|
13555
|
+
/** */
|
|
13556
|
+
pending_modifications?:
|
|
13557
|
+
| Array<
|
|
13558
|
+
| {
|
|
13559
|
+
created_at: string
|
|
13560
|
+
modification_code: 'profile'
|
|
13561
|
+
modified_from: {
|
|
13562
|
+
email_address?: (string | null) | undefined
|
|
13563
|
+
full_name?: (string | null) | undefined
|
|
13564
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13565
|
+
}
|
|
13566
|
+
modified_to: {
|
|
13567
|
+
email_address?: (string | null) | undefined
|
|
13568
|
+
full_name?: (string | null) | undefined
|
|
13569
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13570
|
+
}
|
|
13571
|
+
}
|
|
13572
|
+
| {
|
|
13573
|
+
created_at: string
|
|
13574
|
+
modification_code: 'access_schedule'
|
|
13575
|
+
modified_from: {
|
|
13576
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13577
|
+
starts_at: string
|
|
13578
|
+
/** 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. */
|
|
13579
|
+
ends_at: string | null
|
|
13580
|
+
}
|
|
13581
|
+
modified_to: {
|
|
13582
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13583
|
+
starts_at: string
|
|
13584
|
+
/** 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. */
|
|
13585
|
+
ends_at: string | null
|
|
13586
|
+
}
|
|
13587
|
+
}
|
|
13588
|
+
| {
|
|
13589
|
+
created_at: string
|
|
13590
|
+
modification_code: 'suspension_state'
|
|
13591
|
+
modified_from: {
|
|
13592
|
+
is_suspended: boolean
|
|
13593
|
+
}
|
|
13594
|
+
modified_to: {
|
|
13595
|
+
is_suspended: boolean
|
|
13596
|
+
}
|
|
13597
|
+
}
|
|
13598
|
+
| {
|
|
13599
|
+
created_at: string
|
|
13600
|
+
modification_code: 'acs_access_group_membership'
|
|
13601
|
+
modified_from: {
|
|
13602
|
+
acs_access_group_id: string | null
|
|
13603
|
+
}
|
|
13604
|
+
modified_to: {
|
|
13605
|
+
acs_access_group_id: string | null
|
|
13606
|
+
}
|
|
13607
|
+
}
|
|
13608
|
+
>
|
|
13609
|
+
| undefined
|
|
13445
13610
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
13446
13611
|
full_name?: string | undefined
|
|
13447
13612
|
/**
|
|
@@ -13594,6 +13759,61 @@ export interface Routes {
|
|
|
13594
13759
|
error_code: 'failed_to_delete_on_acs_system'
|
|
13595
13760
|
}
|
|
13596
13761
|
>
|
|
13762
|
+
/** */
|
|
13763
|
+
pending_modifications?:
|
|
13764
|
+
| Array<
|
|
13765
|
+
| {
|
|
13766
|
+
created_at: string
|
|
13767
|
+
modification_code: 'profile'
|
|
13768
|
+
modified_from: {
|
|
13769
|
+
email_address?: (string | null) | undefined
|
|
13770
|
+
full_name?: (string | null) | undefined
|
|
13771
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13772
|
+
}
|
|
13773
|
+
modified_to: {
|
|
13774
|
+
email_address?: (string | null) | undefined
|
|
13775
|
+
full_name?: (string | null) | undefined
|
|
13776
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
13777
|
+
}
|
|
13778
|
+
}
|
|
13779
|
+
| {
|
|
13780
|
+
created_at: string
|
|
13781
|
+
modification_code: 'access_schedule'
|
|
13782
|
+
modified_from: {
|
|
13783
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13784
|
+
starts_at: string
|
|
13785
|
+
/** 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. */
|
|
13786
|
+
ends_at: string | null
|
|
13787
|
+
}
|
|
13788
|
+
modified_to: {
|
|
13789
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13790
|
+
starts_at: string
|
|
13791
|
+
/** 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. */
|
|
13792
|
+
ends_at: string | null
|
|
13793
|
+
}
|
|
13794
|
+
}
|
|
13795
|
+
| {
|
|
13796
|
+
created_at: string
|
|
13797
|
+
modification_code: 'suspension_state'
|
|
13798
|
+
modified_from: {
|
|
13799
|
+
is_suspended: boolean
|
|
13800
|
+
}
|
|
13801
|
+
modified_to: {
|
|
13802
|
+
is_suspended: boolean
|
|
13803
|
+
}
|
|
13804
|
+
}
|
|
13805
|
+
| {
|
|
13806
|
+
created_at: string
|
|
13807
|
+
modification_code: 'acs_access_group_membership'
|
|
13808
|
+
modified_from: {
|
|
13809
|
+
acs_access_group_id: string | null
|
|
13810
|
+
}
|
|
13811
|
+
modified_to: {
|
|
13812
|
+
acs_access_group_id: string | null
|
|
13813
|
+
}
|
|
13814
|
+
}
|
|
13815
|
+
>
|
|
13816
|
+
| undefined
|
|
13597
13817
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
13598
13818
|
full_name?: string | undefined
|
|
13599
13819
|
/**
|
|
@@ -13878,6 +14098,61 @@ export interface Routes {
|
|
|
13878
14098
|
error_code: 'failed_to_delete_on_acs_system'
|
|
13879
14099
|
}
|
|
13880
14100
|
>
|
|
14101
|
+
/** */
|
|
14102
|
+
pending_modifications?:
|
|
14103
|
+
| Array<
|
|
14104
|
+
| {
|
|
14105
|
+
created_at: string
|
|
14106
|
+
modification_code: 'profile'
|
|
14107
|
+
modified_from: {
|
|
14108
|
+
email_address?: (string | null) | undefined
|
|
14109
|
+
full_name?: (string | null) | undefined
|
|
14110
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
14111
|
+
}
|
|
14112
|
+
modified_to: {
|
|
14113
|
+
email_address?: (string | null) | undefined
|
|
14114
|
+
full_name?: (string | null) | undefined
|
|
14115
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
14116
|
+
}
|
|
14117
|
+
}
|
|
14118
|
+
| {
|
|
14119
|
+
created_at: string
|
|
14120
|
+
modification_code: 'access_schedule'
|
|
14121
|
+
modified_from: {
|
|
14122
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14123
|
+
starts_at: string
|
|
14124
|
+
/** 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. */
|
|
14125
|
+
ends_at: string | null
|
|
14126
|
+
}
|
|
14127
|
+
modified_to: {
|
|
14128
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14129
|
+
starts_at: string
|
|
14130
|
+
/** 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. */
|
|
14131
|
+
ends_at: string | null
|
|
14132
|
+
}
|
|
14133
|
+
}
|
|
14134
|
+
| {
|
|
14135
|
+
created_at: string
|
|
14136
|
+
modification_code: 'suspension_state'
|
|
14137
|
+
modified_from: {
|
|
14138
|
+
is_suspended: boolean
|
|
14139
|
+
}
|
|
14140
|
+
modified_to: {
|
|
14141
|
+
is_suspended: boolean
|
|
14142
|
+
}
|
|
14143
|
+
}
|
|
14144
|
+
| {
|
|
14145
|
+
created_at: string
|
|
14146
|
+
modification_code: 'acs_access_group_membership'
|
|
14147
|
+
modified_from: {
|
|
14148
|
+
acs_access_group_id: string | null
|
|
14149
|
+
}
|
|
14150
|
+
modified_to: {
|
|
14151
|
+
acs_access_group_id: string | null
|
|
14152
|
+
}
|
|
14153
|
+
}
|
|
14154
|
+
>
|
|
14155
|
+
| undefined
|
|
13881
14156
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
13882
14157
|
full_name?: string | undefined
|
|
13883
14158
|
/**
|
|
@@ -14020,6 +14295,61 @@ export interface Routes {
|
|
|
14020
14295
|
error_code: 'failed_to_delete_on_acs_system'
|
|
14021
14296
|
}
|
|
14022
14297
|
>
|
|
14298
|
+
/** */
|
|
14299
|
+
pending_modifications?:
|
|
14300
|
+
| Array<
|
|
14301
|
+
| {
|
|
14302
|
+
created_at: string
|
|
14303
|
+
modification_code: 'profile'
|
|
14304
|
+
modified_from: {
|
|
14305
|
+
email_address?: (string | null) | undefined
|
|
14306
|
+
full_name?: (string | null) | undefined
|
|
14307
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
14308
|
+
}
|
|
14309
|
+
modified_to: {
|
|
14310
|
+
email_address?: (string | null) | undefined
|
|
14311
|
+
full_name?: (string | null) | undefined
|
|
14312
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
14313
|
+
}
|
|
14314
|
+
}
|
|
14315
|
+
| {
|
|
14316
|
+
created_at: string
|
|
14317
|
+
modification_code: 'access_schedule'
|
|
14318
|
+
modified_from: {
|
|
14319
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14320
|
+
starts_at: string
|
|
14321
|
+
/** 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. */
|
|
14322
|
+
ends_at: string | null
|
|
14323
|
+
}
|
|
14324
|
+
modified_to: {
|
|
14325
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14326
|
+
starts_at: string
|
|
14327
|
+
/** 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. */
|
|
14328
|
+
ends_at: string | null
|
|
14329
|
+
}
|
|
14330
|
+
}
|
|
14331
|
+
| {
|
|
14332
|
+
created_at: string
|
|
14333
|
+
modification_code: 'suspension_state'
|
|
14334
|
+
modified_from: {
|
|
14335
|
+
is_suspended: boolean
|
|
14336
|
+
}
|
|
14337
|
+
modified_to: {
|
|
14338
|
+
is_suspended: boolean
|
|
14339
|
+
}
|
|
14340
|
+
}
|
|
14341
|
+
| {
|
|
14342
|
+
created_at: string
|
|
14343
|
+
modification_code: 'acs_access_group_membership'
|
|
14344
|
+
modified_from: {
|
|
14345
|
+
acs_access_group_id: string | null
|
|
14346
|
+
}
|
|
14347
|
+
modified_to: {
|
|
14348
|
+
acs_access_group_id: string | null
|
|
14349
|
+
}
|
|
14350
|
+
}
|
|
14351
|
+
>
|
|
14352
|
+
| undefined
|
|
14023
14353
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
14024
14354
|
full_name?: string | undefined
|
|
14025
14355
|
/**
|
|
@@ -47623,6 +47953,61 @@ export interface Routes {
|
|
|
47623
47953
|
error_code: 'failed_to_delete_on_acs_system'
|
|
47624
47954
|
}
|
|
47625
47955
|
>
|
|
47956
|
+
/** */
|
|
47957
|
+
pending_modifications?:
|
|
47958
|
+
| Array<
|
|
47959
|
+
| {
|
|
47960
|
+
created_at: string
|
|
47961
|
+
modification_code: 'profile'
|
|
47962
|
+
modified_from: {
|
|
47963
|
+
email_address?: (string | null) | undefined
|
|
47964
|
+
full_name?: (string | null) | undefined
|
|
47965
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
47966
|
+
}
|
|
47967
|
+
modified_to: {
|
|
47968
|
+
email_address?: (string | null) | undefined
|
|
47969
|
+
full_name?: (string | null) | undefined
|
|
47970
|
+
phone_number?: ((string | undefined) | null) | undefined
|
|
47971
|
+
}
|
|
47972
|
+
}
|
|
47973
|
+
| {
|
|
47974
|
+
created_at: string
|
|
47975
|
+
modification_code: 'access_schedule'
|
|
47976
|
+
modified_from: {
|
|
47977
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47978
|
+
starts_at: string
|
|
47979
|
+
/** 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. */
|
|
47980
|
+
ends_at: string | null
|
|
47981
|
+
}
|
|
47982
|
+
modified_to: {
|
|
47983
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47984
|
+
starts_at: string
|
|
47985
|
+
/** 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. */
|
|
47986
|
+
ends_at: string | null
|
|
47987
|
+
}
|
|
47988
|
+
}
|
|
47989
|
+
| {
|
|
47990
|
+
created_at: string
|
|
47991
|
+
modification_code: 'suspension_state'
|
|
47992
|
+
modified_from: {
|
|
47993
|
+
is_suspended: boolean
|
|
47994
|
+
}
|
|
47995
|
+
modified_to: {
|
|
47996
|
+
is_suspended: boolean
|
|
47997
|
+
}
|
|
47998
|
+
}
|
|
47999
|
+
| {
|
|
48000
|
+
created_at: string
|
|
48001
|
+
modification_code: 'acs_access_group_membership'
|
|
48002
|
+
modified_from: {
|
|
48003
|
+
acs_access_group_id: string | null
|
|
48004
|
+
}
|
|
48005
|
+
modified_to: {
|
|
48006
|
+
acs_access_group_id: string | null
|
|
48007
|
+
}
|
|
48008
|
+
}
|
|
48009
|
+
>
|
|
48010
|
+
| undefined
|
|
47626
48011
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
47627
48012
|
full_name?: string | undefined
|
|
47628
48013
|
/**
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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"}
|