@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
|
@@ -7845,6 +7845,31 @@ export interface Routes {
|
|
|
7845
7845
|
}>;
|
|
7846
7846
|
};
|
|
7847
7847
|
};
|
|
7848
|
+
'/user_identities/list_acs_systems': {
|
|
7849
|
+
route: '/user_identities/list_acs_systems';
|
|
7850
|
+
method: 'GET' | 'POST';
|
|
7851
|
+
queryParams: {};
|
|
7852
|
+
jsonBody: {};
|
|
7853
|
+
commonParams: {
|
|
7854
|
+
user_identity_id: string;
|
|
7855
|
+
};
|
|
7856
|
+
formData: {};
|
|
7857
|
+
jsonResponse: {
|
|
7858
|
+
acs_systems: Array<{
|
|
7859
|
+
acs_system_id: string;
|
|
7860
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service';
|
|
7861
|
+
external_type_display_name: string;
|
|
7862
|
+
/** deprecated: use external_type */
|
|
7863
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service';
|
|
7864
|
+
/** deprecated: use external_type_display_name */
|
|
7865
|
+
system_type_display_name: string;
|
|
7866
|
+
name: string;
|
|
7867
|
+
created_at: string;
|
|
7868
|
+
workspace_id: string;
|
|
7869
|
+
connected_account_ids: string[];
|
|
7870
|
+
}>;
|
|
7871
|
+
};
|
|
7872
|
+
};
|
|
7848
7873
|
'/user_identities/list_acs_users': {
|
|
7849
7874
|
route: '/user_identities/list_acs_users';
|
|
7850
7875
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -11696,6 +11696,56 @@ export default {
|
|
|
11696
11696
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
11697
11697
|
},
|
|
11698
11698
|
},
|
|
11699
|
+
'/user_identities/list_acs_systems': {
|
|
11700
|
+
post: {
|
|
11701
|
+
operationId: 'userIdentitiesListAcsSystemsPost',
|
|
11702
|
+
requestBody: {
|
|
11703
|
+
content: {
|
|
11704
|
+
'application/json': {
|
|
11705
|
+
schema: {
|
|
11706
|
+
properties: {
|
|
11707
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11708
|
+
},
|
|
11709
|
+
required: ['user_identity_id'],
|
|
11710
|
+
type: 'object',
|
|
11711
|
+
},
|
|
11712
|
+
},
|
|
11713
|
+
},
|
|
11714
|
+
},
|
|
11715
|
+
responses: {
|
|
11716
|
+
200: {
|
|
11717
|
+
content: {
|
|
11718
|
+
'application/json': {
|
|
11719
|
+
schema: {
|
|
11720
|
+
properties: {
|
|
11721
|
+
acs_systems: {
|
|
11722
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
11723
|
+
type: 'array',
|
|
11724
|
+
},
|
|
11725
|
+
ok: { type: 'boolean' },
|
|
11726
|
+
},
|
|
11727
|
+
required: ['acs_systems', 'ok'],
|
|
11728
|
+
type: 'object',
|
|
11729
|
+
},
|
|
11730
|
+
},
|
|
11731
|
+
},
|
|
11732
|
+
description: 'OK',
|
|
11733
|
+
},
|
|
11734
|
+
400: { description: 'Bad Request' },
|
|
11735
|
+
401: { description: 'Unauthorized' },
|
|
11736
|
+
},
|
|
11737
|
+
security: [
|
|
11738
|
+
{ client_session: [] },
|
|
11739
|
+
{ pat_with_workspace: [] },
|
|
11740
|
+
{ console_session: [] },
|
|
11741
|
+
{ api_key: [] },
|
|
11742
|
+
],
|
|
11743
|
+
summary: '/user_identities/list_acs_systems',
|
|
11744
|
+
tags: [],
|
|
11745
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
11746
|
+
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
11747
|
+
},
|
|
11748
|
+
},
|
|
11699
11749
|
'/user_identities/list_acs_users': {
|
|
11700
11750
|
post: {
|
|
11701
11751
|
operationId: 'userIdentitiesListAcsUsersPost',
|
|
@@ -10823,6 +10823,45 @@ export interface Routes {
|
|
|
10823
10823
|
}>
|
|
10824
10824
|
}
|
|
10825
10825
|
}
|
|
10826
|
+
'/user_identities/list_acs_systems': {
|
|
10827
|
+
route: '/user_identities/list_acs_systems'
|
|
10828
|
+
method: 'GET' | 'POST'
|
|
10829
|
+
queryParams: {}
|
|
10830
|
+
jsonBody: {}
|
|
10831
|
+
commonParams: {
|
|
10832
|
+
user_identity_id: string
|
|
10833
|
+
}
|
|
10834
|
+
formData: {}
|
|
10835
|
+
jsonResponse: {
|
|
10836
|
+
acs_systems: Array<{
|
|
10837
|
+
acs_system_id: string
|
|
10838
|
+
external_type:
|
|
10839
|
+
| 'pti_site'
|
|
10840
|
+
| 'alta_org'
|
|
10841
|
+
| 'salto_site'
|
|
10842
|
+
| 'brivo_account'
|
|
10843
|
+
| 'hid_credential_manager_organization'
|
|
10844
|
+
| 'visionline_system'
|
|
10845
|
+
| 'assa_abloy_credential_service'
|
|
10846
|
+
external_type_display_name: string
|
|
10847
|
+
/** deprecated: use external_type */
|
|
10848
|
+
system_type:
|
|
10849
|
+
| 'pti_site'
|
|
10850
|
+
| 'alta_org'
|
|
10851
|
+
| 'salto_site'
|
|
10852
|
+
| 'brivo_account'
|
|
10853
|
+
| 'hid_credential_manager_organization'
|
|
10854
|
+
| 'visionline_system'
|
|
10855
|
+
| 'assa_abloy_credential_service'
|
|
10856
|
+
/** deprecated: use external_type_display_name */
|
|
10857
|
+
system_type_display_name: string
|
|
10858
|
+
name: string
|
|
10859
|
+
created_at: string
|
|
10860
|
+
workspace_id: string
|
|
10861
|
+
connected_account_ids: string[]
|
|
10862
|
+
}>
|
|
10863
|
+
}
|
|
10864
|
+
}
|
|
10826
10865
|
'/user_identities/list_acs_users': {
|
|
10827
10866
|
route: '/user_identities/list_acs_users'
|
|
10828
10867
|
method: 'GET' | 'POST'
|