@seamapi/types 1.171.0 → 1.172.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 +56 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +108 -0
- package/lib/seam/connect/openapi.d.ts +69 -0
- package/lib/seam/connect/openapi.js +56 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +57 -6
- package/src/lib/seam/connect/route-types.ts +61 -0
|
@@ -1310,6 +1310,45 @@ export interface Routes {
|
|
|
1310
1310
|
}>;
|
|
1311
1311
|
};
|
|
1312
1312
|
};
|
|
1313
|
+
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
1314
|
+
route: '/acs/systems/list_compatible_credential_manager_acs_systems';
|
|
1315
|
+
method: 'GET' | 'POST';
|
|
1316
|
+
queryParams: {};
|
|
1317
|
+
jsonBody: {};
|
|
1318
|
+
commonParams: {
|
|
1319
|
+
acs_system_id: string;
|
|
1320
|
+
};
|
|
1321
|
+
formData: {};
|
|
1322
|
+
jsonResponse: {
|
|
1323
|
+
acs_systems: Array<{
|
|
1324
|
+
acs_system_id: string;
|
|
1325
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
1326
|
+
external_type_display_name?: string | undefined;
|
|
1327
|
+
/**
|
|
1328
|
+
---
|
|
1329
|
+
deprecated: use external_type
|
|
1330
|
+
---
|
|
1331
|
+
*/
|
|
1332
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
1333
|
+
/**
|
|
1334
|
+
---
|
|
1335
|
+
deprecated: use external_type_display_name
|
|
1336
|
+
---
|
|
1337
|
+
*/
|
|
1338
|
+
system_type_display_name?: string | undefined;
|
|
1339
|
+
name: string;
|
|
1340
|
+
created_at: string;
|
|
1341
|
+
workspace_id: string;
|
|
1342
|
+
connected_account_ids: string[];
|
|
1343
|
+
image_url: string;
|
|
1344
|
+
image_alt_text: string;
|
|
1345
|
+
can_automate_enrollment?: boolean | undefined;
|
|
1346
|
+
can_create_acs_access_groups?: boolean | undefined;
|
|
1347
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
1348
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
1349
|
+
}>;
|
|
1350
|
+
};
|
|
1351
|
+
};
|
|
1313
1352
|
'/acs/users/add_to_access_group': {
|
|
1314
1353
|
route: '/acs/users/add_to_access_group';
|
|
1315
1354
|
method: 'PUT' | 'POST';
|
package/package.json
CHANGED
|
@@ -2748,7 +2748,7 @@ export default {
|
|
|
2748
2748
|
type: 'boolean',
|
|
2749
2749
|
},
|
|
2750
2750
|
code: {
|
|
2751
|
-
maxLength:
|
|
2751
|
+
maxLength: 9,
|
|
2752
2752
|
minLength: 4,
|
|
2753
2753
|
pattern: '^\\d+$',
|
|
2754
2754
|
type: 'string',
|
|
@@ -2831,7 +2831,7 @@ export default {
|
|
|
2831
2831
|
type: 'string',
|
|
2832
2832
|
},
|
|
2833
2833
|
code: {
|
|
2834
|
-
maxLength:
|
|
2834
|
+
maxLength: 9,
|
|
2835
2835
|
minLength: 4,
|
|
2836
2836
|
pattern: '^\\d+$',
|
|
2837
2837
|
type: 'string',
|
|
@@ -2914,7 +2914,7 @@ export default {
|
|
|
2914
2914
|
type: 'string',
|
|
2915
2915
|
},
|
|
2916
2916
|
code: {
|
|
2917
|
-
maxLength:
|
|
2917
|
+
maxLength: 9,
|
|
2918
2918
|
minLength: 4,
|
|
2919
2919
|
pattern: '^\\d+$',
|
|
2920
2920
|
type: 'string',
|
|
@@ -3644,7 +3644,7 @@ export default {
|
|
|
3644
3644
|
type: 'boolean',
|
|
3645
3645
|
},
|
|
3646
3646
|
code: {
|
|
3647
|
-
maxLength:
|
|
3647
|
+
maxLength: 9,
|
|
3648
3648
|
minLength: 4,
|
|
3649
3649
|
pattern: '^\\d+$',
|
|
3650
3650
|
type: 'string',
|
|
@@ -3719,7 +3719,7 @@ export default {
|
|
|
3719
3719
|
type: 'boolean',
|
|
3720
3720
|
},
|
|
3721
3721
|
code: {
|
|
3722
|
-
maxLength:
|
|
3722
|
+
maxLength: 9,
|
|
3723
3723
|
minLength: 4,
|
|
3724
3724
|
pattern: '^\\d+$',
|
|
3725
3725
|
type: 'string',
|
|
@@ -3795,7 +3795,7 @@ export default {
|
|
|
3795
3795
|
type: 'boolean',
|
|
3796
3796
|
},
|
|
3797
3797
|
code: {
|
|
3798
|
-
maxLength:
|
|
3798
|
+
maxLength: 9,
|
|
3799
3799
|
minLength: 4,
|
|
3800
3800
|
pattern: '^\\d+$',
|
|
3801
3801
|
type: 'string',
|
|
@@ -5115,6 +5115,57 @@ export default {
|
|
|
5115
5115
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
5116
5116
|
},
|
|
5117
5117
|
},
|
|
5118
|
+
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
5119
|
+
post: {
|
|
5120
|
+
operationId: 'acsSystemsListCompatibleCredentialManagerAcsSystemsPost',
|
|
5121
|
+
requestBody: {
|
|
5122
|
+
content: {
|
|
5123
|
+
'application/json': {
|
|
5124
|
+
schema: {
|
|
5125
|
+
properties: {
|
|
5126
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5127
|
+
},
|
|
5128
|
+
required: ['acs_system_id'],
|
|
5129
|
+
type: 'object',
|
|
5130
|
+
},
|
|
5131
|
+
},
|
|
5132
|
+
},
|
|
5133
|
+
},
|
|
5134
|
+
responses: {
|
|
5135
|
+
200: {
|
|
5136
|
+
content: {
|
|
5137
|
+
'application/json': {
|
|
5138
|
+
schema: {
|
|
5139
|
+
properties: {
|
|
5140
|
+
acs_systems: {
|
|
5141
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
5142
|
+
type: 'array',
|
|
5143
|
+
},
|
|
5144
|
+
ok: { type: 'boolean' },
|
|
5145
|
+
},
|
|
5146
|
+
required: ['acs_systems', 'ok'],
|
|
5147
|
+
type: 'object',
|
|
5148
|
+
},
|
|
5149
|
+
},
|
|
5150
|
+
},
|
|
5151
|
+
description: 'OK',
|
|
5152
|
+
},
|
|
5153
|
+
400: { description: 'Bad Request' },
|
|
5154
|
+
401: { description: 'Unauthorized' },
|
|
5155
|
+
},
|
|
5156
|
+
security: [
|
|
5157
|
+
{ pat_with_workspace: [] },
|
|
5158
|
+
{ console_session: [] },
|
|
5159
|
+
{ api_key: [] },
|
|
5160
|
+
],
|
|
5161
|
+
summary: '/acs/systems/list_compatible_credential_manager_acs_systems',
|
|
5162
|
+
tags: ['/acs'],
|
|
5163
|
+
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
5164
|
+
'x-fern-sdk-method-name':
|
|
5165
|
+
'list_compatible_credential_manager_acs_systems',
|
|
5166
|
+
'x-fern-sdk-return-value': 'acs_systems',
|
|
5167
|
+
},
|
|
5168
|
+
},
|
|
5118
5169
|
'/acs/users/add_to_access_group': {
|
|
5119
5170
|
post: {
|
|
5120
5171
|
operationId: 'acsUsersAddToAccessGroupPost',
|
|
@@ -1478,6 +1478,67 @@ export interface Routes {
|
|
|
1478
1478
|
}>
|
|
1479
1479
|
}
|
|
1480
1480
|
}
|
|
1481
|
+
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
1482
|
+
route: '/acs/systems/list_compatible_credential_manager_acs_systems'
|
|
1483
|
+
method: 'GET' | 'POST'
|
|
1484
|
+
queryParams: {}
|
|
1485
|
+
jsonBody: {}
|
|
1486
|
+
commonParams: {
|
|
1487
|
+
acs_system_id: string
|
|
1488
|
+
}
|
|
1489
|
+
formData: {}
|
|
1490
|
+
jsonResponse: {
|
|
1491
|
+
acs_systems: Array<{
|
|
1492
|
+
acs_system_id: string
|
|
1493
|
+
external_type?:
|
|
1494
|
+
| (
|
|
1495
|
+
| 'pti_site'
|
|
1496
|
+
| 'alta_org'
|
|
1497
|
+
| 'salto_site'
|
|
1498
|
+
| 'brivo_account'
|
|
1499
|
+
| 'hid_credential_manager_organization'
|
|
1500
|
+
| 'visionline_system'
|
|
1501
|
+
| 'assa_abloy_credential_service'
|
|
1502
|
+
| 'latch_building'
|
|
1503
|
+
)
|
|
1504
|
+
| undefined
|
|
1505
|
+
external_type_display_name?: string | undefined
|
|
1506
|
+
/**
|
|
1507
|
+
---
|
|
1508
|
+
deprecated: use external_type
|
|
1509
|
+
---
|
|
1510
|
+
*/
|
|
1511
|
+
system_type?:
|
|
1512
|
+
| (
|
|
1513
|
+
| 'pti_site'
|
|
1514
|
+
| 'alta_org'
|
|
1515
|
+
| 'salto_site'
|
|
1516
|
+
| 'brivo_account'
|
|
1517
|
+
| 'hid_credential_manager_organization'
|
|
1518
|
+
| 'visionline_system'
|
|
1519
|
+
| 'assa_abloy_credential_service'
|
|
1520
|
+
| 'latch_building'
|
|
1521
|
+
)
|
|
1522
|
+
| undefined
|
|
1523
|
+
/**
|
|
1524
|
+
---
|
|
1525
|
+
deprecated: use external_type_display_name
|
|
1526
|
+
---
|
|
1527
|
+
*/
|
|
1528
|
+
system_type_display_name?: string | undefined
|
|
1529
|
+
name: string
|
|
1530
|
+
created_at: string
|
|
1531
|
+
workspace_id: string
|
|
1532
|
+
connected_account_ids: string[]
|
|
1533
|
+
image_url: string
|
|
1534
|
+
image_alt_text: string
|
|
1535
|
+
can_automate_enrollment?: boolean | undefined
|
|
1536
|
+
can_create_acs_access_groups?: boolean | undefined
|
|
1537
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined
|
|
1538
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined
|
|
1539
|
+
}>
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1481
1542
|
'/acs/users/add_to_access_group': {
|
|
1482
1543
|
route: '/acs/users/add_to_access_group'
|
|
1483
1544
|
method: 'PUT' | 'POST'
|