@seamapi/types 1.364.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 +1007 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2441 -178
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -2
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +2 -2
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- 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} +10 -4
- 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/connected-accounts/connected-account.js +1 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +1 -2
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/locations/index.d.ts +1 -0
- package/lib/seam/connect/models/locations/index.js +2 -0
- package/lib/seam/connect/models/locations/index.js.map +1 -0
- package/lib/seam/connect/models/locations/location.d.ts +49 -0
- package/lib/seam/connect/models/locations/location.js +25 -0
- package/lib/seam/connect/models/locations/location.js.map +1 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +1271 -36
- package/lib/seam/connect/openapi.js +955 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +506 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
- package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +10 -4
- 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/models/connected-accounts/connected-account.ts +1 -2
- package/src/lib/seam/connect/models/devices/device.ts +1 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/location.ts +30 -0
- package/src/lib/seam/connect/openapi.ts +976 -0
- package/src/lib/seam/connect/route-types.ts +567 -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
|
/**
|
|
@@ -17999,6 +18329,8 @@ export interface Routes {
|
|
|
17999
18329
|
| 'can_simulate_disconnection'
|
|
18000
18330
|
>
|
|
18001
18331
|
| undefined
|
|
18332
|
+
/** */
|
|
18333
|
+
unstable_location_id?: (string | null) | undefined
|
|
18002
18334
|
}
|
|
18003
18335
|
formData: {}
|
|
18004
18336
|
jsonResponse: {
|
|
@@ -19561,6 +19893,8 @@ export interface Routes {
|
|
|
19561
19893
|
| 'can_simulate_disconnection'
|
|
19562
19894
|
>
|
|
19563
19895
|
| undefined
|
|
19896
|
+
/** */
|
|
19897
|
+
unstable_location_id?: (string | null) | undefined
|
|
19564
19898
|
}
|
|
19565
19899
|
formData: {}
|
|
19566
19900
|
jsonResponse: {
|
|
@@ -24797,6 +25131,8 @@ export interface Routes {
|
|
|
24797
25131
|
| 'can_simulate_disconnection'
|
|
24798
25132
|
>
|
|
24799
25133
|
| undefined
|
|
25134
|
+
/** */
|
|
25135
|
+
unstable_location_id?: (string | null) | undefined
|
|
24800
25136
|
}
|
|
24801
25137
|
formData: {}
|
|
24802
25138
|
jsonResponse: {
|
|
@@ -28950,6 +29286,8 @@ export interface Routes {
|
|
|
28950
29286
|
| 'can_simulate_disconnection'
|
|
28951
29287
|
>
|
|
28952
29288
|
| undefined
|
|
29289
|
+
/** */
|
|
29290
|
+
unstable_location_id?: (string | null) | undefined
|
|
28953
29291
|
}
|
|
28954
29292
|
formData: {}
|
|
28955
29293
|
jsonResponse: {
|
|
@@ -39743,6 +40081,8 @@ export interface Routes {
|
|
|
39743
40081
|
| 'can_simulate_disconnection'
|
|
39744
40082
|
>
|
|
39745
40083
|
| undefined
|
|
40084
|
+
/** */
|
|
40085
|
+
unstable_location_id?: (string | null) | undefined
|
|
39746
40086
|
}
|
|
39747
40087
|
formData: {}
|
|
39748
40088
|
jsonResponse: {
|
|
@@ -45085,6 +45425,178 @@ export interface Routes {
|
|
|
45085
45425
|
formData: {}
|
|
45086
45426
|
jsonResponse: {}
|
|
45087
45427
|
}
|
|
45428
|
+
'/unstable_locations/add_devices': {
|
|
45429
|
+
route: '/unstable_locations/add_devices'
|
|
45430
|
+
method: 'POST'
|
|
45431
|
+
queryParams: {}
|
|
45432
|
+
jsonBody: {
|
|
45433
|
+
location_id: string
|
|
45434
|
+
device_ids: string[]
|
|
45435
|
+
}
|
|
45436
|
+
commonParams: {}
|
|
45437
|
+
formData: {}
|
|
45438
|
+
jsonResponse: {}
|
|
45439
|
+
}
|
|
45440
|
+
'/unstable_locations/create': {
|
|
45441
|
+
route: '/unstable_locations/create'
|
|
45442
|
+
method: 'POST'
|
|
45443
|
+
queryParams: {}
|
|
45444
|
+
jsonBody: {
|
|
45445
|
+
name: string
|
|
45446
|
+
geolocation?:
|
|
45447
|
+
| {
|
|
45448
|
+
latitude: number
|
|
45449
|
+
longitude: number
|
|
45450
|
+
}
|
|
45451
|
+
| undefined
|
|
45452
|
+
time_zone?: string | undefined
|
|
45453
|
+
}
|
|
45454
|
+
commonParams: {}
|
|
45455
|
+
formData: {}
|
|
45456
|
+
jsonResponse: {
|
|
45457
|
+
location: {
|
|
45458
|
+
/** Unique identifier for the location. */
|
|
45459
|
+
location_id: string
|
|
45460
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
45461
|
+
workspace_id: string
|
|
45462
|
+
/** Display name of the location. */
|
|
45463
|
+
display_name: string
|
|
45464
|
+
/** Geographical location of the location. */
|
|
45465
|
+
geolocation?:
|
|
45466
|
+
| {
|
|
45467
|
+
latitude: number
|
|
45468
|
+
longitude: number
|
|
45469
|
+
}
|
|
45470
|
+
| undefined
|
|
45471
|
+
/** Time zone of the location. */
|
|
45472
|
+
time_zone?: string | undefined
|
|
45473
|
+
/** Date and time at which the location object was created. */
|
|
45474
|
+
created_at: string
|
|
45475
|
+
}
|
|
45476
|
+
}
|
|
45477
|
+
}
|
|
45478
|
+
'/unstable_locations/delete': {
|
|
45479
|
+
route: '/unstable_locations/delete'
|
|
45480
|
+
method: 'DELETE' | 'POST'
|
|
45481
|
+
queryParams: {}
|
|
45482
|
+
jsonBody: {
|
|
45483
|
+
location_id: string
|
|
45484
|
+
}
|
|
45485
|
+
commonParams: {}
|
|
45486
|
+
formData: {}
|
|
45487
|
+
jsonResponse: {}
|
|
45488
|
+
}
|
|
45489
|
+
'/unstable_locations/get': {
|
|
45490
|
+
route: '/unstable_locations/get'
|
|
45491
|
+
method: 'GET' | 'POST'
|
|
45492
|
+
queryParams: {}
|
|
45493
|
+
jsonBody: {}
|
|
45494
|
+
commonParams: {
|
|
45495
|
+
location_id: string
|
|
45496
|
+
}
|
|
45497
|
+
formData: {}
|
|
45498
|
+
jsonResponse: {
|
|
45499
|
+
location: {
|
|
45500
|
+
/** Unique identifier for the location. */
|
|
45501
|
+
location_id: string
|
|
45502
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
45503
|
+
workspace_id: string
|
|
45504
|
+
/** Display name of the location. */
|
|
45505
|
+
display_name: string
|
|
45506
|
+
/** Geographical location of the location. */
|
|
45507
|
+
geolocation?:
|
|
45508
|
+
| {
|
|
45509
|
+
latitude: number
|
|
45510
|
+
longitude: number
|
|
45511
|
+
}
|
|
45512
|
+
| undefined
|
|
45513
|
+
/** Time zone of the location. */
|
|
45514
|
+
time_zone?: string | undefined
|
|
45515
|
+
/** Date and time at which the location object was created. */
|
|
45516
|
+
created_at: string
|
|
45517
|
+
}
|
|
45518
|
+
}
|
|
45519
|
+
}
|
|
45520
|
+
'/unstable_locations/list': {
|
|
45521
|
+
route: '/unstable_locations/list'
|
|
45522
|
+
method: 'GET' | 'POST'
|
|
45523
|
+
queryParams: {}
|
|
45524
|
+
jsonBody: {}
|
|
45525
|
+
commonParams: {}
|
|
45526
|
+
formData: {}
|
|
45527
|
+
jsonResponse: {
|
|
45528
|
+
locations: Array<{
|
|
45529
|
+
/** Unique identifier for the location. */
|
|
45530
|
+
location_id: string
|
|
45531
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
45532
|
+
workspace_id: string
|
|
45533
|
+
/** Display name of the location. */
|
|
45534
|
+
display_name: string
|
|
45535
|
+
/** Geographical location of the location. */
|
|
45536
|
+
geolocation?:
|
|
45537
|
+
| {
|
|
45538
|
+
latitude: number
|
|
45539
|
+
longitude: number
|
|
45540
|
+
}
|
|
45541
|
+
| undefined
|
|
45542
|
+
/** Time zone of the location. */
|
|
45543
|
+
time_zone?: string | undefined
|
|
45544
|
+
/** Date and time at which the location object was created. */
|
|
45545
|
+
created_at: string
|
|
45546
|
+
}>
|
|
45547
|
+
}
|
|
45548
|
+
}
|
|
45549
|
+
'/unstable_locations/remove_devices': {
|
|
45550
|
+
route: '/unstable_locations/remove_devices'
|
|
45551
|
+
method: 'POST'
|
|
45552
|
+
queryParams: {}
|
|
45553
|
+
jsonBody: {
|
|
45554
|
+
location_id: string
|
|
45555
|
+
device_ids: string[]
|
|
45556
|
+
}
|
|
45557
|
+
commonParams: {}
|
|
45558
|
+
formData: {}
|
|
45559
|
+
jsonResponse: {}
|
|
45560
|
+
}
|
|
45561
|
+
'/unstable_locations/update': {
|
|
45562
|
+
route: '/unstable_locations/update'
|
|
45563
|
+
method: 'POST'
|
|
45564
|
+
queryParams: {}
|
|
45565
|
+
jsonBody: {
|
|
45566
|
+
location_id: string
|
|
45567
|
+
name?: string | undefined
|
|
45568
|
+
geolocation?:
|
|
45569
|
+
| {
|
|
45570
|
+
latitude: number
|
|
45571
|
+
longitude: number
|
|
45572
|
+
}
|
|
45573
|
+
| undefined
|
|
45574
|
+
time_zone?: string | undefined
|
|
45575
|
+
}
|
|
45576
|
+
commonParams: {}
|
|
45577
|
+
formData: {}
|
|
45578
|
+
jsonResponse: {
|
|
45579
|
+
location: {
|
|
45580
|
+
/** Unique identifier for the location. */
|
|
45581
|
+
location_id: string
|
|
45582
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
45583
|
+
workspace_id: string
|
|
45584
|
+
/** Display name of the location. */
|
|
45585
|
+
display_name: string
|
|
45586
|
+
/** Geographical location of the location. */
|
|
45587
|
+
geolocation?:
|
|
45588
|
+
| {
|
|
45589
|
+
latitude: number
|
|
45590
|
+
longitude: number
|
|
45591
|
+
}
|
|
45592
|
+
| undefined
|
|
45593
|
+
/** Time zone of the location. */
|
|
45594
|
+
time_zone?: string | undefined
|
|
45595
|
+
/** Date and time at which the location object was created. */
|
|
45596
|
+
created_at: string
|
|
45597
|
+
}
|
|
45598
|
+
}
|
|
45599
|
+
}
|
|
45088
45600
|
'/user_identities/add_acs_user': {
|
|
45089
45601
|
route: '/user_identities/add_acs_user'
|
|
45090
45602
|
method: 'POST' | 'PUT'
|
|
@@ -47441,6 +47953,61 @@ export interface Routes {
|
|
|
47441
47953
|
error_code: 'failed_to_delete_on_acs_system'
|
|
47442
47954
|
}
|
|
47443
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
|
|
47444
48011
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
47445
48012
|
full_name?: string | undefined
|
|
47446
48013
|
/**
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;IACZ,0BAA0B;IAC1B,kBAAkB;CACnB,CAAC,CAAA;AAIF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,4BAA4B,GAAG,qBAAqB;KACvD,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC;CAC5C,CAAC;KACD,QAAQ,CACP,yOAAyO,CAC1O,CAAA;AAEH,MAAM,8CAA8C,GAAG,qBAAqB;KACzE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;CAC9D,CAAC;KACD,QAAQ,CACP,mMAAmM,CACpM,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,+TAA+T,CAChU,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,+TAA+T,CAChU,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,+TAA+T,CAChU,CAAA;AAEH,MAAM,eAAe,GAAG,CAAC;KACtB,kBAAkB,CAAC,YAAY,EAAE;IAChC,4BAA4B;IAC5B,8CAA8C;IAC9C,wCAAwC;IACxC,wCAAwC;IACxC,wCAAwC;CACzC,CAAC;KACD,QAAQ,CACP,sHAAsH,CACvH,CAAA;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,kBAAkB,EAAE,4BAA4B,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtE,oCAAoC,EAClC,8CAA8C,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtE,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAIF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,uBAAuB,GAAG,uBAAuB;KACpD,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC;CACzC,CAAC;KACD,QAAQ,CACP,mSAAmS,CACpS,CAAA;AAEH,MAAM,sCAAsC,GAAG,uBAAuB;KACnE,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,8BAA8B,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,wZAAwZ,CACzZ,CAAA;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,uBAAuB;KAC/D,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,6BAA6B,CAAC;CACvD,CAAC;KACD,QAAQ,CACP,wKAAwK;IACtK,4DAA4D,CAC/D,CAAA;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,uBAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC5D,4BAA4B,EAAE,sCAAsC;SACjE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,2BAA2B,EAAE,2BAA2B;SACrD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,kBAAkB,CAAC,cAAc,EAAE;IAClC,uBAAuB;IACvB,sCAAsC;IACtC,2BAA2B;CAC5B,CAAC;KACD,QAAQ,CACP,wHAAwH,CACzH,CAAA;AAIH,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yDAAyD,CAAC;IACtE,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;CAC1E,CAAC,CAAA;AAEF,MAAM,sCAAsC,GAAG,4BAA4B;KACxE,MAAM,CAAC;IACN,iBAAiB,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;CACjD,CAAC;KACD,QAAQ,CACP,+RAA+R,CAChS,CAAA;AAEH,MAAM,6BAA6B,GAAG,4BAA4B;KAC/D,MAAM,CAAC;IACN,iBAAiB,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC;CACxC,CAAC;KACD,QAAQ,CACP,gTAAgT,CACjT,CAAA;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1D,gBAAgB,EAAE,sCAAsC;SACrD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,OAAO,EAAE,6BAA6B,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC7D,CAAC,CAAA;AAMF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,4GAA4G,CAC7G;IACH,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IACJ,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CACP,gHAAgH,CACjH;IACH,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,CACP,6JAA6J,CAC9J;CACJ,CAAC,CAAA;AAEF,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,qGAAqG,CACtG;IACH,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6MAA6M,CAC9M;IACH,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,yLAAyL,CAC1L;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,kIAAkI,CACnI;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,gHAAgH,CACjH;IACH,aAAa,EAAE,sBAAsB;SAClC,QAAQ,EAAE;SACV,QAAQ,CACP,mIAAmI,CACpI;IACH,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,wKAAwK,CACzK;IACH,YAAY,EAAE,CAAC;SACZ,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,0PAA0P,CAC3P;IACH,eAAe,EAAE,QAAQ;SACtB,QAAQ,EAAE;SACV,QAAQ,CACP,iJAAiJ,CAClJ;IACH,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,uIAAuI,CACxI;IACH,uBAAuB,EAAE,CAAC;SACvB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,8IAA8I,CAC/I;IACH,2BAA2B,EAAE,CAAC;SAC3B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,kJAAkJ,CACnJ;IACH,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,+LAA+L,CAChM;IACH,4CAA4C,EAAE,CAAC;SAC5C,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;OAIpB,CAAC;IACJ,4CAA4C,EAAE,CAAC;SAC5C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;OAIpB,CAAC;IACJ,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CACP,wHAAwH,CACzH;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,eAAe,CAAC;SACtB,QAAQ,CACP,sHAAsH,CACvH;CACJ,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA;AAErB,MAAM,CAAC,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,CAC3C,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CACH,CAAC,QAAQ,CAAC;;;;;CAKV,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,eAAe,CAAC,KAAK,CACrD,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CACH,CAAC,QAAQ,CAAC;;;;;CAKV,CAAC,CAAA"}
|