@seamapi/types 1.244.0 → 1.245.1
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 +25 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -3
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +14 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +15 -3
- package/src/lib/seam/connect/openapi.ts +17 -3
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -3135,8 +3135,11 @@ export interface Routes {
|
|
|
3135
3135
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
3136
3136
|
external_type_display_name?: string | undefined;
|
|
3137
3137
|
visionline_metadata?: {
|
|
3138
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3138
3139
|
mobile_access_uuid: string;
|
|
3140
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3139
3141
|
system_id: string;
|
|
3142
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3140
3143
|
lan_address: string;
|
|
3141
3144
|
} | undefined;
|
|
3142
3145
|
/**
|
|
@@ -3233,8 +3236,11 @@ export interface Routes {
|
|
|
3233
3236
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
3234
3237
|
external_type_display_name?: string | undefined;
|
|
3235
3238
|
visionline_metadata?: {
|
|
3239
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3236
3240
|
mobile_access_uuid: string;
|
|
3241
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3237
3242
|
system_id: string;
|
|
3243
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3238
3244
|
lan_address: string;
|
|
3239
3245
|
} | undefined;
|
|
3240
3246
|
/**
|
|
@@ -3331,8 +3337,11 @@ export interface Routes {
|
|
|
3331
3337
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
3332
3338
|
external_type_display_name?: string | undefined;
|
|
3333
3339
|
visionline_metadata?: {
|
|
3340
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3334
3341
|
mobile_access_uuid: string;
|
|
3342
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3335
3343
|
system_id: string;
|
|
3344
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3336
3345
|
lan_address: string;
|
|
3337
3346
|
} | undefined;
|
|
3338
3347
|
/**
|
|
@@ -15972,8 +15981,11 @@ export interface Routes {
|
|
|
15972
15981
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
15973
15982
|
external_type_display_name?: string | undefined;
|
|
15974
15983
|
visionline_metadata?: {
|
|
15984
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
15975
15985
|
mobile_access_uuid: string;
|
|
15986
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
15976
15987
|
system_id: string;
|
|
15988
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
15977
15989
|
lan_address: string;
|
|
15978
15990
|
} | undefined;
|
|
15979
15991
|
/**
|
package/package.json
CHANGED
|
@@ -168,9 +168,21 @@ export const acs_system = z
|
|
|
168
168
|
.optional(),
|
|
169
169
|
visionline_metadata: z
|
|
170
170
|
.object({
|
|
171
|
-
mobile_access_uuid: z
|
|
172
|
-
|
|
173
|
-
|
|
171
|
+
mobile_access_uuid: z
|
|
172
|
+
.string()
|
|
173
|
+
.describe(
|
|
174
|
+
'Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset.',
|
|
175
|
+
),
|
|
176
|
+
system_id: z
|
|
177
|
+
.string()
|
|
178
|
+
.describe(
|
|
179
|
+
'Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager.',
|
|
180
|
+
),
|
|
181
|
+
lan_address: z
|
|
182
|
+
.string()
|
|
183
|
+
.describe(
|
|
184
|
+
'IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network.',
|
|
185
|
+
),
|
|
174
186
|
})
|
|
175
187
|
.optional(),
|
|
176
188
|
system_type: acs_system_external_type
|
|
@@ -665,9 +665,21 @@ export default {
|
|
|
665
665
|
},
|
|
666
666
|
visionline_metadata: {
|
|
667
667
|
properties: {
|
|
668
|
-
lan_address: {
|
|
669
|
-
|
|
670
|
-
|
|
668
|
+
lan_address: {
|
|
669
|
+
description:
|
|
670
|
+
'IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network.',
|
|
671
|
+
type: 'string',
|
|
672
|
+
},
|
|
673
|
+
mobile_access_uuid: {
|
|
674
|
+
description:
|
|
675
|
+
'Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset.',
|
|
676
|
+
type: 'string',
|
|
677
|
+
},
|
|
678
|
+
system_id: {
|
|
679
|
+
description:
|
|
680
|
+
'Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager.',
|
|
681
|
+
type: 'string',
|
|
682
|
+
},
|
|
671
683
|
},
|
|
672
684
|
required: ['mobile_access_uuid', 'system_id', 'lan_address'],
|
|
673
685
|
type: 'object',
|
|
@@ -8296,6 +8308,7 @@ export default {
|
|
|
8296
8308
|
'x-fern-sdk-group-name': ['acs', 'users', 'unmanaged'],
|
|
8297
8309
|
'x-fern-sdk-method-name': 'get',
|
|
8298
8310
|
'x-fern-sdk-return-value': 'acs_user',
|
|
8311
|
+
'x-undocumented': 'No unmanaged users are currently implemented.',
|
|
8299
8312
|
},
|
|
8300
8313
|
},
|
|
8301
8314
|
'/acs/users/unmanaged/list': {
|
|
@@ -8612,6 +8625,7 @@ export default {
|
|
|
8612
8625
|
'x-fern-sdk-group-name': ['acs', 'users', 'unmanaged'],
|
|
8613
8626
|
'x-fern-sdk-method-name': 'list',
|
|
8614
8627
|
'x-fern-sdk-return-value': 'acs_users',
|
|
8628
|
+
'x-undocumented': 'No unmanaged users are currently implemented.',
|
|
8615
8629
|
},
|
|
8616
8630
|
},
|
|
8617
8631
|
'/acs/users/unsuspend': {
|
|
@@ -3569,8 +3569,11 @@ export interface Routes {
|
|
|
3569
3569
|
external_type_display_name?: string | undefined
|
|
3570
3570
|
visionline_metadata?:
|
|
3571
3571
|
| {
|
|
3572
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3572
3573
|
mobile_access_uuid: string
|
|
3574
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3573
3575
|
system_id: string
|
|
3576
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3574
3577
|
lan_address: string
|
|
3575
3578
|
}
|
|
3576
3579
|
| undefined
|
|
@@ -3697,8 +3700,11 @@ export interface Routes {
|
|
|
3697
3700
|
external_type_display_name?: string | undefined
|
|
3698
3701
|
visionline_metadata?:
|
|
3699
3702
|
| {
|
|
3703
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3700
3704
|
mobile_access_uuid: string
|
|
3705
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3701
3706
|
system_id: string
|
|
3707
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3702
3708
|
lan_address: string
|
|
3703
3709
|
}
|
|
3704
3710
|
| undefined
|
|
@@ -3825,8 +3831,11 @@ export interface Routes {
|
|
|
3825
3831
|
external_type_display_name?: string | undefined
|
|
3826
3832
|
visionline_metadata?:
|
|
3827
3833
|
| {
|
|
3834
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
3828
3835
|
mobile_access_uuid: string
|
|
3836
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
3829
3837
|
system_id: string
|
|
3838
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
3830
3839
|
lan_address: string
|
|
3831
3840
|
}
|
|
3832
3841
|
| undefined
|
|
@@ -20253,8 +20262,11 @@ export interface Routes {
|
|
|
20253
20262
|
external_type_display_name?: string | undefined
|
|
20254
20263
|
visionline_metadata?:
|
|
20255
20264
|
| {
|
|
20265
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
20256
20266
|
mobile_access_uuid: string
|
|
20267
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
20257
20268
|
system_id: string
|
|
20269
|
+
/** IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network. */
|
|
20258
20270
|
lan_address: string
|
|
20259
20271
|
}
|
|
20260
20272
|
| undefined
|