@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
package/dist/connect.d.cts
CHANGED
|
@@ -11178,10 +11178,6 @@ declare const _default: {
|
|
|
11178
11178
|
default: boolean;
|
|
11179
11179
|
type: string;
|
|
11180
11180
|
};
|
|
11181
|
-
location: {
|
|
11182
|
-
properties: {};
|
|
11183
|
-
type: string;
|
|
11184
|
-
};
|
|
11185
11181
|
name: {
|
|
11186
11182
|
nullable: boolean;
|
|
11187
11183
|
type: string;
|
|
@@ -11261,10 +11257,6 @@ declare const _default: {
|
|
|
11261
11257
|
default: boolean;
|
|
11262
11258
|
type: string;
|
|
11263
11259
|
};
|
|
11264
|
-
location: {
|
|
11265
|
-
properties: {};
|
|
11266
|
-
type: string;
|
|
11267
|
-
};
|
|
11268
11260
|
name: {
|
|
11269
11261
|
nullable: boolean;
|
|
11270
11262
|
type: string;
|
|
@@ -15548,6 +15540,82 @@ declare const _default: {
|
|
|
15548
15540
|
'x-fern-sdk-method-name': string;
|
|
15549
15541
|
};
|
|
15550
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
|
+
};
|
|
15551
15619
|
'/user_identities/list_acs_users': {
|
|
15552
15620
|
post: {
|
|
15553
15621
|
operationId: string;
|
|
@@ -19319,7 +19387,6 @@ interface Routes {
|
|
|
19319
19387
|
name?: (string | null) | undefined;
|
|
19320
19388
|
} | undefined;
|
|
19321
19389
|
name?: (string | null) | undefined;
|
|
19322
|
-
location?: {} | undefined;
|
|
19323
19390
|
is_managed?: boolean;
|
|
19324
19391
|
};
|
|
19325
19392
|
formData: {};
|
|
@@ -24327,6 +24394,31 @@ interface Routes {
|
|
|
24327
24394
|
}>;
|
|
24328
24395
|
};
|
|
24329
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
|
+
};
|
|
24330
24422
|
'/user_identities/list_acs_users': {
|
|
24331
24423
|
route: '/user_identities/list_acs_users';
|
|
24332
24424
|
method: 'GET' | 'POST';
|
|
@@ -11104,10 +11104,6 @@ declare const _default: {
|
|
|
11104
11104
|
default: boolean;
|
|
11105
11105
|
type: string;
|
|
11106
11106
|
};
|
|
11107
|
-
location: {
|
|
11108
|
-
properties: {};
|
|
11109
|
-
type: string;
|
|
11110
|
-
};
|
|
11111
11107
|
name: {
|
|
11112
11108
|
nullable: boolean;
|
|
11113
11109
|
type: string;
|
|
@@ -11187,10 +11183,6 @@ declare const _default: {
|
|
|
11187
11183
|
default: boolean;
|
|
11188
11184
|
type: string;
|
|
11189
11185
|
};
|
|
11190
|
-
location: {
|
|
11191
|
-
properties: {};
|
|
11192
|
-
type: string;
|
|
11193
|
-
};
|
|
11194
11186
|
name: {
|
|
11195
11187
|
nullable: boolean;
|
|
11196
11188
|
type: string;
|
|
@@ -15474,6 +15466,82 @@ declare const _default: {
|
|
|
15474
15466
|
'x-fern-sdk-method-name': string;
|
|
15475
15467
|
};
|
|
15476
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
|
+
};
|
|
15477
15545
|
'/user_identities/list_acs_users': {
|
|
15478
15546
|
post: {
|
|
15479
15547
|
operationId: string;
|
|
@@ -8350,7 +8350,6 @@ export default {
|
|
|
8350
8350
|
properties: {
|
|
8351
8351
|
device_id: { format: 'uuid', type: 'string' },
|
|
8352
8352
|
is_managed: { default: true, type: 'boolean' },
|
|
8353
|
-
location: { properties: {}, type: 'object' },
|
|
8354
8353
|
name: { nullable: true, type: 'string' },
|
|
8355
8354
|
properties: {
|
|
8356
8355
|
properties: { name: { nullable: true, type: 'string' } },
|
|
@@ -8397,7 +8396,6 @@ export default {
|
|
|
8397
8396
|
properties: {
|
|
8398
8397
|
device_id: { format: 'uuid', type: 'string' },
|
|
8399
8398
|
is_managed: { default: true, type: 'boolean' },
|
|
8400
|
-
location: { properties: {}, type: 'object' },
|
|
8401
8399
|
name: { nullable: true, type: 'string' },
|
|
8402
8400
|
properties: {
|
|
8403
8401
|
properties: { name: { nullable: true, type: 'string' } },
|
|
@@ -11608,6 +11606,56 @@ export default {
|
|
|
11608
11606
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
11609
11607
|
},
|
|
11610
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
|
+
},
|
|
11611
11659
|
'/user_identities/list_acs_users': {
|
|
11612
11660
|
post: {
|
|
11613
11661
|
operationId: 'userIdentitiesListAcsUsersPost',
|