@seamapi/types 1.144.0 → 1.146.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 +9 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
|
@@ -849,10 +849,12 @@ 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;
|
|
855
856
|
is_multi_phone_sync_credential?: boolean;
|
|
857
|
+
allowed_acs_entrance_ids?: string[];
|
|
856
858
|
visionline_metadata?: {
|
|
857
859
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
858
860
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
@@ -1625,6 +1627,10 @@ export interface Routes {
|
|
|
1625
1627
|
user_identifier_key: string | null;
|
|
1626
1628
|
created_at: string;
|
|
1627
1629
|
token: string;
|
|
1630
|
+
device_count: number;
|
|
1631
|
+
connected_account_ids: string[];
|
|
1632
|
+
connect_webview_ids: string[];
|
|
1633
|
+
user_identity_ids: string[];
|
|
1628
1634
|
workspace_id: string;
|
|
1629
1635
|
};
|
|
1630
1636
|
};
|
|
@@ -1683,6 +1689,10 @@ export interface Routes {
|
|
|
1683
1689
|
user_identifier_key: string | null;
|
|
1684
1690
|
created_at: string;
|
|
1685
1691
|
token: string;
|
|
1692
|
+
device_count: number;
|
|
1693
|
+
connected_account_ids: string[];
|
|
1694
|
+
connect_webview_ids: string[];
|
|
1695
|
+
user_identity_ids: string[];
|
|
1686
1696
|
workspace_id: string;
|
|
1687
1697
|
};
|
|
1688
1698
|
};
|
package/package.json
CHANGED
|
@@ -4282,7 +4282,16 @@ export default {
|
|
|
4282
4282
|
type: 'string',
|
|
4283
4283
|
},
|
|
4284
4284
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4285
|
+
allowed_acs_entrance_ids: {
|
|
4286
|
+
default: [],
|
|
4287
|
+
items: { format: 'uuid', type: 'string' },
|
|
4288
|
+
type: 'array',
|
|
4289
|
+
},
|
|
4285
4290
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4291
|
+
credential_manager_acs_system_id: {
|
|
4292
|
+
format: 'uuid',
|
|
4293
|
+
type: 'string',
|
|
4294
|
+
},
|
|
4286
4295
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4287
4296
|
is_multi_phone_sync_credential: {
|
|
4288
4297
|
default: false,
|
|
@@ -895,10 +895,12 @@ 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
|
|
901
902
|
is_multi_phone_sync_credential?: boolean
|
|
903
|
+
allowed_acs_entrance_ids?: string[]
|
|
902
904
|
visionline_metadata?:
|
|
903
905
|
| {
|
|
904
906
|
assa_abloy_credential_service_mobile_endpoint_id?:
|
|
@@ -1825,6 +1827,10 @@ export interface Routes {
|
|
|
1825
1827
|
user_identifier_key: string | null
|
|
1826
1828
|
created_at: string
|
|
1827
1829
|
token: string
|
|
1830
|
+
device_count: number
|
|
1831
|
+
connected_account_ids: string[]
|
|
1832
|
+
connect_webview_ids: string[]
|
|
1833
|
+
user_identity_ids: string[]
|
|
1828
1834
|
workspace_id: string
|
|
1829
1835
|
}
|
|
1830
1836
|
}
|
|
@@ -1883,6 +1889,10 @@ export interface Routes {
|
|
|
1883
1889
|
user_identifier_key: string | null
|
|
1884
1890
|
created_at: string
|
|
1885
1891
|
token: string
|
|
1892
|
+
device_count: number
|
|
1893
|
+
connected_account_ids: string[]
|
|
1894
|
+
connect_webview_ids: string[]
|
|
1895
|
+
user_identity_ids: string[]
|
|
1886
1896
|
workspace_id: string
|
|
1887
1897
|
}
|
|
1888
1898
|
}
|