@seamapi/types 1.116.0 → 1.118.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 +16 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -91
- package/lib/seam/connect/openapi.d.ts +13 -90
- package/lib/seam/connect/openapi.js +12 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -64
- package/src/lib/seam/connect/route-types.ts +4 -1
|
@@ -1643,6 +1643,7 @@ export interface Routes {
|
|
|
1643
1643
|
user_identifier_key?: string | undefined;
|
|
1644
1644
|
connect_webview_id?: string | undefined;
|
|
1645
1645
|
without_user_identifier_key?: boolean | undefined;
|
|
1646
|
+
user_identity_id?: string | undefined;
|
|
1646
1647
|
};
|
|
1647
1648
|
formData: {};
|
|
1648
1649
|
jsonResponse: {
|
|
@@ -6925,7 +6926,9 @@ export interface Routes {
|
|
|
6925
6926
|
method: 'GET' | 'POST';
|
|
6926
6927
|
queryParams: {};
|
|
6927
6928
|
jsonBody: {};
|
|
6928
|
-
commonParams: {
|
|
6929
|
+
commonParams: {
|
|
6930
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
6931
|
+
};
|
|
6929
6932
|
formData: {};
|
|
6930
6933
|
jsonResponse: {
|
|
6931
6934
|
user_identities: Array<{
|
package/package.json
CHANGED
|
@@ -6864,6 +6864,7 @@ export default {
|
|
|
6864
6864
|
client_session_id: { type: 'string' },
|
|
6865
6865
|
connect_webview_id: { type: 'string' },
|
|
6866
6866
|
user_identifier_key: { type: 'string' },
|
|
6867
|
+
user_identity_id: { type: 'string' },
|
|
6867
6868
|
without_user_identifier_key: { type: 'boolean' },
|
|
6868
6869
|
},
|
|
6869
6870
|
type: 'object',
|
|
@@ -11542,76 +11543,23 @@ export default {
|
|
|
11542
11543
|
},
|
|
11543
11544
|
},
|
|
11544
11545
|
'/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
|
-
},
|
|
11546
|
+
post: {
|
|
11547
|
+
operationId: 'userIdentitiesListPost',
|
|
11548
|
+
requestBody: {
|
|
11549
|
+
content: {
|
|
11550
|
+
'application/json': {
|
|
11551
|
+
schema: {
|
|
11552
|
+
properties: {
|
|
11553
|
+
credential_manager_acs_system_id: {
|
|
11554
|
+
format: 'uuid',
|
|
11555
|
+
type: 'string',
|
|
11592
11556
|
},
|
|
11593
|
-
required: ['user_identities', 'ok'],
|
|
11594
|
-
type: 'object',
|
|
11595
11557
|
},
|
|
11558
|
+
type: 'object',
|
|
11596
11559
|
},
|
|
11597
11560
|
},
|
|
11598
|
-
description: 'OK',
|
|
11599
11561
|
},
|
|
11600
|
-
400: { description: 'Bad Request' },
|
|
11601
|
-
401: { description: 'Unauthorized' },
|
|
11602
11562
|
},
|
|
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
11563
|
responses: {
|
|
11616
11564
|
200: {
|
|
11617
11565
|
content: {
|
|
@@ -1838,6 +1838,7 @@ export interface Routes {
|
|
|
1838
1838
|
user_identifier_key?: string | undefined
|
|
1839
1839
|
connect_webview_id?: string | undefined
|
|
1840
1840
|
without_user_identifier_key?: boolean | undefined
|
|
1841
|
+
user_identity_id?: string | undefined
|
|
1841
1842
|
}
|
|
1842
1843
|
formData: {}
|
|
1843
1844
|
jsonResponse: {
|
|
@@ -9499,7 +9500,9 @@ export interface Routes {
|
|
|
9499
9500
|
method: 'GET' | 'POST'
|
|
9500
9501
|
queryParams: {}
|
|
9501
9502
|
jsonBody: {}
|
|
9502
|
-
commonParams: {
|
|
9503
|
+
commonParams: {
|
|
9504
|
+
credential_manager_acs_system_id?: string | undefined
|
|
9505
|
+
}
|
|
9503
9506
|
formData: {}
|
|
9504
9507
|
jsonResponse: {
|
|
9505
9508
|
user_identities: Array<{
|