@seamapi/types 1.94.1 → 1.95.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 +18 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -26
- package/lib/seam/connect/openapi.d.ts +25 -23
- package/lib/seam/connect/openapi.js +17 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +17 -9
- package/src/lib/seam/connect/route-types.ts +9 -3
|
@@ -818,10 +818,12 @@ export interface Routes {
|
|
|
818
818
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
819
819
|
code?: string | undefined;
|
|
820
820
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
821
|
-
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
822
821
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
823
|
-
|
|
824
|
-
|
|
822
|
+
visionline_metadata?: {
|
|
823
|
+
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
824
|
+
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
825
|
+
is_override_key?: boolean | undefined;
|
|
826
|
+
} | undefined;
|
|
825
827
|
starts_at?: string | undefined;
|
|
826
828
|
ends_at?: string | undefined;
|
|
827
829
|
};
|
package/package.json
CHANGED
|
@@ -4004,11 +4004,6 @@ export default {
|
|
|
4004
4004
|
type: 'string',
|
|
4005
4005
|
},
|
|
4006
4006
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4007
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
4008
|
-
format: 'uuid',
|
|
4009
|
-
type: 'string',
|
|
4010
|
-
},
|
|
4011
|
-
card_format: { enum: ['TLCode', 'rfid48'], type: 'string' },
|
|
4012
4007
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4013
4008
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4014
4009
|
external_type: {
|
|
@@ -4021,8 +4016,21 @@ export default {
|
|
|
4021
4016
|
type: 'string',
|
|
4022
4017
|
},
|
|
4023
4018
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
4024
|
-
is_override_key: { type: 'boolean' },
|
|
4025
4019
|
starts_at: { format: 'date-time', type: 'string' },
|
|
4020
|
+
visionline_metadata: {
|
|
4021
|
+
properties: {
|
|
4022
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
4023
|
+
format: 'uuid',
|
|
4024
|
+
type: 'string',
|
|
4025
|
+
},
|
|
4026
|
+
card_format: {
|
|
4027
|
+
enum: ['TLCode', 'rfid48'],
|
|
4028
|
+
type: 'string',
|
|
4029
|
+
},
|
|
4030
|
+
is_override_key: { type: 'boolean' },
|
|
4031
|
+
},
|
|
4032
|
+
type: 'object',
|
|
4033
|
+
},
|
|
4026
4034
|
},
|
|
4027
4035
|
required: ['acs_user_id', 'access_method'],
|
|
4028
4036
|
type: 'object',
|
|
@@ -10423,9 +10431,9 @@ export default {
|
|
|
10423
10431
|
401: { description: 'Unauthorized' },
|
|
10424
10432
|
},
|
|
10425
10433
|
security: [
|
|
10426
|
-
{
|
|
10427
|
-
{
|
|
10428
|
-
{
|
|
10434
|
+
{ api_key: [] },
|
|
10435
|
+
{ pat_with_workspace: [] },
|
|
10436
|
+
{ console_session: [] },
|
|
10429
10437
|
],
|
|
10430
10438
|
summary: '/user_identities/delete',
|
|
10431
10439
|
tags: ['/user_identities'],
|
|
@@ -862,7 +862,6 @@ export interface Routes {
|
|
|
862
862
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
863
863
|
code?: string | undefined
|
|
864
864
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
865
|
-
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined
|
|
866
865
|
external_type?:
|
|
867
866
|
| (
|
|
868
867
|
| 'pti_card'
|
|
@@ -871,8 +870,15 @@ export interface Routes {
|
|
|
871
870
|
| 'visionline_card'
|
|
872
871
|
)
|
|
873
872
|
| undefined
|
|
874
|
-
|
|
875
|
-
|
|
873
|
+
visionline_metadata?:
|
|
874
|
+
| {
|
|
875
|
+
assa_abloy_credential_service_mobile_endpoint_id?:
|
|
876
|
+
| string
|
|
877
|
+
| undefined
|
|
878
|
+
card_format?: ('TLCode' | 'rfid48') | undefined
|
|
879
|
+
is_override_key?: boolean | undefined
|
|
880
|
+
}
|
|
881
|
+
| undefined
|
|
876
882
|
starts_at?: string | undefined
|
|
877
883
|
ends_at?: string | undefined
|
|
878
884
|
}
|