@seamapi/types 1.94.1 → 1.96.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 +19 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +31 -27
- package/lib/seam/connect/openapi.d.ts +25 -23
- package/lib/seam/connect/openapi.js +18 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +18 -9
- package/src/lib/seam/connect/route-types.ts +10 -3
package/dist/connect.d.cts
CHANGED
|
@@ -5477,14 +5477,6 @@ declare const _default: {
|
|
|
5477
5477
|
format: string;
|
|
5478
5478
|
type: string;
|
|
5479
5479
|
};
|
|
5480
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5481
|
-
format: string;
|
|
5482
|
-
type: string;
|
|
5483
|
-
};
|
|
5484
|
-
card_format: {
|
|
5485
|
-
enum: string[];
|
|
5486
|
-
type: string;
|
|
5487
|
-
};
|
|
5488
5480
|
code: {
|
|
5489
5481
|
pattern: string;
|
|
5490
5482
|
type: string;
|
|
@@ -5500,13 +5492,26 @@ declare const _default: {
|
|
|
5500
5492
|
is_multi_phone_sync_credential: {
|
|
5501
5493
|
type: string;
|
|
5502
5494
|
};
|
|
5503
|
-
is_override_key: {
|
|
5504
|
-
type: string;
|
|
5505
|
-
};
|
|
5506
5495
|
starts_at: {
|
|
5507
5496
|
format: string;
|
|
5508
5497
|
type: string;
|
|
5509
5498
|
};
|
|
5499
|
+
visionline_metadata: {
|
|
5500
|
+
properties: {
|
|
5501
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5502
|
+
format: string;
|
|
5503
|
+
type: string;
|
|
5504
|
+
};
|
|
5505
|
+
card_format: {
|
|
5506
|
+
enum: string[];
|
|
5507
|
+
type: string;
|
|
5508
|
+
};
|
|
5509
|
+
is_override_key: {
|
|
5510
|
+
type: string;
|
|
5511
|
+
};
|
|
5512
|
+
};
|
|
5513
|
+
type: string;
|
|
5514
|
+
};
|
|
5510
5515
|
};
|
|
5511
5516
|
required: string[];
|
|
5512
5517
|
type: string;
|
|
@@ -14115,20 +14120,17 @@ declare const _default: {
|
|
|
14115
14120
|
};
|
|
14116
14121
|
};
|
|
14117
14122
|
security: ({
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
client_session_token?: never;
|
|
14123
|
+
api_key: never[];
|
|
14124
|
+
pat_with_workspace?: never;
|
|
14125
|
+
console_session?: never;
|
|
14122
14126
|
} | {
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
client_session_token?: never;
|
|
14127
|
+
pat_with_workspace: never[];
|
|
14128
|
+
api_key?: never;
|
|
14129
|
+
console_session?: never;
|
|
14127
14130
|
} | {
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
|
|
14131
|
-
seam_client_session_token?: never;
|
|
14131
|
+
console_session: never[];
|
|
14132
|
+
api_key?: never;
|
|
14133
|
+
pat_with_workspace?: never;
|
|
14132
14134
|
})[];
|
|
14133
14135
|
summary: string;
|
|
14134
14136
|
tags: string[];
|
|
@@ -16737,10 +16739,12 @@ interface Routes {
|
|
|
16737
16739
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
16738
16740
|
code?: string | undefined;
|
|
16739
16741
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16740
|
-
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
16741
16742
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
16742
|
-
|
|
16743
|
-
|
|
16743
|
+
visionline_metadata?: {
|
|
16744
|
+
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
16745
|
+
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
16746
|
+
is_override_key?: boolean | undefined;
|
|
16747
|
+
} | undefined;
|
|
16744
16748
|
starts_at?: string | undefined;
|
|
16745
16749
|
ends_at?: string | undefined;
|
|
16746
16750
|
};
|
|
@@ -17481,7 +17485,7 @@ interface Routes {
|
|
|
17481
17485
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
17482
17486
|
custom_redirect_url?: string | undefined;
|
|
17483
17487
|
custom_redirect_failure_url?: string | undefined;
|
|
17484
|
-
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
17488
|
+
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
17485
17489
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
|
|
17486
17490
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
17487
17491
|
automatically_manage_new_devices?: boolean | undefined;
|
|
@@ -5403,14 +5403,6 @@ declare const _default: {
|
|
|
5403
5403
|
format: string;
|
|
5404
5404
|
type: string;
|
|
5405
5405
|
};
|
|
5406
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5407
|
-
format: string;
|
|
5408
|
-
type: string;
|
|
5409
|
-
};
|
|
5410
|
-
card_format: {
|
|
5411
|
-
enum: string[];
|
|
5412
|
-
type: string;
|
|
5413
|
-
};
|
|
5414
5406
|
code: {
|
|
5415
5407
|
pattern: string;
|
|
5416
5408
|
type: string;
|
|
@@ -5426,13 +5418,26 @@ declare const _default: {
|
|
|
5426
5418
|
is_multi_phone_sync_credential: {
|
|
5427
5419
|
type: string;
|
|
5428
5420
|
};
|
|
5429
|
-
is_override_key: {
|
|
5430
|
-
type: string;
|
|
5431
|
-
};
|
|
5432
5421
|
starts_at: {
|
|
5433
5422
|
format: string;
|
|
5434
5423
|
type: string;
|
|
5435
5424
|
};
|
|
5425
|
+
visionline_metadata: {
|
|
5426
|
+
properties: {
|
|
5427
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
5428
|
+
format: string;
|
|
5429
|
+
type: string;
|
|
5430
|
+
};
|
|
5431
|
+
card_format: {
|
|
5432
|
+
enum: string[];
|
|
5433
|
+
type: string;
|
|
5434
|
+
};
|
|
5435
|
+
is_override_key: {
|
|
5436
|
+
type: string;
|
|
5437
|
+
};
|
|
5438
|
+
};
|
|
5439
|
+
type: string;
|
|
5440
|
+
};
|
|
5436
5441
|
};
|
|
5437
5442
|
required: string[];
|
|
5438
5443
|
type: string;
|
|
@@ -14041,20 +14046,17 @@ declare const _default: {
|
|
|
14041
14046
|
};
|
|
14042
14047
|
};
|
|
14043
14048
|
security: ({
|
|
14044
|
-
|
|
14045
|
-
|
|
14046
|
-
|
|
14047
|
-
client_session_token?: never;
|
|
14049
|
+
api_key: never[];
|
|
14050
|
+
pat_with_workspace?: never;
|
|
14051
|
+
console_session?: never;
|
|
14048
14052
|
} | {
|
|
14049
|
-
|
|
14050
|
-
|
|
14051
|
-
|
|
14052
|
-
client_session_token?: never;
|
|
14053
|
+
pat_with_workspace: never[];
|
|
14054
|
+
api_key?: never;
|
|
14055
|
+
console_session?: never;
|
|
14053
14056
|
} | {
|
|
14054
|
-
|
|
14055
|
-
|
|
14056
|
-
|
|
14057
|
-
seam_client_session_token?: never;
|
|
14057
|
+
console_session: never[];
|
|
14058
|
+
api_key?: never;
|
|
14059
|
+
pat_with_workspace?: never;
|
|
14058
14060
|
})[];
|
|
14059
14061
|
summary: string;
|
|
14060
14062
|
tags: string[];
|
|
@@ -3935,11 +3935,6 @@ export default {
|
|
|
3935
3935
|
type: 'string',
|
|
3936
3936
|
},
|
|
3937
3937
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
3938
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
3939
|
-
format: 'uuid',
|
|
3940
|
-
type: 'string',
|
|
3941
|
-
},
|
|
3942
|
-
card_format: { enum: ['TLCode', 'rfid48'], type: 'string' },
|
|
3943
3938
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
3944
3939
|
ends_at: { format: 'date-time', type: 'string' },
|
|
3945
3940
|
external_type: {
|
|
@@ -3952,8 +3947,21 @@ export default {
|
|
|
3952
3947
|
type: 'string',
|
|
3953
3948
|
},
|
|
3954
3949
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
3955
|
-
is_override_key: { type: 'boolean' },
|
|
3956
3950
|
starts_at: { format: 'date-time', type: 'string' },
|
|
3951
|
+
visionline_metadata: {
|
|
3952
|
+
properties: {
|
|
3953
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
3954
|
+
format: 'uuid',
|
|
3955
|
+
type: 'string',
|
|
3956
|
+
},
|
|
3957
|
+
card_format: {
|
|
3958
|
+
enum: ['TLCode', 'rfid48'],
|
|
3959
|
+
type: 'string',
|
|
3960
|
+
},
|
|
3961
|
+
is_override_key: { type: 'boolean' },
|
|
3962
|
+
},
|
|
3963
|
+
type: 'object',
|
|
3964
|
+
},
|
|
3957
3965
|
},
|
|
3958
3966
|
required: ['acs_user_id', 'access_method'],
|
|
3959
3967
|
type: 'object',
|
|
@@ -6316,6 +6324,7 @@ export default {
|
|
|
6316
6324
|
'visionline',
|
|
6317
6325
|
'assa_abloy_credential_service',
|
|
6318
6326
|
'seam_bridge',
|
|
6327
|
+
'tedee',
|
|
6319
6328
|
'yale_access',
|
|
6320
6329
|
'hid_cm',
|
|
6321
6330
|
'google_nest',
|
|
@@ -10348,9 +10357,9 @@ export default {
|
|
|
10348
10357
|
401: { description: 'Unauthorized' },
|
|
10349
10358
|
},
|
|
10350
10359
|
security: [
|
|
10351
|
-
{
|
|
10352
|
-
{
|
|
10353
|
-
{
|
|
10360
|
+
{ api_key: [] },
|
|
10361
|
+
{ pat_with_workspace: [] },
|
|
10362
|
+
{ console_session: [] },
|
|
10354
10363
|
],
|
|
10355
10364
|
summary: '/user_identities/delete',
|
|
10356
10365
|
tags: ['/user_identities'],
|