@seamapi/types 1.584.0 → 1.586.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 +2837 -396
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3265 -623
- package/dist/index.cjs +2837 -396
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +99 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +13 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +59 -0
- package/lib/seam/connect/models/access-grants/access-method.js +12 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +109 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +10 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2924 -623
- package/lib/seam/connect/openapi.js +3415 -1006
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +3 -0
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +16 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +15 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +3411 -738
- package/src/lib/seam/connect/route-types.ts +351 -0
|
@@ -13547,6 +13547,131 @@ export type Routes = {
|
|
|
13547
13547
|
}[]
|
|
13548
13548
|
}
|
|
13549
13549
|
}
|
|
13550
|
+
'/access_grants/unmanaged/get': {
|
|
13551
|
+
route: '/access_grants/unmanaged/get'
|
|
13552
|
+
method: 'GET' | 'POST'
|
|
13553
|
+
queryParams: {}
|
|
13554
|
+
jsonBody: {}
|
|
13555
|
+
commonParams: {
|
|
13556
|
+
/** ID of unmanaged Access Grant to get. */
|
|
13557
|
+
access_grant_id: string
|
|
13558
|
+
}
|
|
13559
|
+
formData: {}
|
|
13560
|
+
jsonResponse: {
|
|
13561
|
+
/** Represents an unmanaged Access Grant. Unmanaged Access Grants do not have client sessions, instant keys, customization profiles, or keys. */
|
|
13562
|
+
access_grant: {
|
|
13563
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
13564
|
+
workspace_id: string
|
|
13565
|
+
/** ID of the Access Grant. */
|
|
13566
|
+
access_grant_id: string
|
|
13567
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
13568
|
+
user_identity_id: string
|
|
13569
|
+
/**
|
|
13570
|
+
* @deprecated Use `space_ids`.*/
|
|
13571
|
+
location_ids: string[]
|
|
13572
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
13573
|
+
space_ids: string[]
|
|
13574
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
13575
|
+
requested_access_methods: {
|
|
13576
|
+
/** Display name of the access method. */
|
|
13577
|
+
display_name: string
|
|
13578
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
13579
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
13580
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
13581
|
+
code?: string | undefined
|
|
13582
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
13583
|
+
created_at: string
|
|
13584
|
+
/** IDs of the access methods created for the requested access method. */
|
|
13585
|
+
created_access_method_ids: string[]
|
|
13586
|
+
}[]
|
|
13587
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
13588
|
+
access_method_ids: string[]
|
|
13589
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
13590
|
+
name: string | null
|
|
13591
|
+
/** Display name of the Access Grant. */
|
|
13592
|
+
display_name: string
|
|
13593
|
+
/** Date and time at which the Access Grant was created. */
|
|
13594
|
+
created_at: string
|
|
13595
|
+
/** Date and time at which the Access Grant starts. */
|
|
13596
|
+
starts_at: string
|
|
13597
|
+
/** Date and time at which the Access Grant ends. */
|
|
13598
|
+
ends_at: string | null
|
|
13599
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
13600
|
+
warnings: {
|
|
13601
|
+
/** Date and time at which Seam created the warning. */
|
|
13602
|
+
created_at: string
|
|
13603
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13604
|
+
message: string
|
|
13605
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13606
|
+
warning_code: 'being_deleted'
|
|
13607
|
+
}[]
|
|
13608
|
+
}
|
|
13609
|
+
}
|
|
13610
|
+
}
|
|
13611
|
+
'/access_grants/unmanaged/list': {
|
|
13612
|
+
route: '/access_grants/unmanaged/list'
|
|
13613
|
+
method: 'GET' | 'POST'
|
|
13614
|
+
queryParams: {}
|
|
13615
|
+
jsonBody: {}
|
|
13616
|
+
commonParams: {
|
|
13617
|
+
/** ID of user identity by which you want to filter the list of unmanaged Access Grants. */
|
|
13618
|
+
user_identity_id?: string | undefined
|
|
13619
|
+
/** ID of the access system by which you want to filter the list of unmanaged Access Grants. */
|
|
13620
|
+
acs_system_id?: string | undefined
|
|
13621
|
+
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
13622
|
+
acs_entrance_id?: string | undefined
|
|
13623
|
+
}
|
|
13624
|
+
formData: {}
|
|
13625
|
+
jsonResponse: {
|
|
13626
|
+
access_grants: {
|
|
13627
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
13628
|
+
workspace_id: string
|
|
13629
|
+
/** ID of the Access Grant. */
|
|
13630
|
+
access_grant_id: string
|
|
13631
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
13632
|
+
user_identity_id: string
|
|
13633
|
+
/**
|
|
13634
|
+
* @deprecated Use `space_ids`.*/
|
|
13635
|
+
location_ids: string[]
|
|
13636
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
13637
|
+
space_ids: string[]
|
|
13638
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
13639
|
+
requested_access_methods: {
|
|
13640
|
+
/** Display name of the access method. */
|
|
13641
|
+
display_name: string
|
|
13642
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
13643
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
13644
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
13645
|
+
code?: string | undefined
|
|
13646
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
13647
|
+
created_at: string
|
|
13648
|
+
/** IDs of the access methods created for the requested access method. */
|
|
13649
|
+
created_access_method_ids: string[]
|
|
13650
|
+
}[]
|
|
13651
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
13652
|
+
access_method_ids: string[]
|
|
13653
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
13654
|
+
name: string | null
|
|
13655
|
+
/** Display name of the Access Grant. */
|
|
13656
|
+
display_name: string
|
|
13657
|
+
/** Date and time at which the Access Grant was created. */
|
|
13658
|
+
created_at: string
|
|
13659
|
+
/** Date and time at which the Access Grant starts. */
|
|
13660
|
+
starts_at: string
|
|
13661
|
+
/** Date and time at which the Access Grant ends. */
|
|
13662
|
+
ends_at: string | null
|
|
13663
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
13664
|
+
warnings: {
|
|
13665
|
+
/** Date and time at which Seam created the warning. */
|
|
13666
|
+
created_at: string
|
|
13667
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13668
|
+
message: string
|
|
13669
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13670
|
+
warning_code: 'being_deleted'
|
|
13671
|
+
}[]
|
|
13672
|
+
}[]
|
|
13673
|
+
}
|
|
13674
|
+
}
|
|
13550
13675
|
'/access_grants/update': {
|
|
13551
13676
|
route: '/access_grants/update'
|
|
13552
13677
|
method: 'POST' | 'PATCH'
|
|
@@ -23624,6 +23749,97 @@ export type Routes = {
|
|
|
23624
23749
|
}[]
|
|
23625
23750
|
}
|
|
23626
23751
|
}
|
|
23752
|
+
'/access_methods/unmanaged/get': {
|
|
23753
|
+
route: '/access_methods/unmanaged/get'
|
|
23754
|
+
method: 'GET' | 'POST'
|
|
23755
|
+
queryParams: {}
|
|
23756
|
+
jsonBody: {}
|
|
23757
|
+
commonParams: {
|
|
23758
|
+
/** ID of unmanaged access method to get. */
|
|
23759
|
+
access_method_id: string
|
|
23760
|
+
}
|
|
23761
|
+
formData: {}
|
|
23762
|
+
jsonResponse: {
|
|
23763
|
+
/** Represents an unmanaged access method. Unmanaged access methods do not have client sessions, instant keys, customization profiles, or keys. */
|
|
23764
|
+
access_method: {
|
|
23765
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
23766
|
+
workspace_id: string
|
|
23767
|
+
/** ID of the access method. */
|
|
23768
|
+
access_method_id: string
|
|
23769
|
+
/** Display name of the access method. */
|
|
23770
|
+
display_name: string
|
|
23771
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
23772
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
23773
|
+
/** Date and time at which the access method was created. */
|
|
23774
|
+
created_at: string
|
|
23775
|
+
/** Date and time at which the access method was issued. */
|
|
23776
|
+
issued_at: string | null
|
|
23777
|
+
/** Indicates whether the access method has been issued. */
|
|
23778
|
+
is_issued: boolean
|
|
23779
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
23780
|
+
is_encoding_required?: boolean | undefined
|
|
23781
|
+
/** The actual PIN code for code access methods. */
|
|
23782
|
+
code?: (string | null) | undefined
|
|
23783
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
23784
|
+
warnings: {
|
|
23785
|
+
/** Date and time at which Seam created the warning. */
|
|
23786
|
+
created_at: string
|
|
23787
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23788
|
+
message: string
|
|
23789
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23790
|
+
warning_code: 'being_deleted'
|
|
23791
|
+
}[]
|
|
23792
|
+
}
|
|
23793
|
+
}
|
|
23794
|
+
}
|
|
23795
|
+
'/access_methods/unmanaged/list': {
|
|
23796
|
+
route: '/access_methods/unmanaged/list'
|
|
23797
|
+
method: 'GET' | 'POST'
|
|
23798
|
+
queryParams: {}
|
|
23799
|
+
jsonBody: {}
|
|
23800
|
+
commonParams: {
|
|
23801
|
+
/** ID of Access Grant to list unmanaged access methods for. */
|
|
23802
|
+
access_grant_id: string
|
|
23803
|
+
/** ID of the device for which you want to retrieve all unmanaged access methods. */
|
|
23804
|
+
device_id?: string | undefined
|
|
23805
|
+
/** ID of the entrance for which you want to retrieve all unmanaged access methods. */
|
|
23806
|
+
acs_entrance_id?: string | undefined
|
|
23807
|
+
/** ID of the space for which you want to retrieve all unmanaged access methods. */
|
|
23808
|
+
space_id?: string | undefined
|
|
23809
|
+
}
|
|
23810
|
+
formData: {}
|
|
23811
|
+
jsonResponse: {
|
|
23812
|
+
access_methods: {
|
|
23813
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
23814
|
+
workspace_id: string
|
|
23815
|
+
/** ID of the access method. */
|
|
23816
|
+
access_method_id: string
|
|
23817
|
+
/** Display name of the access method. */
|
|
23818
|
+
display_name: string
|
|
23819
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
23820
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
23821
|
+
/** Date and time at which the access method was created. */
|
|
23822
|
+
created_at: string
|
|
23823
|
+
/** Date and time at which the access method was issued. */
|
|
23824
|
+
issued_at: string | null
|
|
23825
|
+
/** Indicates whether the access method has been issued. */
|
|
23826
|
+
is_issued: boolean
|
|
23827
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
23828
|
+
is_encoding_required?: boolean | undefined
|
|
23829
|
+
/** The actual PIN code for code access methods. */
|
|
23830
|
+
code?: (string | null) | undefined
|
|
23831
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
23832
|
+
warnings: {
|
|
23833
|
+
/** Date and time at which Seam created the warning. */
|
|
23834
|
+
created_at: string
|
|
23835
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23836
|
+
message: string
|
|
23837
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23838
|
+
warning_code: 'being_deleted'
|
|
23839
|
+
}[]
|
|
23840
|
+
}[]
|
|
23841
|
+
}
|
|
23842
|
+
}
|
|
23627
23843
|
'/acs/access_groups/add_user': {
|
|
23628
23844
|
route: '/acs/access_groups/add_user'
|
|
23629
23845
|
method: 'PUT' | 'POST'
|
|
@@ -66860,6 +67076,12 @@ export type Routes = {
|
|
|
66860
67076
|
config?: {} | undefined
|
|
66861
67077
|
}
|
|
66862
67078
|
| undefined
|
|
67079
|
+
user_identity_name_updated?:
|
|
67080
|
+
| {
|
|
67081
|
+
rule: 'user_identity_name_updated'
|
|
67082
|
+
config?: {} | undefined
|
|
67083
|
+
}
|
|
67084
|
+
| undefined
|
|
66863
67085
|
}
|
|
66864
67086
|
| undefined
|
|
66865
67087
|
}
|
|
@@ -66902,6 +67124,12 @@ export type Routes = {
|
|
|
66902
67124
|
config?: {} | undefined
|
|
66903
67125
|
}
|
|
66904
67126
|
| undefined
|
|
67127
|
+
user_identity_name_updated?:
|
|
67128
|
+
| {
|
|
67129
|
+
rule: 'user_identity_name_updated'
|
|
67130
|
+
config?: {} | undefined
|
|
67131
|
+
}
|
|
67132
|
+
| undefined
|
|
66905
67133
|
}
|
|
66906
67134
|
| undefined
|
|
66907
67135
|
}
|
|
@@ -94860,6 +95088,129 @@ export type Routes = {
|
|
|
94860
95088
|
formData: {}
|
|
94861
95089
|
jsonResponse: {}
|
|
94862
95090
|
}
|
|
95091
|
+
'/user_identities/unmanaged/get': {
|
|
95092
|
+
route: '/user_identities/unmanaged/get'
|
|
95093
|
+
method: 'GET' | 'POST'
|
|
95094
|
+
queryParams: {}
|
|
95095
|
+
jsonBody: {}
|
|
95096
|
+
commonParams: {
|
|
95097
|
+
/** ID of the unmanaged user identity that you want to get. */
|
|
95098
|
+
user_identity_id: string
|
|
95099
|
+
}
|
|
95100
|
+
formData: {}
|
|
95101
|
+
jsonResponse: {
|
|
95102
|
+
/** Represents an unmanaged user identity. Unmanaged user identities do not have keys. */
|
|
95103
|
+
user_identity: {
|
|
95104
|
+
/** ID of the user identity. */
|
|
95105
|
+
user_identity_id: string
|
|
95106
|
+
/** Unique email address for the user identity. */
|
|
95107
|
+
email_address: string | null
|
|
95108
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
95109
|
+
phone_number: string | null
|
|
95110
|
+
display_name: string
|
|
95111
|
+
full_name: string | null
|
|
95112
|
+
/** Date and time at which the user identity was created. */
|
|
95113
|
+
created_at: string
|
|
95114
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
95115
|
+
workspace_id: string
|
|
95116
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
95117
|
+
errors: {
|
|
95118
|
+
/** Date and time at which Seam created the error. */
|
|
95119
|
+
created_at: string
|
|
95120
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95121
|
+
message: string
|
|
95122
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95123
|
+
error_code: 'issue_with_acs_user'
|
|
95124
|
+
/** ID of the access system user that has an issue. */
|
|
95125
|
+
acs_user_id: string
|
|
95126
|
+
/** ID of the access system that the user identity is associated with. */
|
|
95127
|
+
acs_system_id: string
|
|
95128
|
+
}[]
|
|
95129
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
95130
|
+
warnings: (
|
|
95131
|
+
| {
|
|
95132
|
+
/** Date and time at which Seam created the warning. */
|
|
95133
|
+
created_at: string
|
|
95134
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95135
|
+
message: string
|
|
95136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95137
|
+
warning_code: 'being_deleted'
|
|
95138
|
+
}
|
|
95139
|
+
| {
|
|
95140
|
+
/** Date and time at which Seam created the warning. */
|
|
95141
|
+
created_at: string
|
|
95142
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95143
|
+
message: string
|
|
95144
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95145
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity'
|
|
95146
|
+
}
|
|
95147
|
+
)[]
|
|
95148
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
95149
|
+
acs_user_ids: string[]
|
|
95150
|
+
}
|
|
95151
|
+
}
|
|
95152
|
+
}
|
|
95153
|
+
'/user_identities/unmanaged/list': {
|
|
95154
|
+
route: '/user_identities/unmanaged/list'
|
|
95155
|
+
method: 'GET' | 'POST'
|
|
95156
|
+
queryParams: {}
|
|
95157
|
+
jsonBody: {}
|
|
95158
|
+
commonParams: {
|
|
95159
|
+
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
|
|
95160
|
+
search?: string | undefined
|
|
95161
|
+
}
|
|
95162
|
+
formData: {}
|
|
95163
|
+
jsonResponse: {
|
|
95164
|
+
user_identities: {
|
|
95165
|
+
/** ID of the user identity. */
|
|
95166
|
+
user_identity_id: string
|
|
95167
|
+
/** Unique email address for the user identity. */
|
|
95168
|
+
email_address: string | null
|
|
95169
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
95170
|
+
phone_number: string | null
|
|
95171
|
+
display_name: string
|
|
95172
|
+
full_name: string | null
|
|
95173
|
+
/** Date and time at which the user identity was created. */
|
|
95174
|
+
created_at: string
|
|
95175
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
95176
|
+
workspace_id: string
|
|
95177
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
95178
|
+
errors: {
|
|
95179
|
+
/** Date and time at which Seam created the error. */
|
|
95180
|
+
created_at: string
|
|
95181
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95182
|
+
message: string
|
|
95183
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95184
|
+
error_code: 'issue_with_acs_user'
|
|
95185
|
+
/** ID of the access system user that has an issue. */
|
|
95186
|
+
acs_user_id: string
|
|
95187
|
+
/** ID of the access system that the user identity is associated with. */
|
|
95188
|
+
acs_system_id: string
|
|
95189
|
+
}[]
|
|
95190
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
95191
|
+
warnings: (
|
|
95192
|
+
| {
|
|
95193
|
+
/** Date and time at which Seam created the warning. */
|
|
95194
|
+
created_at: string
|
|
95195
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95196
|
+
message: string
|
|
95197
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95198
|
+
warning_code: 'being_deleted'
|
|
95199
|
+
}
|
|
95200
|
+
| {
|
|
95201
|
+
/** Date and time at which Seam created the warning. */
|
|
95202
|
+
created_at: string
|
|
95203
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95204
|
+
message: string
|
|
95205
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95206
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity'
|
|
95207
|
+
}
|
|
95208
|
+
)[]
|
|
95209
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
95210
|
+
acs_user_ids: string[]
|
|
95211
|
+
}[]
|
|
95212
|
+
}
|
|
95213
|
+
}
|
|
94863
95214
|
'/user_identities/update': {
|
|
94864
95215
|
route: '/user_identities/update'
|
|
94865
95216
|
method: 'PATCH' | 'POST'
|