@seamapi/types 1.144.0 → 1.145.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 +4 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +9 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5752,6 +5752,10 @@ declare const _default: {
|
|
|
5752
5752
|
pattern: string;
|
|
5753
5753
|
type: string;
|
|
5754
5754
|
};
|
|
5755
|
+
credential_manager_acs_system_id: {
|
|
5756
|
+
format: string;
|
|
5757
|
+
type: string;
|
|
5758
|
+
};
|
|
5755
5759
|
ends_at: {
|
|
5756
5760
|
format: string;
|
|
5757
5761
|
type: string;
|
|
@@ -18168,6 +18172,7 @@ interface Routes {
|
|
|
18168
18172
|
queryParams: {};
|
|
18169
18173
|
jsonBody: {};
|
|
18170
18174
|
commonParams: {
|
|
18175
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
18171
18176
|
acs_user_id: string;
|
|
18172
18177
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18173
18178
|
code?: string | undefined;
|
|
@@ -18944,6 +18949,10 @@ interface Routes {
|
|
|
18944
18949
|
user_identifier_key: string | null;
|
|
18945
18950
|
created_at: string;
|
|
18946
18951
|
token: string;
|
|
18952
|
+
device_count: number;
|
|
18953
|
+
connected_account_ids: string[];
|
|
18954
|
+
connect_webview_ids: string[];
|
|
18955
|
+
user_identity_ids: string[];
|
|
18947
18956
|
workspace_id: string;
|
|
18948
18957
|
};
|
|
18949
18958
|
};
|
|
@@ -19002,6 +19011,10 @@ interface Routes {
|
|
|
19002
19011
|
user_identifier_key: string | null;
|
|
19003
19012
|
created_at: string;
|
|
19004
19013
|
token: string;
|
|
19014
|
+
device_count: number;
|
|
19015
|
+
connected_account_ids: string[];
|
|
19016
|
+
connect_webview_ids: string[];
|
|
19017
|
+
user_identity_ids: string[];
|
|
19005
19018
|
workspace_id: string;
|
|
19006
19019
|
};
|
|
19007
19020
|
};
|
|
@@ -4198,6 +4198,10 @@ export default {
|
|
|
4198
4198
|
},
|
|
4199
4199
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4200
4200
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4201
|
+
credential_manager_acs_system_id: {
|
|
4202
|
+
format: 'uuid',
|
|
4203
|
+
type: 'string',
|
|
4204
|
+
},
|
|
4201
4205
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4202
4206
|
is_multi_phone_sync_credential: {
|
|
4203
4207
|
default: false,
|