@seamapi/types 1.80.1 → 1.82.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 +124 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +250 -36
- package/lib/seam/connect/openapi.d.ts +192 -25
- package/lib/seam/connect/openapi.js +123 -17
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -7
- package/lib/seam/connect/stable/models/connect-webview.d.ts +3 -3
- package/lib/seam/connect/stable/models/custom-metadata.d.ts +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.js +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js +1 -9
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/phone-number.d.ts +2 -0
- package/lib/seam/connect/unstable/models/phone-number.js +11 -0
- package/lib/seam/connect/unstable/models/phone-number.js.map +1 -0
- package/lib/seam/connect/unstable/models/user-identity.d.ts +3 -0
- package/lib/seam/connect/unstable/models/user-identity.js +2 -0
- package/lib/seam/connect/unstable/models/user-identity.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +123 -17
- package/src/lib/seam/connect/route-types.ts +68 -15
- package/src/lib/seam/connect/stable/models/custom-metadata.ts +1 -4
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -13
- package/src/lib/seam/connect/unstable/models/phone-number.ts +14 -0
- package/src/lib/seam/connect/unstable/models/user-identity.ts +3 -0
|
@@ -506,22 +506,12 @@ declare const _default: {
|
|
|
506
506
|
};
|
|
507
507
|
custom_metadata: {
|
|
508
508
|
additionalProperties: {
|
|
509
|
-
nullable: boolean;
|
|
510
509
|
oneOf: ({
|
|
511
510
|
maxLength: number;
|
|
512
511
|
type: string;
|
|
513
|
-
format?: never;
|
|
514
|
-
nullable?: never;
|
|
515
512
|
} | {
|
|
516
513
|
type: string;
|
|
517
514
|
maxLength?: never;
|
|
518
|
-
format?: never;
|
|
519
|
-
nullable?: never;
|
|
520
|
-
} | {
|
|
521
|
-
format: string;
|
|
522
|
-
nullable: boolean;
|
|
523
|
-
type: string;
|
|
524
|
-
maxLength?: never;
|
|
525
515
|
})[];
|
|
526
516
|
};
|
|
527
517
|
type: string;
|
|
@@ -587,15 +577,12 @@ declare const _default: {
|
|
|
587
577
|
};
|
|
588
578
|
custom_metadata: {
|
|
589
579
|
additionalProperties: {
|
|
590
|
-
nullable: boolean;
|
|
591
580
|
oneOf: ({
|
|
581
|
+
maxLength: number;
|
|
592
582
|
type: string;
|
|
593
|
-
format?: never;
|
|
594
|
-
nullable?: never;
|
|
595
583
|
} | {
|
|
596
|
-
format: string;
|
|
597
|
-
nullable: boolean;
|
|
598
584
|
type: string;
|
|
585
|
+
maxLength?: never;
|
|
599
586
|
})[];
|
|
600
587
|
};
|
|
601
588
|
type: string;
|
|
@@ -8483,6 +8470,100 @@ declare const _default: {
|
|
|
8483
8470
|
'x-fern-sdk-method-name': string;
|
|
8484
8471
|
};
|
|
8485
8472
|
};
|
|
8473
|
+
'/acs/users/list_accessible_entrances': {
|
|
8474
|
+
post: {
|
|
8475
|
+
operationId: string;
|
|
8476
|
+
requestBody: {
|
|
8477
|
+
content: {
|
|
8478
|
+
'application/json': {
|
|
8479
|
+
schema: {
|
|
8480
|
+
properties: {
|
|
8481
|
+
acs_user_id: {
|
|
8482
|
+
format: string;
|
|
8483
|
+
type: string;
|
|
8484
|
+
};
|
|
8485
|
+
};
|
|
8486
|
+
required: string[];
|
|
8487
|
+
type: string;
|
|
8488
|
+
};
|
|
8489
|
+
};
|
|
8490
|
+
};
|
|
8491
|
+
};
|
|
8492
|
+
responses: {
|
|
8493
|
+
200: {
|
|
8494
|
+
content: {
|
|
8495
|
+
'application/json': {
|
|
8496
|
+
schema: {
|
|
8497
|
+
properties: {
|
|
8498
|
+
acs_entrances: {
|
|
8499
|
+
items: {
|
|
8500
|
+
properties: {
|
|
8501
|
+
acs_entrance_id: {
|
|
8502
|
+
format: string;
|
|
8503
|
+
type: string;
|
|
8504
|
+
};
|
|
8505
|
+
acs_system_id: {
|
|
8506
|
+
format: string;
|
|
8507
|
+
type: string;
|
|
8508
|
+
};
|
|
8509
|
+
created_at: {
|
|
8510
|
+
format: string;
|
|
8511
|
+
type: string;
|
|
8512
|
+
};
|
|
8513
|
+
display_name: {
|
|
8514
|
+
type: string;
|
|
8515
|
+
};
|
|
8516
|
+
};
|
|
8517
|
+
required: string[];
|
|
8518
|
+
type: string;
|
|
8519
|
+
};
|
|
8520
|
+
type: string;
|
|
8521
|
+
};
|
|
8522
|
+
ok: {
|
|
8523
|
+
type: string;
|
|
8524
|
+
};
|
|
8525
|
+
};
|
|
8526
|
+
required: string[];
|
|
8527
|
+
type: string;
|
|
8528
|
+
};
|
|
8529
|
+
};
|
|
8530
|
+
};
|
|
8531
|
+
description: string;
|
|
8532
|
+
};
|
|
8533
|
+
400: {
|
|
8534
|
+
description: string;
|
|
8535
|
+
};
|
|
8536
|
+
401: {
|
|
8537
|
+
description: string;
|
|
8538
|
+
};
|
|
8539
|
+
};
|
|
8540
|
+
security: ({
|
|
8541
|
+
client_session: never[];
|
|
8542
|
+
pat_with_workspace?: never;
|
|
8543
|
+
console_session?: never;
|
|
8544
|
+
api_key?: never;
|
|
8545
|
+
} | {
|
|
8546
|
+
pat_with_workspace: never[];
|
|
8547
|
+
client_session?: never;
|
|
8548
|
+
console_session?: never;
|
|
8549
|
+
api_key?: never;
|
|
8550
|
+
} | {
|
|
8551
|
+
console_session: never[];
|
|
8552
|
+
client_session?: never;
|
|
8553
|
+
pat_with_workspace?: never;
|
|
8554
|
+
api_key?: never;
|
|
8555
|
+
} | {
|
|
8556
|
+
api_key: never[];
|
|
8557
|
+
client_session?: never;
|
|
8558
|
+
pat_with_workspace?: never;
|
|
8559
|
+
console_session?: never;
|
|
8560
|
+
})[];
|
|
8561
|
+
summary: string;
|
|
8562
|
+
tags: string[];
|
|
8563
|
+
'x-fern-sdk-group-name': string[];
|
|
8564
|
+
'x-fern-sdk-method-name': string;
|
|
8565
|
+
};
|
|
8566
|
+
};
|
|
8486
8567
|
'/acs/users/remove_from_access_group': {
|
|
8487
8568
|
post: {
|
|
8488
8569
|
operationId: string;
|
|
@@ -9769,22 +9850,12 @@ declare const _default: {
|
|
|
9769
9850
|
};
|
|
9770
9851
|
custom_metadata: {
|
|
9771
9852
|
additionalProperties: {
|
|
9772
|
-
nullable: boolean;
|
|
9773
9853
|
oneOf: ({
|
|
9774
9854
|
maxLength: number;
|
|
9775
9855
|
type: string;
|
|
9776
|
-
format?: never;
|
|
9777
|
-
nullable?: never;
|
|
9778
9856
|
} | {
|
|
9779
9857
|
type: string;
|
|
9780
9858
|
maxLength?: never;
|
|
9781
|
-
format?: never;
|
|
9782
|
-
nullable?: never;
|
|
9783
|
-
} | {
|
|
9784
|
-
format: string;
|
|
9785
|
-
nullable: boolean;
|
|
9786
|
-
type: string;
|
|
9787
|
-
maxLength?: never;
|
|
9788
9859
|
})[];
|
|
9789
9860
|
};
|
|
9790
9861
|
type: string;
|
|
@@ -14610,6 +14681,10 @@ declare const _default: {
|
|
|
14610
14681
|
nullable: boolean;
|
|
14611
14682
|
type: string;
|
|
14612
14683
|
};
|
|
14684
|
+
phone_number: {
|
|
14685
|
+
nullable: boolean;
|
|
14686
|
+
type: string;
|
|
14687
|
+
};
|
|
14613
14688
|
user_identity_key: {
|
|
14614
14689
|
minLength: number;
|
|
14615
14690
|
nullable: boolean;
|
|
@@ -14650,6 +14725,10 @@ declare const _default: {
|
|
|
14650
14725
|
nullable: boolean;
|
|
14651
14726
|
type: string;
|
|
14652
14727
|
};
|
|
14728
|
+
phone_number: {
|
|
14729
|
+
nullable: boolean;
|
|
14730
|
+
type: string;
|
|
14731
|
+
};
|
|
14653
14732
|
user_identity_id: {
|
|
14654
14733
|
format: string;
|
|
14655
14734
|
type: string;
|
|
@@ -15020,6 +15099,10 @@ declare const _default: {
|
|
|
15020
15099
|
nullable: boolean;
|
|
15021
15100
|
type: string;
|
|
15022
15101
|
};
|
|
15102
|
+
phone_number: {
|
|
15103
|
+
nullable: boolean;
|
|
15104
|
+
type: string;
|
|
15105
|
+
};
|
|
15023
15106
|
user_identity_id: {
|
|
15024
15107
|
format: string;
|
|
15025
15108
|
type: string;
|
|
@@ -15242,6 +15325,10 @@ declare const _default: {
|
|
|
15242
15325
|
nullable: boolean;
|
|
15243
15326
|
type: string;
|
|
15244
15327
|
};
|
|
15328
|
+
phone_number: {
|
|
15329
|
+
nullable: boolean;
|
|
15330
|
+
type: string;
|
|
15331
|
+
};
|
|
15245
15332
|
user_identity_id: {
|
|
15246
15333
|
format: string;
|
|
15247
15334
|
type: string;
|
|
@@ -15333,6 +15420,10 @@ declare const _default: {
|
|
|
15333
15420
|
nullable: boolean;
|
|
15334
15421
|
type: string;
|
|
15335
15422
|
};
|
|
15423
|
+
phone_number: {
|
|
15424
|
+
nullable: boolean;
|
|
15425
|
+
type: string;
|
|
15426
|
+
};
|
|
15336
15427
|
user_identity_id: {
|
|
15337
15428
|
format: string;
|
|
15338
15429
|
type: string;
|
|
@@ -15466,6 +15557,82 @@ declare const _default: {
|
|
|
15466
15557
|
'x-fern-sdk-method-name': string;
|
|
15467
15558
|
};
|
|
15468
15559
|
};
|
|
15560
|
+
'/user_identities/list_acs_systems': {
|
|
15561
|
+
post: {
|
|
15562
|
+
operationId: string;
|
|
15563
|
+
requestBody: {
|
|
15564
|
+
content: {
|
|
15565
|
+
'application/json': {
|
|
15566
|
+
schema: {
|
|
15567
|
+
properties: {
|
|
15568
|
+
user_identity_id: {
|
|
15569
|
+
format: string;
|
|
15570
|
+
type: string;
|
|
15571
|
+
};
|
|
15572
|
+
};
|
|
15573
|
+
required: string[];
|
|
15574
|
+
type: string;
|
|
15575
|
+
};
|
|
15576
|
+
};
|
|
15577
|
+
};
|
|
15578
|
+
};
|
|
15579
|
+
responses: {
|
|
15580
|
+
200: {
|
|
15581
|
+
content: {
|
|
15582
|
+
'application/json': {
|
|
15583
|
+
schema: {
|
|
15584
|
+
properties: {
|
|
15585
|
+
acs_systems: {
|
|
15586
|
+
items: {
|
|
15587
|
+
$ref: string;
|
|
15588
|
+
};
|
|
15589
|
+
type: string;
|
|
15590
|
+
};
|
|
15591
|
+
ok: {
|
|
15592
|
+
type: string;
|
|
15593
|
+
};
|
|
15594
|
+
};
|
|
15595
|
+
required: string[];
|
|
15596
|
+
type: string;
|
|
15597
|
+
};
|
|
15598
|
+
};
|
|
15599
|
+
};
|
|
15600
|
+
description: string;
|
|
15601
|
+
};
|
|
15602
|
+
400: {
|
|
15603
|
+
description: string;
|
|
15604
|
+
};
|
|
15605
|
+
401: {
|
|
15606
|
+
description: string;
|
|
15607
|
+
};
|
|
15608
|
+
};
|
|
15609
|
+
security: ({
|
|
15610
|
+
client_session: never[];
|
|
15611
|
+
pat_with_workspace?: never;
|
|
15612
|
+
console_session?: never;
|
|
15613
|
+
api_key?: never;
|
|
15614
|
+
} | {
|
|
15615
|
+
pat_with_workspace: never[];
|
|
15616
|
+
client_session?: never;
|
|
15617
|
+
console_session?: never;
|
|
15618
|
+
api_key?: never;
|
|
15619
|
+
} | {
|
|
15620
|
+
console_session: never[];
|
|
15621
|
+
client_session?: never;
|
|
15622
|
+
pat_with_workspace?: never;
|
|
15623
|
+
api_key?: never;
|
|
15624
|
+
} | {
|
|
15625
|
+
api_key: never[];
|
|
15626
|
+
client_session?: never;
|
|
15627
|
+
pat_with_workspace?: never;
|
|
15628
|
+
console_session?: never;
|
|
15629
|
+
})[];
|
|
15630
|
+
summary: string;
|
|
15631
|
+
tags: string[];
|
|
15632
|
+
'x-fern-sdk-group-name': string[];
|
|
15633
|
+
'x-fern-sdk-method-name': string;
|
|
15634
|
+
};
|
|
15635
|
+
};
|
|
15469
15636
|
'/user_identities/list_acs_users': {
|
|
15470
15637
|
post: {
|
|
15471
15638
|
operationId: string;
|
|
@@ -405,13 +405,7 @@ export default {
|
|
|
405
405
|
created_at: { format: 'date-time', type: 'string' },
|
|
406
406
|
custom_metadata: {
|
|
407
407
|
additionalProperties: {
|
|
408
|
-
|
|
409
|
-
oneOf: [
|
|
410
|
-
{ maxLength: 500, type: 'string' },
|
|
411
|
-
{ type: 'number' },
|
|
412
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
413
|
-
{ type: 'boolean' },
|
|
414
|
-
],
|
|
408
|
+
oneOf: [{ maxLength: 500, type: 'string' }, { type: 'boolean' }],
|
|
415
409
|
},
|
|
416
410
|
type: 'object',
|
|
417
411
|
},
|
|
@@ -467,13 +461,7 @@ export default {
|
|
|
467
461
|
created_at: { format: 'date-time', type: 'string' },
|
|
468
462
|
custom_metadata: {
|
|
469
463
|
additionalProperties: {
|
|
470
|
-
|
|
471
|
-
oneOf: [
|
|
472
|
-
{ type: 'string' },
|
|
473
|
-
{ type: 'number' },
|
|
474
|
-
{ type: 'boolean' },
|
|
475
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
476
|
-
],
|
|
464
|
+
oneOf: [{ maxLength: 500, type: 'string' }, { type: 'boolean' }],
|
|
477
465
|
},
|
|
478
466
|
type: 'object',
|
|
479
467
|
},
|
|
@@ -6297,6 +6285,68 @@ export default {
|
|
|
6297
6285
|
'x-fern-sdk-method-name': 'list',
|
|
6298
6286
|
},
|
|
6299
6287
|
},
|
|
6288
|
+
'/acs/users/list_accessible_entrances': {
|
|
6289
|
+
post: {
|
|
6290
|
+
operationId: 'acsUsersListAccessibleEntrancesPost',
|
|
6291
|
+
requestBody: {
|
|
6292
|
+
content: {
|
|
6293
|
+
'application/json': {
|
|
6294
|
+
schema: {
|
|
6295
|
+
properties: { acs_user_id: { format: 'uuid', type: 'string' } },
|
|
6296
|
+
required: ['acs_user_id'],
|
|
6297
|
+
type: 'object',
|
|
6298
|
+
},
|
|
6299
|
+
},
|
|
6300
|
+
},
|
|
6301
|
+
},
|
|
6302
|
+
responses: {
|
|
6303
|
+
200: {
|
|
6304
|
+
content: {
|
|
6305
|
+
'application/json': {
|
|
6306
|
+
schema: {
|
|
6307
|
+
properties: {
|
|
6308
|
+
acs_entrances: {
|
|
6309
|
+
items: {
|
|
6310
|
+
properties: {
|
|
6311
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
6312
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6313
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
6314
|
+
display_name: { type: 'string' },
|
|
6315
|
+
},
|
|
6316
|
+
required: [
|
|
6317
|
+
'acs_entrance_id',
|
|
6318
|
+
'display_name',
|
|
6319
|
+
'acs_system_id',
|
|
6320
|
+
'created_at',
|
|
6321
|
+
],
|
|
6322
|
+
type: 'object',
|
|
6323
|
+
},
|
|
6324
|
+
type: 'array',
|
|
6325
|
+
},
|
|
6326
|
+
ok: { type: 'boolean' },
|
|
6327
|
+
},
|
|
6328
|
+
required: ['acs_entrances', 'ok'],
|
|
6329
|
+
type: 'object',
|
|
6330
|
+
},
|
|
6331
|
+
},
|
|
6332
|
+
},
|
|
6333
|
+
description: 'OK',
|
|
6334
|
+
},
|
|
6335
|
+
400: { description: 'Bad Request' },
|
|
6336
|
+
401: { description: 'Unauthorized' },
|
|
6337
|
+
},
|
|
6338
|
+
security: [
|
|
6339
|
+
{ client_session: [] },
|
|
6340
|
+
{ pat_with_workspace: [] },
|
|
6341
|
+
{ console_session: [] },
|
|
6342
|
+
{ api_key: [] },
|
|
6343
|
+
],
|
|
6344
|
+
summary: '/acs/users/list_accessible_entrances',
|
|
6345
|
+
tags: ['/acs'],
|
|
6346
|
+
'x-fern-sdk-group-name': ['acs', 'users'],
|
|
6347
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
6348
|
+
},
|
|
6349
|
+
},
|
|
6300
6350
|
'/acs/users/remove_from_access_group': {
|
|
6301
6351
|
post: {
|
|
6302
6352
|
operationId: 'acsUsersRemoveFromAccessGroupPost',
|
|
@@ -7223,11 +7273,8 @@ export default {
|
|
|
7223
7273
|
automatically_manage_new_devices: { type: 'boolean' },
|
|
7224
7274
|
custom_metadata: {
|
|
7225
7275
|
additionalProperties: {
|
|
7226
|
-
nullable: true,
|
|
7227
7276
|
oneOf: [
|
|
7228
7277
|
{ maxLength: 500, type: 'string' },
|
|
7229
|
-
{ type: 'number' },
|
|
7230
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
7231
7278
|
{ type: 'boolean' },
|
|
7232
7279
|
],
|
|
7233
7280
|
},
|
|
@@ -10989,6 +11036,7 @@ export default {
|
|
|
10989
11036
|
type: 'string',
|
|
10990
11037
|
},
|
|
10991
11038
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11039
|
+
phone_number: { nullable: true, type: 'string' },
|
|
10992
11040
|
user_identity_key: {
|
|
10993
11041
|
minLength: 1,
|
|
10994
11042
|
nullable: true,
|
|
@@ -11021,6 +11069,7 @@ export default {
|
|
|
11021
11069
|
nullable: true,
|
|
11022
11070
|
type: 'string',
|
|
11023
11071
|
},
|
|
11072
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11024
11073
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11025
11074
|
user_identity_key: {
|
|
11026
11075
|
minLength: 1,
|
|
@@ -11033,6 +11082,7 @@ export default {
|
|
|
11033
11082
|
'user_identity_id',
|
|
11034
11083
|
'user_identity_key',
|
|
11035
11084
|
'email_address',
|
|
11085
|
+
'phone_number',
|
|
11036
11086
|
'display_name',
|
|
11037
11087
|
'full_name',
|
|
11038
11088
|
'created_at',
|
|
@@ -11295,6 +11345,7 @@ export default {
|
|
|
11295
11345
|
nullable: true,
|
|
11296
11346
|
type: 'string',
|
|
11297
11347
|
},
|
|
11348
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11298
11349
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11299
11350
|
user_identity_key: {
|
|
11300
11351
|
minLength: 1,
|
|
@@ -11307,6 +11358,7 @@ export default {
|
|
|
11307
11358
|
'user_identity_id',
|
|
11308
11359
|
'user_identity_key',
|
|
11309
11360
|
'email_address',
|
|
11361
|
+
'phone_number',
|
|
11310
11362
|
'display_name',
|
|
11311
11363
|
'full_name',
|
|
11312
11364
|
'created_at',
|
|
@@ -11446,6 +11498,7 @@ export default {
|
|
|
11446
11498
|
nullable: true,
|
|
11447
11499
|
type: 'string',
|
|
11448
11500
|
},
|
|
11501
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11449
11502
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11450
11503
|
user_identity_key: {
|
|
11451
11504
|
minLength: 1,
|
|
@@ -11458,6 +11511,7 @@ export default {
|
|
|
11458
11511
|
'user_identity_id',
|
|
11459
11512
|
'user_identity_key',
|
|
11460
11513
|
'email_address',
|
|
11514
|
+
'phone_number',
|
|
11461
11515
|
'display_name',
|
|
11462
11516
|
'full_name',
|
|
11463
11517
|
'created_at',
|
|
@@ -11512,6 +11566,7 @@ export default {
|
|
|
11512
11566
|
nullable: true,
|
|
11513
11567
|
type: 'string',
|
|
11514
11568
|
},
|
|
11569
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11515
11570
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11516
11571
|
user_identity_key: {
|
|
11517
11572
|
minLength: 1,
|
|
@@ -11524,6 +11579,7 @@ export default {
|
|
|
11524
11579
|
'user_identity_id',
|
|
11525
11580
|
'user_identity_key',
|
|
11526
11581
|
'email_address',
|
|
11582
|
+
'phone_number',
|
|
11527
11583
|
'display_name',
|
|
11528
11584
|
'full_name',
|
|
11529
11585
|
'created_at',
|
|
@@ -11606,6 +11662,56 @@ export default {
|
|
|
11606
11662
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
11607
11663
|
},
|
|
11608
11664
|
},
|
|
11665
|
+
'/user_identities/list_acs_systems': {
|
|
11666
|
+
post: {
|
|
11667
|
+
operationId: 'userIdentitiesListAcsSystemsPost',
|
|
11668
|
+
requestBody: {
|
|
11669
|
+
content: {
|
|
11670
|
+
'application/json': {
|
|
11671
|
+
schema: {
|
|
11672
|
+
properties: {
|
|
11673
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11674
|
+
},
|
|
11675
|
+
required: ['user_identity_id'],
|
|
11676
|
+
type: 'object',
|
|
11677
|
+
},
|
|
11678
|
+
},
|
|
11679
|
+
},
|
|
11680
|
+
},
|
|
11681
|
+
responses: {
|
|
11682
|
+
200: {
|
|
11683
|
+
content: {
|
|
11684
|
+
'application/json': {
|
|
11685
|
+
schema: {
|
|
11686
|
+
properties: {
|
|
11687
|
+
acs_systems: {
|
|
11688
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
11689
|
+
type: 'array',
|
|
11690
|
+
},
|
|
11691
|
+
ok: { type: 'boolean' },
|
|
11692
|
+
},
|
|
11693
|
+
required: ['acs_systems', 'ok'],
|
|
11694
|
+
type: 'object',
|
|
11695
|
+
},
|
|
11696
|
+
},
|
|
11697
|
+
},
|
|
11698
|
+
description: 'OK',
|
|
11699
|
+
},
|
|
11700
|
+
400: { description: 'Bad Request' },
|
|
11701
|
+
401: { description: 'Unauthorized' },
|
|
11702
|
+
},
|
|
11703
|
+
security: [
|
|
11704
|
+
{ client_session: [] },
|
|
11705
|
+
{ pat_with_workspace: [] },
|
|
11706
|
+
{ console_session: [] },
|
|
11707
|
+
{ api_key: [] },
|
|
11708
|
+
],
|
|
11709
|
+
summary: '/user_identities/list_acs_systems',
|
|
11710
|
+
tags: ['/user_identities'],
|
|
11711
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
11712
|
+
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
11713
|
+
},
|
|
11714
|
+
},
|
|
11609
11715
|
'/user_identities/list_acs_users': {
|
|
11610
11716
|
post: {
|
|
11611
11717
|
operationId: 'userIdentitiesListAcsUsersPost',
|