@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
package/dist/connect.d.cts
CHANGED
|
@@ -5748,10 +5748,22 @@ declare const _default: {
|
|
|
5748
5748
|
format: string;
|
|
5749
5749
|
type: string;
|
|
5750
5750
|
};
|
|
5751
|
+
allowed_acs_entrance_ids: {
|
|
5752
|
+
default: never[];
|
|
5753
|
+
items: {
|
|
5754
|
+
format: string;
|
|
5755
|
+
type: string;
|
|
5756
|
+
};
|
|
5757
|
+
type: string;
|
|
5758
|
+
};
|
|
5751
5759
|
code: {
|
|
5752
5760
|
pattern: string;
|
|
5753
5761
|
type: string;
|
|
5754
5762
|
};
|
|
5763
|
+
credential_manager_acs_system_id: {
|
|
5764
|
+
format: string;
|
|
5765
|
+
type: string;
|
|
5766
|
+
};
|
|
5755
5767
|
ends_at: {
|
|
5756
5768
|
format: string;
|
|
5757
5769
|
type: string;
|
|
@@ -18168,10 +18180,12 @@ interface Routes {
|
|
|
18168
18180
|
queryParams: {};
|
|
18169
18181
|
jsonBody: {};
|
|
18170
18182
|
commonParams: {
|
|
18183
|
+
credential_manager_acs_system_id?: string | undefined;
|
|
18171
18184
|
acs_user_id: string;
|
|
18172
18185
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18173
18186
|
code?: string | undefined;
|
|
18174
18187
|
is_multi_phone_sync_credential?: boolean;
|
|
18188
|
+
allowed_acs_entrance_ids?: string[];
|
|
18175
18189
|
visionline_metadata?: {
|
|
18176
18190
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
18177
18191
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
@@ -18944,6 +18958,10 @@ interface Routes {
|
|
|
18944
18958
|
user_identifier_key: string | null;
|
|
18945
18959
|
created_at: string;
|
|
18946
18960
|
token: string;
|
|
18961
|
+
device_count: number;
|
|
18962
|
+
connected_account_ids: string[];
|
|
18963
|
+
connect_webview_ids: string[];
|
|
18964
|
+
user_identity_ids: string[];
|
|
18947
18965
|
workspace_id: string;
|
|
18948
18966
|
};
|
|
18949
18967
|
};
|
|
@@ -19002,6 +19020,10 @@ interface Routes {
|
|
|
19002
19020
|
user_identifier_key: string | null;
|
|
19003
19021
|
created_at: string;
|
|
19004
19022
|
token: string;
|
|
19023
|
+
device_count: number;
|
|
19024
|
+
connected_account_ids: string[];
|
|
19025
|
+
connect_webview_ids: string[];
|
|
19026
|
+
user_identity_ids: string[];
|
|
19005
19027
|
workspace_id: string;
|
|
19006
19028
|
};
|
|
19007
19029
|
};
|
|
@@ -5674,10 +5674,22 @@ declare const _default: {
|
|
|
5674
5674
|
format: string;
|
|
5675
5675
|
type: string;
|
|
5676
5676
|
};
|
|
5677
|
+
allowed_acs_entrance_ids: {
|
|
5678
|
+
default: never[];
|
|
5679
|
+
items: {
|
|
5680
|
+
format: string;
|
|
5681
|
+
type: string;
|
|
5682
|
+
};
|
|
5683
|
+
type: string;
|
|
5684
|
+
};
|
|
5677
5685
|
code: {
|
|
5678
5686
|
pattern: string;
|
|
5679
5687
|
type: string;
|
|
5680
5688
|
};
|
|
5689
|
+
credential_manager_acs_system_id: {
|
|
5690
|
+
format: string;
|
|
5691
|
+
type: string;
|
|
5692
|
+
};
|
|
5681
5693
|
ends_at: {
|
|
5682
5694
|
format: string;
|
|
5683
5695
|
type: string;
|
|
@@ -4197,7 +4197,16 @@ export default {
|
|
|
4197
4197
|
type: 'string',
|
|
4198
4198
|
},
|
|
4199
4199
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4200
|
+
allowed_acs_entrance_ids: {
|
|
4201
|
+
default: [],
|
|
4202
|
+
items: { format: 'uuid', type: 'string' },
|
|
4203
|
+
type: 'array',
|
|
4204
|
+
},
|
|
4200
4205
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4206
|
+
credential_manager_acs_system_id: {
|
|
4207
|
+
format: 'uuid',
|
|
4208
|
+
type: 'string',
|
|
4209
|
+
},
|
|
4201
4210
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4202
4211
|
is_multi_phone_sync_credential: {
|
|
4203
4212
|
default: false,
|