@seamapi/types 1.80.1 → 1.81.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 +50 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +101 -0
- package/lib/seam/connect/openapi.d.ts +76 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +39 -0
package/dist/connect.d.cts
CHANGED
|
@@ -15540,6 +15540,82 @@ declare const _default: {
|
|
|
15540
15540
|
'x-fern-sdk-method-name': string;
|
|
15541
15541
|
};
|
|
15542
15542
|
};
|
|
15543
|
+
'/user_identities/list_acs_systems': {
|
|
15544
|
+
post: {
|
|
15545
|
+
operationId: string;
|
|
15546
|
+
requestBody: {
|
|
15547
|
+
content: {
|
|
15548
|
+
'application/json': {
|
|
15549
|
+
schema: {
|
|
15550
|
+
properties: {
|
|
15551
|
+
user_identity_id: {
|
|
15552
|
+
format: string;
|
|
15553
|
+
type: string;
|
|
15554
|
+
};
|
|
15555
|
+
};
|
|
15556
|
+
required: string[];
|
|
15557
|
+
type: string;
|
|
15558
|
+
};
|
|
15559
|
+
};
|
|
15560
|
+
};
|
|
15561
|
+
};
|
|
15562
|
+
responses: {
|
|
15563
|
+
200: {
|
|
15564
|
+
content: {
|
|
15565
|
+
'application/json': {
|
|
15566
|
+
schema: {
|
|
15567
|
+
properties: {
|
|
15568
|
+
acs_systems: {
|
|
15569
|
+
items: {
|
|
15570
|
+
$ref: string;
|
|
15571
|
+
};
|
|
15572
|
+
type: string;
|
|
15573
|
+
};
|
|
15574
|
+
ok: {
|
|
15575
|
+
type: string;
|
|
15576
|
+
};
|
|
15577
|
+
};
|
|
15578
|
+
required: string[];
|
|
15579
|
+
type: string;
|
|
15580
|
+
};
|
|
15581
|
+
};
|
|
15582
|
+
};
|
|
15583
|
+
description: string;
|
|
15584
|
+
};
|
|
15585
|
+
400: {
|
|
15586
|
+
description: string;
|
|
15587
|
+
};
|
|
15588
|
+
401: {
|
|
15589
|
+
description: string;
|
|
15590
|
+
};
|
|
15591
|
+
};
|
|
15592
|
+
security: ({
|
|
15593
|
+
client_session: never[];
|
|
15594
|
+
pat_with_workspace?: never;
|
|
15595
|
+
console_session?: never;
|
|
15596
|
+
api_key?: never;
|
|
15597
|
+
} | {
|
|
15598
|
+
pat_with_workspace: never[];
|
|
15599
|
+
client_session?: never;
|
|
15600
|
+
console_session?: never;
|
|
15601
|
+
api_key?: never;
|
|
15602
|
+
} | {
|
|
15603
|
+
console_session: never[];
|
|
15604
|
+
client_session?: never;
|
|
15605
|
+
pat_with_workspace?: never;
|
|
15606
|
+
api_key?: never;
|
|
15607
|
+
} | {
|
|
15608
|
+
api_key: never[];
|
|
15609
|
+
client_session?: never;
|
|
15610
|
+
pat_with_workspace?: never;
|
|
15611
|
+
console_session?: never;
|
|
15612
|
+
})[];
|
|
15613
|
+
summary: string;
|
|
15614
|
+
tags: never[];
|
|
15615
|
+
'x-fern-sdk-group-name': string[];
|
|
15616
|
+
'x-fern-sdk-method-name': string;
|
|
15617
|
+
};
|
|
15618
|
+
};
|
|
15543
15619
|
'/user_identities/list_acs_users': {
|
|
15544
15620
|
post: {
|
|
15545
15621
|
operationId: string;
|
|
@@ -24318,6 +24394,31 @@ interface Routes {
|
|
|
24318
24394
|
}>;
|
|
24319
24395
|
};
|
|
24320
24396
|
};
|
|
24397
|
+
'/user_identities/list_acs_systems': {
|
|
24398
|
+
route: '/user_identities/list_acs_systems';
|
|
24399
|
+
method: 'GET' | 'POST';
|
|
24400
|
+
queryParams: {};
|
|
24401
|
+
jsonBody: {};
|
|
24402
|
+
commonParams: {
|
|
24403
|
+
user_identity_id: string;
|
|
24404
|
+
};
|
|
24405
|
+
formData: {};
|
|
24406
|
+
jsonResponse: {
|
|
24407
|
+
acs_systems: Array<{
|
|
24408
|
+
acs_system_id: string;
|
|
24409
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service';
|
|
24410
|
+
external_type_display_name: string;
|
|
24411
|
+
/** deprecated: use external_type */
|
|
24412
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service';
|
|
24413
|
+
/** deprecated: use external_type_display_name */
|
|
24414
|
+
system_type_display_name: string;
|
|
24415
|
+
name: string;
|
|
24416
|
+
created_at: string;
|
|
24417
|
+
workspace_id: string;
|
|
24418
|
+
connected_account_ids: string[];
|
|
24419
|
+
}>;
|
|
24420
|
+
};
|
|
24421
|
+
};
|
|
24321
24422
|
'/user_identities/list_acs_users': {
|
|
24322
24423
|
route: '/user_identities/list_acs_users';
|
|
24323
24424
|
method: 'GET' | 'POST';
|
|
@@ -15466,6 +15466,82 @@ declare const _default: {
|
|
|
15466
15466
|
'x-fern-sdk-method-name': string;
|
|
15467
15467
|
};
|
|
15468
15468
|
};
|
|
15469
|
+
'/user_identities/list_acs_systems': {
|
|
15470
|
+
post: {
|
|
15471
|
+
operationId: string;
|
|
15472
|
+
requestBody: {
|
|
15473
|
+
content: {
|
|
15474
|
+
'application/json': {
|
|
15475
|
+
schema: {
|
|
15476
|
+
properties: {
|
|
15477
|
+
user_identity_id: {
|
|
15478
|
+
format: string;
|
|
15479
|
+
type: string;
|
|
15480
|
+
};
|
|
15481
|
+
};
|
|
15482
|
+
required: string[];
|
|
15483
|
+
type: string;
|
|
15484
|
+
};
|
|
15485
|
+
};
|
|
15486
|
+
};
|
|
15487
|
+
};
|
|
15488
|
+
responses: {
|
|
15489
|
+
200: {
|
|
15490
|
+
content: {
|
|
15491
|
+
'application/json': {
|
|
15492
|
+
schema: {
|
|
15493
|
+
properties: {
|
|
15494
|
+
acs_systems: {
|
|
15495
|
+
items: {
|
|
15496
|
+
$ref: string;
|
|
15497
|
+
};
|
|
15498
|
+
type: string;
|
|
15499
|
+
};
|
|
15500
|
+
ok: {
|
|
15501
|
+
type: string;
|
|
15502
|
+
};
|
|
15503
|
+
};
|
|
15504
|
+
required: string[];
|
|
15505
|
+
type: string;
|
|
15506
|
+
};
|
|
15507
|
+
};
|
|
15508
|
+
};
|
|
15509
|
+
description: string;
|
|
15510
|
+
};
|
|
15511
|
+
400: {
|
|
15512
|
+
description: string;
|
|
15513
|
+
};
|
|
15514
|
+
401: {
|
|
15515
|
+
description: string;
|
|
15516
|
+
};
|
|
15517
|
+
};
|
|
15518
|
+
security: ({
|
|
15519
|
+
client_session: never[];
|
|
15520
|
+
pat_with_workspace?: never;
|
|
15521
|
+
console_session?: never;
|
|
15522
|
+
api_key?: never;
|
|
15523
|
+
} | {
|
|
15524
|
+
pat_with_workspace: never[];
|
|
15525
|
+
client_session?: never;
|
|
15526
|
+
console_session?: never;
|
|
15527
|
+
api_key?: never;
|
|
15528
|
+
} | {
|
|
15529
|
+
console_session: never[];
|
|
15530
|
+
client_session?: never;
|
|
15531
|
+
pat_with_workspace?: never;
|
|
15532
|
+
api_key?: never;
|
|
15533
|
+
} | {
|
|
15534
|
+
api_key: never[];
|
|
15535
|
+
client_session?: never;
|
|
15536
|
+
pat_with_workspace?: never;
|
|
15537
|
+
console_session?: never;
|
|
15538
|
+
})[];
|
|
15539
|
+
summary: string;
|
|
15540
|
+
tags: never[];
|
|
15541
|
+
'x-fern-sdk-group-name': string[];
|
|
15542
|
+
'x-fern-sdk-method-name': string;
|
|
15543
|
+
};
|
|
15544
|
+
};
|
|
15469
15545
|
'/user_identities/list_acs_users': {
|
|
15470
15546
|
post: {
|
|
15471
15547
|
operationId: string;
|
|
@@ -11606,6 +11606,56 @@ export default {
|
|
|
11606
11606
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
11607
11607
|
},
|
|
11608
11608
|
},
|
|
11609
|
+
'/user_identities/list_acs_systems': {
|
|
11610
|
+
post: {
|
|
11611
|
+
operationId: 'userIdentitiesListAcsSystemsPost',
|
|
11612
|
+
requestBody: {
|
|
11613
|
+
content: {
|
|
11614
|
+
'application/json': {
|
|
11615
|
+
schema: {
|
|
11616
|
+
properties: {
|
|
11617
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11618
|
+
},
|
|
11619
|
+
required: ['user_identity_id'],
|
|
11620
|
+
type: 'object',
|
|
11621
|
+
},
|
|
11622
|
+
},
|
|
11623
|
+
},
|
|
11624
|
+
},
|
|
11625
|
+
responses: {
|
|
11626
|
+
200: {
|
|
11627
|
+
content: {
|
|
11628
|
+
'application/json': {
|
|
11629
|
+
schema: {
|
|
11630
|
+
properties: {
|
|
11631
|
+
acs_systems: {
|
|
11632
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
11633
|
+
type: 'array',
|
|
11634
|
+
},
|
|
11635
|
+
ok: { type: 'boolean' },
|
|
11636
|
+
},
|
|
11637
|
+
required: ['acs_systems', 'ok'],
|
|
11638
|
+
type: 'object',
|
|
11639
|
+
},
|
|
11640
|
+
},
|
|
11641
|
+
},
|
|
11642
|
+
description: 'OK',
|
|
11643
|
+
},
|
|
11644
|
+
400: { description: 'Bad Request' },
|
|
11645
|
+
401: { description: 'Unauthorized' },
|
|
11646
|
+
},
|
|
11647
|
+
security: [
|
|
11648
|
+
{ client_session: [] },
|
|
11649
|
+
{ pat_with_workspace: [] },
|
|
11650
|
+
{ console_session: [] },
|
|
11651
|
+
{ api_key: [] },
|
|
11652
|
+
],
|
|
11653
|
+
summary: '/user_identities/list_acs_systems',
|
|
11654
|
+
tags: [],
|
|
11655
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
11656
|
+
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
11657
|
+
},
|
|
11658
|
+
},
|
|
11609
11659
|
'/user_identities/list_acs_users': {
|
|
11610
11660
|
post: {
|
|
11611
11661
|
operationId: 'userIdentitiesListAcsUsersPost',
|