@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
|
@@ -849,6 +849,7 @@ export interface Routes {
|
|
|
849
849
|
queryParams: {};
|
|
850
850
|
jsonBody: {};
|
|
851
851
|
commonParams: {
|
|
852
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
852
853
|
acs_user_id: string;
|
|
853
854
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
854
855
|
code?: string | undefined;
|
|
@@ -1625,6 +1626,10 @@ export interface Routes {
|
|
|
1625
1626
|
user_identifier_key: string | null;
|
|
1626
1627
|
created_at: string;
|
|
1627
1628
|
token: string;
|
|
1629
|
+
device_count: number;
|
|
1630
|
+
connected_account_ids: string[];
|
|
1631
|
+
connect_webview_ids: string[];
|
|
1632
|
+
user_identity_ids: string[];
|
|
1628
1633
|
workspace_id: string;
|
|
1629
1634
|
};
|
|
1630
1635
|
};
|
|
@@ -1683,6 +1688,10 @@ export interface Routes {
|
|
|
1683
1688
|
user_identifier_key: string | null;
|
|
1684
1689
|
created_at: string;
|
|
1685
1690
|
token: string;
|
|
1691
|
+
device_count: number;
|
|
1692
|
+
connected_account_ids: string[];
|
|
1693
|
+
connect_webview_ids: string[];
|
|
1694
|
+
user_identity_ids: string[];
|
|
1686
1695
|
workspace_id: string;
|
|
1687
1696
|
};
|
|
1688
1697
|
};
|
package/package.json
CHANGED
|
@@ -4283,6 +4283,10 @@ export default {
|
|
|
4283
4283
|
},
|
|
4284
4284
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4285
4285
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4286
|
+
credential_manager_acs_system_id: {
|
|
4287
|
+
format: 'uuid',
|
|
4288
|
+
type: 'string',
|
|
4289
|
+
},
|
|
4286
4290
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4287
4291
|
is_multi_phone_sync_credential: {
|
|
4288
4292
|
default: false,
|
|
@@ -895,6 +895,7 @@ export interface Routes {
|
|
|
895
895
|
queryParams: {}
|
|
896
896
|
jsonBody: {}
|
|
897
897
|
commonParams: {
|
|
898
|
+
credential_manager_acs_system_id?: string | undefined
|
|
898
899
|
acs_user_id: string
|
|
899
900
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
900
901
|
code?: string | undefined
|
|
@@ -1825,6 +1826,10 @@ export interface Routes {
|
|
|
1825
1826
|
user_identifier_key: string | null
|
|
1826
1827
|
created_at: string
|
|
1827
1828
|
token: string
|
|
1829
|
+
device_count: number
|
|
1830
|
+
connected_account_ids: string[]
|
|
1831
|
+
connect_webview_ids: string[]
|
|
1832
|
+
user_identity_ids: string[]
|
|
1828
1833
|
workspace_id: string
|
|
1829
1834
|
}
|
|
1830
1835
|
}
|
|
@@ -1883,6 +1888,10 @@ export interface Routes {
|
|
|
1883
1888
|
user_identifier_key: string | null
|
|
1884
1889
|
created_at: string
|
|
1885
1890
|
token: string
|
|
1891
|
+
device_count: number
|
|
1892
|
+
connected_account_ids: string[]
|
|
1893
|
+
connect_webview_ids: string[]
|
|
1894
|
+
user_identity_ids: string[]
|
|
1886
1895
|
workspace_id: string
|
|
1887
1896
|
}
|
|
1888
1897
|
}
|