@seamapi/types 1.80.0 → 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 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +101 -9
- package/lib/seam/connect/openapi.d.ts +76 -8
- package/lib/seam/connect/openapi.js +50 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -2
- package/src/lib/seam/connect/route-types.ts +39 -1
|
@@ -2838,7 +2838,6 @@ export interface Routes {
|
|
|
2838
2838
|
name?: (string | null) | undefined;
|
|
2839
2839
|
} | undefined;
|
|
2840
2840
|
name?: (string | null) | undefined;
|
|
2841
|
-
location?: {} | undefined;
|
|
2842
2841
|
is_managed?: boolean;
|
|
2843
2842
|
};
|
|
2844
2843
|
formData: {};
|
|
@@ -7846,6 +7845,31 @@ export interface Routes {
|
|
|
7846
7845
|
}>;
|
|
7847
7846
|
};
|
|
7848
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
|
+
};
|
|
7849
7873
|
'/user_identities/list_acs_users': {
|
|
7850
7874
|
route: '/user_identities/list_acs_users';
|
|
7851
7875
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -8438,7 +8438,6 @@ export default {
|
|
|
8438
8438
|
properties: {
|
|
8439
8439
|
device_id: { format: 'uuid', type: 'string' },
|
|
8440
8440
|
is_managed: { default: true, type: 'boolean' },
|
|
8441
|
-
location: { properties: {}, type: 'object' },
|
|
8442
8441
|
name: { nullable: true, type: 'string' },
|
|
8443
8442
|
properties: {
|
|
8444
8443
|
properties: { name: { nullable: true, type: 'string' } },
|
|
@@ -8485,7 +8484,6 @@ export default {
|
|
|
8485
8484
|
properties: {
|
|
8486
8485
|
device_id: { format: 'uuid', type: 'string' },
|
|
8487
8486
|
is_managed: { default: true, type: 'boolean' },
|
|
8488
|
-
location: { properties: {}, type: 'object' },
|
|
8489
8487
|
name: { nullable: true, type: 'string' },
|
|
8490
8488
|
properties: {
|
|
8491
8489
|
properties: { name: { nullable: true, type: 'string' } },
|
|
@@ -11698,6 +11696,56 @@ export default {
|
|
|
11698
11696
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
11699
11697
|
},
|
|
11700
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
|
+
},
|
|
11701
11749
|
'/user_identities/list_acs_users': {
|
|
11702
11750
|
post: {
|
|
11703
11751
|
operationId: 'userIdentitiesListAcsUsersPost',
|
|
@@ -3737,7 +3737,6 @@ export interface Routes {
|
|
|
3737
3737
|
}
|
|
3738
3738
|
| undefined
|
|
3739
3739
|
name?: (string | null) | undefined
|
|
3740
|
-
location?: {} | undefined
|
|
3741
3740
|
is_managed?: boolean
|
|
3742
3741
|
}
|
|
3743
3742
|
formData: {}
|
|
@@ -10824,6 +10823,45 @@ export interface Routes {
|
|
|
10824
10823
|
}>
|
|
10825
10824
|
}
|
|
10826
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
|
+
}
|
|
10827
10865
|
'/user_identities/list_acs_users': {
|
|
10828
10866
|
route: '/user_identities/list_acs_users'
|
|
10829
10867
|
method: 'GET' | 'POST'
|