@seamapi/types 1.1006.0 → 1.1008.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/lib/seam/connect/models/phones/phone-session.d.ts +10 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +12 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +6 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +118 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +128 -2
- package/src/lib/seam/connect/route-types.ts +54 -2
|
@@ -13956,6 +13956,10 @@ export type Routes = {
|
|
|
13956
13956
|
display_name: string;
|
|
13957
13957
|
/** Full name of the user associated with the user identity. */
|
|
13958
13958
|
full_name: string | null;
|
|
13959
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
13960
|
+
merged_user_identity_ids: string[];
|
|
13961
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
13962
|
+
merged_user_identity_keys: string[];
|
|
13959
13963
|
/** Date and time at which the user identity was created. */
|
|
13960
13964
|
created_at: string;
|
|
13961
13965
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -78867,7 +78871,7 @@ export type Routes = {
|
|
|
78867
78871
|
queryParams: {};
|
|
78868
78872
|
jsonBody: {
|
|
78869
78873
|
/** Name of the workspace feature flag to update. */
|
|
78870
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED' | '
|
|
78874
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED' | 'ACCESS_METHOD_DEADLINE_ERRORS' | 'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE' | 'TARGETED_ACCESS_GRANT_ISSUANCE';
|
|
78871
78875
|
/** Whether the feature flag should be enabled for the workspace. */
|
|
78872
78876
|
enabled: boolean;
|
|
78873
78877
|
};
|
|
@@ -78875,7 +78879,7 @@ export type Routes = {
|
|
|
78875
78879
|
formData: {};
|
|
78876
78880
|
jsonResponse: {
|
|
78877
78881
|
feature_flag: {
|
|
78878
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED' | '
|
|
78882
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED' | 'ACCESS_METHOD_DEADLINE_ERRORS' | 'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE' | 'TARGETED_ACCESS_GRANT_ISSUANCE';
|
|
78879
78883
|
enabled: boolean;
|
|
78880
78884
|
};
|
|
78881
78885
|
};
|
|
@@ -86875,6 +86879,10 @@ export type Routes = {
|
|
|
86875
86879
|
display_name: string;
|
|
86876
86880
|
/** Full name of the user associated with the user identity. */
|
|
86877
86881
|
full_name: string | null;
|
|
86882
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
86883
|
+
merged_user_identity_ids: string[];
|
|
86884
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
86885
|
+
merged_user_identity_keys: string[];
|
|
86878
86886
|
/** Date and time at which the user identity was created. */
|
|
86879
86887
|
created_at: string;
|
|
86880
86888
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -111054,6 +111062,10 @@ export type Routes = {
|
|
|
111054
111062
|
display_name: string;
|
|
111055
111063
|
/** Full name of the user associated with the user identity. */
|
|
111056
111064
|
full_name: string | null;
|
|
111065
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111066
|
+
merged_user_identity_ids: string[];
|
|
111067
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111068
|
+
merged_user_identity_keys: string[];
|
|
111057
111069
|
/** Date and time at which the user identity was created. */
|
|
111058
111070
|
created_at: string;
|
|
111059
111071
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -111281,6 +111293,10 @@ export type Routes = {
|
|
|
111281
111293
|
display_name: string;
|
|
111282
111294
|
/** Full name of the user associated with the user identity. */
|
|
111283
111295
|
full_name: string | null;
|
|
111296
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111297
|
+
merged_user_identity_ids: string[];
|
|
111298
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111299
|
+
merged_user_identity_keys: string[];
|
|
111284
111300
|
/** Date and time at which the user identity was created. */
|
|
111285
111301
|
created_at: string;
|
|
111286
111302
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -111369,6 +111385,10 @@ export type Routes = {
|
|
|
111369
111385
|
display_name: string;
|
|
111370
111386
|
/** Full name of the user associated with the user identity. */
|
|
111371
111387
|
full_name: string | null;
|
|
111388
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111389
|
+
merged_user_identity_ids: string[];
|
|
111390
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
111391
|
+
merged_user_identity_keys: string[];
|
|
111372
111392
|
/** Date and time at which the user identity was created. */
|
|
111373
111393
|
created_at: string;
|
|
111374
111394
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -115076,6 +115096,26 @@ export type Routes = {
|
|
|
115076
115096
|
};
|
|
115077
115097
|
maxDuration: undefined;
|
|
115078
115098
|
};
|
|
115099
|
+
'/user_identities/merge': {
|
|
115100
|
+
route: '/user_identities/merge';
|
|
115101
|
+
method: 'POST';
|
|
115102
|
+
queryParams: {};
|
|
115103
|
+
jsonBody: {
|
|
115104
|
+
/** ID of the primary user identity to keep. */
|
|
115105
|
+
user_identity_id: string;
|
|
115106
|
+
/** IDs of the user identities to merge into the primary user identity. These user identities are deleted. */
|
|
115107
|
+
merged_user_identity_ids: string[];
|
|
115108
|
+
} | {
|
|
115109
|
+
/** Key of the primary user identity to keep. */
|
|
115110
|
+
user_identity_key: string;
|
|
115111
|
+
/** Keys of the user identities to merge into the primary user identity. These user identities are deleted. */
|
|
115112
|
+
merged_user_identity_keys: string[];
|
|
115113
|
+
};
|
|
115114
|
+
commonParams: {};
|
|
115115
|
+
formData: {};
|
|
115116
|
+
jsonResponse: {};
|
|
115117
|
+
maxDuration: undefined;
|
|
115118
|
+
};
|
|
115079
115119
|
'/user_identities/remove_acs_user': {
|
|
115080
115120
|
route: '/user_identities/remove_acs_user';
|
|
115081
115121
|
method: 'DELETE' | 'POST';
|
|
@@ -115129,6 +115169,10 @@ export type Routes = {
|
|
|
115129
115169
|
display_name: string;
|
|
115130
115170
|
/** Full name of the user associated with the user identity. */
|
|
115131
115171
|
full_name: string | null;
|
|
115172
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115173
|
+
merged_user_identity_ids: string[];
|
|
115174
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115175
|
+
merged_user_identity_keys: string[];
|
|
115132
115176
|
/** Date and time at which the user identity was created. */
|
|
115133
115177
|
created_at: string;
|
|
115134
115178
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -115196,6 +115240,10 @@ export type Routes = {
|
|
|
115196
115240
|
display_name: string;
|
|
115197
115241
|
/** Full name of the user associated with the user identity. */
|
|
115198
115242
|
full_name: string | null;
|
|
115243
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115244
|
+
merged_user_identity_ids: string[];
|
|
115245
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115246
|
+
merged_user_identity_keys: string[];
|
|
115199
115247
|
/** Date and time at which the user identity was created. */
|
|
115200
115248
|
created_at: string;
|
|
115201
115249
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -115648,6 +115696,10 @@ export type Routes = {
|
|
|
115648
115696
|
display_name: string;
|
|
115649
115697
|
/** Full name of the user associated with the user identity. */
|
|
115650
115698
|
full_name: string | null;
|
|
115699
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115700
|
+
merged_user_identity_ids: string[];
|
|
115701
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
115702
|
+
merged_user_identity_keys: string[];
|
|
115651
115703
|
/** Date and time at which the user identity was created. */
|
|
115652
115704
|
created_at: string;
|
|
115653
115705
|
/** ID of the workspace that contains the user identity. */
|
package/package.json
CHANGED
|
@@ -129,6 +129,16 @@ export const user_identity = z.object({
|
|
|
129
129
|
.min(1)
|
|
130
130
|
.nullable()
|
|
131
131
|
.describe('Full name of the user associated with the user identity.'),
|
|
132
|
+
merged_user_identity_ids: z
|
|
133
|
+
.array(z.string().uuid())
|
|
134
|
+
.describe(
|
|
135
|
+
'IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
136
|
+
),
|
|
137
|
+
merged_user_identity_keys: z
|
|
138
|
+
.array(z.string())
|
|
139
|
+
.describe(
|
|
140
|
+
'Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
141
|
+
),
|
|
132
142
|
created_at: z
|
|
133
143
|
.string()
|
|
134
144
|
.datetime()
|
|
@@ -29602,6 +29602,18 @@ const openapi: OpenAPISpec = {
|
|
|
29602
29602
|
nullable: true,
|
|
29603
29603
|
type: 'string',
|
|
29604
29604
|
},
|
|
29605
|
+
merged_user_identity_ids: {
|
|
29606
|
+
description:
|
|
29607
|
+
'IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
29608
|
+
items: { format: 'uuid', type: 'string' },
|
|
29609
|
+
type: 'array',
|
|
29610
|
+
},
|
|
29611
|
+
merged_user_identity_keys: {
|
|
29612
|
+
description:
|
|
29613
|
+
'Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
29614
|
+
items: { type: 'string' },
|
|
29615
|
+
type: 'array',
|
|
29616
|
+
},
|
|
29605
29617
|
phone_number: {
|
|
29606
29618
|
description:
|
|
29607
29619
|
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
@@ -29696,6 +29708,8 @@ const openapi: OpenAPISpec = {
|
|
|
29696
29708
|
'phone_number',
|
|
29697
29709
|
'display_name',
|
|
29698
29710
|
'full_name',
|
|
29711
|
+
'merged_user_identity_ids',
|
|
29712
|
+
'merged_user_identity_keys',
|
|
29699
29713
|
'created_at',
|
|
29700
29714
|
'workspace_id',
|
|
29701
29715
|
'errors',
|
|
@@ -36228,6 +36242,18 @@ const openapi: OpenAPISpec = {
|
|
|
36228
36242
|
nullable: true,
|
|
36229
36243
|
type: 'string',
|
|
36230
36244
|
},
|
|
36245
|
+
merged_user_identity_ids: {
|
|
36246
|
+
description:
|
|
36247
|
+
'IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
36248
|
+
items: { format: 'uuid', type: 'string' },
|
|
36249
|
+
type: 'array',
|
|
36250
|
+
},
|
|
36251
|
+
merged_user_identity_keys: {
|
|
36252
|
+
description:
|
|
36253
|
+
'Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
36254
|
+
items: { type: 'string' },
|
|
36255
|
+
type: 'array',
|
|
36256
|
+
},
|
|
36231
36257
|
phone_number: {
|
|
36232
36258
|
description:
|
|
36233
36259
|
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
@@ -36312,6 +36338,8 @@ const openapi: OpenAPISpec = {
|
|
|
36312
36338
|
'phone_number',
|
|
36313
36339
|
'display_name',
|
|
36314
36340
|
'full_name',
|
|
36341
|
+
'merged_user_identity_ids',
|
|
36342
|
+
'merged_user_identity_keys',
|
|
36315
36343
|
'created_at',
|
|
36316
36344
|
'workspace_id',
|
|
36317
36345
|
'errors',
|
|
@@ -36411,6 +36439,18 @@ const openapi: OpenAPISpec = {
|
|
|
36411
36439
|
nullable: true,
|
|
36412
36440
|
type: 'string',
|
|
36413
36441
|
},
|
|
36442
|
+
merged_user_identity_ids: {
|
|
36443
|
+
description:
|
|
36444
|
+
'IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
36445
|
+
items: { format: 'uuid', type: 'string' },
|
|
36446
|
+
type: 'array',
|
|
36447
|
+
},
|
|
36448
|
+
merged_user_identity_keys: {
|
|
36449
|
+
description:
|
|
36450
|
+
'Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity.',
|
|
36451
|
+
items: { type: 'string' },
|
|
36452
|
+
type: 'array',
|
|
36453
|
+
},
|
|
36414
36454
|
phone_number: {
|
|
36415
36455
|
description:
|
|
36416
36456
|
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
@@ -36502,6 +36542,8 @@ const openapi: OpenAPISpec = {
|
|
|
36502
36542
|
'phone_number',
|
|
36503
36543
|
'display_name',
|
|
36504
36544
|
'full_name',
|
|
36545
|
+
'merged_user_identity_ids',
|
|
36546
|
+
'merged_user_identity_keys',
|
|
36505
36547
|
'created_at',
|
|
36506
36548
|
'workspace_id',
|
|
36507
36549
|
'errors',
|
|
@@ -67262,7 +67304,6 @@ const openapi: OpenAPISpec = {
|
|
|
67262
67304
|
'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES',
|
|
67263
67305
|
'LYNX_MIGRATION_ENABLED',
|
|
67264
67306
|
'AURORA_CUSTOMER_FILTER_ENABLED',
|
|
67265
|
-
'AUTOMATION_IMMINENT_CHECK_IN_QUEUE',
|
|
67266
67307
|
'ACCESS_METHOD_DEADLINE_ERRORS',
|
|
67267
67308
|
'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE',
|
|
67268
67309
|
'TARGETED_ACCESS_GRANT_ISSUANCE',
|
|
@@ -67297,7 +67338,6 @@ const openapi: OpenAPISpec = {
|
|
|
67297
67338
|
'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES',
|
|
67298
67339
|
'LYNX_MIGRATION_ENABLED',
|
|
67299
67340
|
'AURORA_CUSTOMER_FILTER_ENABLED',
|
|
67300
|
-
'AUTOMATION_IMMINENT_CHECK_IN_QUEUE',
|
|
67301
67341
|
'ACCESS_METHOD_DEADLINE_ERRORS',
|
|
67302
67342
|
'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE',
|
|
67303
67343
|
'TARGETED_ACCESS_GRANT_ISSUANCE',
|
|
@@ -85734,6 +85774,92 @@ const openapi: OpenAPISpec = {
|
|
|
85734
85774
|
'x-title': 'List ACS Users Associated with a User Identity',
|
|
85735
85775
|
},
|
|
85736
85776
|
},
|
|
85777
|
+
'/user_identities/merge': {
|
|
85778
|
+
post: {
|
|
85779
|
+
description:
|
|
85780
|
+
'Merges one or more [user identities](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) into a primary user identity, for when the same person ended up with more than one user identity.\n\nThe primary user identity takes on any email address or phone number it was missing from the user identities merged into it, and the merged user identities are then deleted. Their IDs and keys keep working: looking one up returns the primary user identity, and they are listed on it as `merged_user_identity_ids` and `merged_user_identity_keys`.\n\nAccess grants, access system users, client sessions and other resources belonging to the merged user identities are moved to the primary user identity.\n\nIdentify the user identities either by ID or by key, but not both in the same request. Repeating a merge that has already been applied makes no further changes.',
|
|
85781
|
+
operationId: 'userIdentitiesMergePost',
|
|
85782
|
+
requestBody: {
|
|
85783
|
+
content: {
|
|
85784
|
+
'application/json': {
|
|
85785
|
+
schema: {
|
|
85786
|
+
oneOf: [
|
|
85787
|
+
{
|
|
85788
|
+
properties: {
|
|
85789
|
+
merged_user_identity_ids: {
|
|
85790
|
+
description:
|
|
85791
|
+
'IDs of the user identities to merge into the primary user identity. These user identities are deleted.',
|
|
85792
|
+
items: { format: 'uuid', type: 'string' },
|
|
85793
|
+
maxItems: 20,
|
|
85794
|
+
minItems: 1,
|
|
85795
|
+
type: 'array',
|
|
85796
|
+
},
|
|
85797
|
+
user_identity_id: {
|
|
85798
|
+
description: 'ID of the primary user identity to keep.',
|
|
85799
|
+
format: 'uuid',
|
|
85800
|
+
type: 'string',
|
|
85801
|
+
},
|
|
85802
|
+
},
|
|
85803
|
+
required: ['user_identity_id', 'merged_user_identity_ids'],
|
|
85804
|
+
type: 'object',
|
|
85805
|
+
},
|
|
85806
|
+
{
|
|
85807
|
+
properties: {
|
|
85808
|
+
merged_user_identity_keys: {
|
|
85809
|
+
description:
|
|
85810
|
+
'Keys of the user identities to merge into the primary user identity. These user identities are deleted.',
|
|
85811
|
+
items: { minLength: 1, type: 'string' },
|
|
85812
|
+
maxItems: 20,
|
|
85813
|
+
minItems: 1,
|
|
85814
|
+
type: 'array',
|
|
85815
|
+
},
|
|
85816
|
+
user_identity_key: {
|
|
85817
|
+
description:
|
|
85818
|
+
'Key of the primary user identity to keep.',
|
|
85819
|
+
minLength: 1,
|
|
85820
|
+
type: 'string',
|
|
85821
|
+
},
|
|
85822
|
+
},
|
|
85823
|
+
required: [
|
|
85824
|
+
'user_identity_key',
|
|
85825
|
+
'merged_user_identity_keys',
|
|
85826
|
+
],
|
|
85827
|
+
type: 'object',
|
|
85828
|
+
},
|
|
85829
|
+
],
|
|
85830
|
+
},
|
|
85831
|
+
},
|
|
85832
|
+
},
|
|
85833
|
+
},
|
|
85834
|
+
responses: {
|
|
85835
|
+
'200': {
|
|
85836
|
+
content: {
|
|
85837
|
+
'application/json': {
|
|
85838
|
+
schema: {
|
|
85839
|
+
properties: { ok: { type: 'boolean' } },
|
|
85840
|
+
required: ['ok'],
|
|
85841
|
+
type: 'object',
|
|
85842
|
+
},
|
|
85843
|
+
},
|
|
85844
|
+
},
|
|
85845
|
+
description: 'OK',
|
|
85846
|
+
},
|
|
85847
|
+
'400': { description: 'Bad Request' },
|
|
85848
|
+
'401': { description: 'Unauthorized' },
|
|
85849
|
+
},
|
|
85850
|
+
security: [
|
|
85851
|
+
{ api_key: [] },
|
|
85852
|
+
{ pat_with_workspace: [] },
|
|
85853
|
+
{ console_session_with_workspace: [] },
|
|
85854
|
+
],
|
|
85855
|
+
summary: '/user_identities/merge',
|
|
85856
|
+
tags: ['/user_identities'],
|
|
85857
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
85858
|
+
'x-fern-sdk-method-name': 'merge',
|
|
85859
|
+
'x-response-key': null,
|
|
85860
|
+
'x-title': 'Merge User Identities',
|
|
85861
|
+
},
|
|
85862
|
+
},
|
|
85737
85863
|
'/user_identities/remove_acs_user': {
|
|
85738
85864
|
delete: {
|
|
85739
85865
|
description:
|
|
@@ -16281,6 +16281,10 @@ export type Routes = {
|
|
|
16281
16281
|
display_name: string
|
|
16282
16282
|
/** Full name of the user associated with the user identity. */
|
|
16283
16283
|
full_name: string | null
|
|
16284
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
16285
|
+
merged_user_identity_ids: string[]
|
|
16286
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
16287
|
+
merged_user_identity_keys: string[]
|
|
16284
16288
|
/** Date and time at which the user identity was created. */
|
|
16285
16289
|
created_at: string
|
|
16286
16290
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -94856,7 +94860,6 @@ export type Routes = {
|
|
|
94856
94860
|
| 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES'
|
|
94857
94861
|
| 'LYNX_MIGRATION_ENABLED'
|
|
94858
94862
|
| 'AURORA_CUSTOMER_FILTER_ENABLED'
|
|
94859
|
-
| 'AUTOMATION_IMMINENT_CHECK_IN_QUEUE'
|
|
94860
94863
|
| 'ACCESS_METHOD_DEADLINE_ERRORS'
|
|
94861
94864
|
| 'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE'
|
|
94862
94865
|
| 'TARGETED_ACCESS_GRANT_ISSUANCE'
|
|
@@ -94878,7 +94881,6 @@ export type Routes = {
|
|
|
94878
94881
|
| 'RECONCILE_ORPHANED_SMARTTHINGS_ACCESS_CODES'
|
|
94879
94882
|
| 'LYNX_MIGRATION_ENABLED'
|
|
94880
94883
|
| 'AURORA_CUSTOMER_FILTER_ENABLED'
|
|
94881
|
-
| 'AUTOMATION_IMMINENT_CHECK_IN_QUEUE'
|
|
94882
94884
|
| 'ACCESS_METHOD_DEADLINE_ERRORS'
|
|
94883
94885
|
| 'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE'
|
|
94884
94886
|
| 'TARGETED_ACCESS_GRANT_ISSUANCE'
|
|
@@ -104308,6 +104310,10 @@ export type Routes = {
|
|
|
104308
104310
|
display_name: string
|
|
104309
104311
|
/** Full name of the user associated with the user identity. */
|
|
104310
104312
|
full_name: string | null
|
|
104313
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
104314
|
+
merged_user_identity_ids: string[]
|
|
104315
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
104316
|
+
merged_user_identity_keys: string[]
|
|
104311
104317
|
/** Date and time at which the user identity was created. */
|
|
104312
104318
|
created_at: string
|
|
104313
104319
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -133041,6 +133047,10 @@ export type Routes = {
|
|
|
133041
133047
|
display_name: string
|
|
133042
133048
|
/** Full name of the user associated with the user identity. */
|
|
133043
133049
|
full_name: string | null
|
|
133050
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133051
|
+
merged_user_identity_ids: string[]
|
|
133052
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133053
|
+
merged_user_identity_keys: string[]
|
|
133044
133054
|
/** Date and time at which the user identity was created. */
|
|
133045
133055
|
created_at: string
|
|
133046
133056
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -133275,6 +133285,10 @@ export type Routes = {
|
|
|
133275
133285
|
display_name: string
|
|
133276
133286
|
/** Full name of the user associated with the user identity. */
|
|
133277
133287
|
full_name: string | null
|
|
133288
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133289
|
+
merged_user_identity_ids: string[]
|
|
133290
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133291
|
+
merged_user_identity_keys: string[]
|
|
133278
133292
|
/** Date and time at which the user identity was created. */
|
|
133279
133293
|
created_at: string
|
|
133280
133294
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -133366,6 +133380,10 @@ export type Routes = {
|
|
|
133366
133380
|
display_name: string
|
|
133367
133381
|
/** Full name of the user associated with the user identity. */
|
|
133368
133382
|
full_name: string | null
|
|
133383
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133384
|
+
merged_user_identity_ids: string[]
|
|
133385
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
133386
|
+
merged_user_identity_keys: string[]
|
|
133369
133387
|
/** Date and time at which the user identity was created. */
|
|
133370
133388
|
created_at: string
|
|
133371
133389
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -137975,6 +137993,28 @@ export type Routes = {
|
|
|
137975
137993
|
}
|
|
137976
137994
|
maxDuration: undefined
|
|
137977
137995
|
}
|
|
137996
|
+
'/user_identities/merge': {
|
|
137997
|
+
route: '/user_identities/merge'
|
|
137998
|
+
method: 'POST'
|
|
137999
|
+
queryParams: {}
|
|
138000
|
+
jsonBody:
|
|
138001
|
+
| {
|
|
138002
|
+
/** ID of the primary user identity to keep. */
|
|
138003
|
+
user_identity_id: string
|
|
138004
|
+
/** IDs of the user identities to merge into the primary user identity. These user identities are deleted. */
|
|
138005
|
+
merged_user_identity_ids: string[]
|
|
138006
|
+
}
|
|
138007
|
+
| {
|
|
138008
|
+
/** Key of the primary user identity to keep. */
|
|
138009
|
+
user_identity_key: string
|
|
138010
|
+
/** Keys of the user identities to merge into the primary user identity. These user identities are deleted. */
|
|
138011
|
+
merged_user_identity_keys: string[]
|
|
138012
|
+
}
|
|
138013
|
+
commonParams: {}
|
|
138014
|
+
formData: {}
|
|
138015
|
+
jsonResponse: {}
|
|
138016
|
+
maxDuration: undefined
|
|
138017
|
+
}
|
|
137978
138018
|
'/user_identities/remove_acs_user': {
|
|
137979
138019
|
route: '/user_identities/remove_acs_user'
|
|
137980
138020
|
method: 'DELETE' | 'POST'
|
|
@@ -138028,6 +138068,10 @@ export type Routes = {
|
|
|
138028
138068
|
display_name: string
|
|
138029
138069
|
/** Full name of the user associated with the user identity. */
|
|
138030
138070
|
full_name: string | null
|
|
138071
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138072
|
+
merged_user_identity_ids: string[]
|
|
138073
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138074
|
+
merged_user_identity_keys: string[]
|
|
138031
138075
|
/** Date and time at which the user identity was created. */
|
|
138032
138076
|
created_at: string
|
|
138033
138077
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -138098,6 +138142,10 @@ export type Routes = {
|
|
|
138098
138142
|
display_name: string
|
|
138099
138143
|
/** Full name of the user associated with the user identity. */
|
|
138100
138144
|
full_name: string | null
|
|
138145
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138146
|
+
merged_user_identity_ids: string[]
|
|
138147
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138148
|
+
merged_user_identity_keys: string[]
|
|
138101
138149
|
/** Date and time at which the user identity was created. */
|
|
138102
138150
|
created_at: string
|
|
138103
138151
|
/** ID of the workspace that contains the user identity. */
|
|
@@ -138582,6 +138630,10 @@ export type Routes = {
|
|
|
138582
138630
|
display_name: string
|
|
138583
138631
|
/** Full name of the user associated with the user identity. */
|
|
138584
138632
|
full_name: string | null
|
|
138633
|
+
/** IDs that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138634
|
+
merged_user_identity_ids: string[]
|
|
138635
|
+
/** Keys that other user identities used to have before they were merged into this user identity. Looking up any of them returns this user identity. */
|
|
138636
|
+
merged_user_identity_keys: string[]
|
|
138585
138637
|
/** Date and time at which the user identity was created. */
|
|
138586
138638
|
created_at: string
|
|
138587
138639
|
/** ID of the workspace that contains the user identity. */
|