@seamapi/types 1.116.0 → 1.117.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 +15 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -91
- package/lib/seam/connect/openapi.d.ts +10 -90
- package/lib/seam/connect/openapi.js +11 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -64
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -6925,7 +6925,9 @@ export interface Routes {
|
|
|
6925
6925
|
method: 'GET' | 'POST';
|
|
6926
6926
|
queryParams: {};
|
|
6927
6927
|
jsonBody: {};
|
|
6928
|
-
commonParams: {
|
|
6928
|
+
commonParams: {
|
|
6929
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
6930
|
+
};
|
|
6929
6931
|
formData: {};
|
|
6930
6932
|
jsonResponse: {
|
|
6931
6933
|
user_identities: Array<{
|
package/package.json
CHANGED
|
@@ -11542,76 +11542,23 @@ export default {
|
|
|
11542
11542
|
},
|
|
11543
11543
|
},
|
|
11544
11544
|
'/user_identities/list': {
|
|
11545
|
-
|
|
11546
|
-
operationId: '
|
|
11547
|
-
|
|
11548
|
-
|
|
11549
|
-
|
|
11550
|
-
|
|
11551
|
-
|
|
11552
|
-
|
|
11553
|
-
|
|
11554
|
-
|
|
11555
|
-
items: {
|
|
11556
|
-
properties: {
|
|
11557
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
11558
|
-
display_name: { minLength: 1, type: 'string' },
|
|
11559
|
-
email_address: {
|
|
11560
|
-
format: 'email',
|
|
11561
|
-
nullable: true,
|
|
11562
|
-
type: 'string',
|
|
11563
|
-
},
|
|
11564
|
-
full_name: {
|
|
11565
|
-
minLength: 1,
|
|
11566
|
-
nullable: true,
|
|
11567
|
-
type: 'string',
|
|
11568
|
-
},
|
|
11569
|
-
phone_number: { nullable: true, type: 'string' },
|
|
11570
|
-
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11571
|
-
user_identity_key: {
|
|
11572
|
-
minLength: 1,
|
|
11573
|
-
nullable: true,
|
|
11574
|
-
type: 'string',
|
|
11575
|
-
},
|
|
11576
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
11577
|
-
},
|
|
11578
|
-
required: [
|
|
11579
|
-
'user_identity_id',
|
|
11580
|
-
'user_identity_key',
|
|
11581
|
-
'email_address',
|
|
11582
|
-
'phone_number',
|
|
11583
|
-
'display_name',
|
|
11584
|
-
'full_name',
|
|
11585
|
-
'created_at',
|
|
11586
|
-
'workspace_id',
|
|
11587
|
-
],
|
|
11588
|
-
type: 'object',
|
|
11589
|
-
},
|
|
11590
|
-
type: 'array',
|
|
11591
|
-
},
|
|
11545
|
+
post: {
|
|
11546
|
+
operationId: 'userIdentitiesListPost',
|
|
11547
|
+
requestBody: {
|
|
11548
|
+
content: {
|
|
11549
|
+
'application/json': {
|
|
11550
|
+
schema: {
|
|
11551
|
+
properties: {
|
|
11552
|
+
credential_manager_acs_system_id: {
|
|
11553
|
+
format: 'uuid',
|
|
11554
|
+
type: 'string',
|
|
11592
11555
|
},
|
|
11593
|
-
required: ['user_identities', 'ok'],
|
|
11594
|
-
type: 'object',
|
|
11595
11556
|
},
|
|
11557
|
+
type: 'object',
|
|
11596
11558
|
},
|
|
11597
11559
|
},
|
|
11598
|
-
description: 'OK',
|
|
11599
11560
|
},
|
|
11600
|
-
400: { description: 'Bad Request' },
|
|
11601
|
-
401: { description: 'Unauthorized' },
|
|
11602
11561
|
},
|
|
11603
|
-
security: [
|
|
11604
|
-
{ api_key: [] },
|
|
11605
|
-
{ client_session: [] },
|
|
11606
|
-
{ pat_with_workspace: [] },
|
|
11607
|
-
{ console_session: [] },
|
|
11608
|
-
],
|
|
11609
|
-
summary: '/user_identities/list',
|
|
11610
|
-
tags: ['/user_identities'],
|
|
11611
|
-
'x-fern-ignore': true,
|
|
11612
|
-
},
|
|
11613
|
-
post: {
|
|
11614
|
-
operationId: 'userIdentitiesListPost',
|
|
11615
11562
|
responses: {
|
|
11616
11563
|
200: {
|
|
11617
11564
|
content: {
|
|
@@ -9499,7 +9499,9 @@ export interface Routes {
|
|
|
9499
9499
|
method: 'GET' | 'POST'
|
|
9500
9500
|
queryParams: {}
|
|
9501
9501
|
jsonBody: {}
|
|
9502
|
-
commonParams: {
|
|
9502
|
+
commonParams: {
|
|
9503
|
+
credential_manager_acs_system_id?: string | undefined
|
|
9504
|
+
}
|
|
9503
9505
|
formData: {}
|
|
9504
9506
|
jsonResponse: {
|
|
9505
9507
|
user_identities: Array<{
|