@seamapi/types 1.209.1 → 1.210.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.
@@ -2769,6 +2769,11 @@ export interface Routes {
2769
2769
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
2770
2770
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
2771
2771
  external_type_display_name?: string | undefined;
2772
+ visionline_metadata?: {
2773
+ mobile_access_uuid: string;
2774
+ system_id: string;
2775
+ lan_address: string;
2776
+ } | undefined;
2772
2777
  /**
2773
2778
  * @deprecated Use `external_type`. */
2774
2779
  system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
@@ -2834,6 +2839,11 @@ export interface Routes {
2834
2839
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
2835
2840
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
2836
2841
  external_type_display_name?: string | undefined;
2842
+ visionline_metadata?: {
2843
+ mobile_access_uuid: string;
2844
+ system_id: string;
2845
+ lan_address: string;
2846
+ } | undefined;
2837
2847
  /**
2838
2848
  * @deprecated Use `external_type`. */
2839
2849
  system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
@@ -2898,6 +2908,11 @@ export interface Routes {
2898
2908
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
2899
2909
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
2900
2910
  external_type_display_name?: string | undefined;
2911
+ visionline_metadata?: {
2912
+ mobile_access_uuid: string;
2913
+ system_id: string;
2914
+ lan_address: string;
2915
+ } | undefined;
2901
2916
  /**
2902
2917
  * @deprecated Use `external_type`. */
2903
2918
  system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
@@ -15500,6 +15515,11 @@ export interface Routes {
15500
15515
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
15501
15516
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
15502
15517
  external_type_display_name?: string | undefined;
15518
+ visionline_metadata?: {
15519
+ mobile_access_uuid: string;
15520
+ system_id: string;
15521
+ lan_address: string;
15522
+ } | undefined;
15503
15523
  /**
15504
15524
  * @deprecated Use `external_type`. */
15505
15525
  system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.209.1",
3
+ "version": "1.210.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -104,6 +104,13 @@ export const acs_system = z
104
104
  'Display name that corresponds to the brand-specific terminology for the `acs_system` type.',
105
105
  )
106
106
  .optional(),
107
+ visionline_metadata: z
108
+ .object({
109
+ mobile_access_uuid: z.string(),
110
+ system_id: z.string(),
111
+ lan_address: z.string(),
112
+ })
113
+ .optional(),
107
114
  system_type: acs_system_external_type
108
115
  .describe(
109
116
  `
@@ -586,6 +586,15 @@ export default {
586
586
  type: 'string',
587
587
  'x-deprecated': 'Use `external_type_display_name`.',
588
588
  },
589
+ visionline_metadata: {
590
+ properties: {
591
+ lan_address: { type: 'string' },
592
+ mobile_access_uuid: { type: 'string' },
593
+ system_id: { type: 'string' },
594
+ },
595
+ required: ['mobile_access_uuid', 'system_id', 'lan_address'],
596
+ type: 'object',
597
+ },
589
598
  warnings: {
590
599
  items: { properties: {}, type: 'object' },
591
600
  type: 'array',
@@ -3123,6 +3123,13 @@ export interface Routes {
3123
3123
  | undefined
3124
3124
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
3125
3125
  external_type_display_name?: string | undefined
3126
+ visionline_metadata?:
3127
+ | {
3128
+ mobile_access_uuid: string
3129
+ system_id: string
3130
+ lan_address: string
3131
+ }
3132
+ | undefined
3126
3133
  /**
3127
3134
  * @deprecated Use `external_type`. */
3128
3135
  system_type?:
@@ -3213,6 +3220,13 @@ export interface Routes {
3213
3220
  | undefined
3214
3221
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
3215
3222
  external_type_display_name?: string | undefined
3223
+ visionline_metadata?:
3224
+ | {
3225
+ mobile_access_uuid: string
3226
+ system_id: string
3227
+ lan_address: string
3228
+ }
3229
+ | undefined
3216
3230
  /**
3217
3231
  * @deprecated Use `external_type`. */
3218
3232
  system_type?:
@@ -3302,6 +3316,13 @@ export interface Routes {
3302
3316
  | undefined
3303
3317
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
3304
3318
  external_type_display_name?: string | undefined
3319
+ visionline_metadata?:
3320
+ | {
3321
+ mobile_access_uuid: string
3322
+ system_id: string
3323
+ lan_address: string
3324
+ }
3325
+ | undefined
3305
3326
  /**
3306
3327
  * @deprecated Use `external_type`. */
3307
3328
  system_type?:
@@ -20235,6 +20256,13 @@ export interface Routes {
20235
20256
  | undefined
20236
20257
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
20237
20258
  external_type_display_name?: string | undefined
20259
+ visionline_metadata?:
20260
+ | {
20261
+ mobile_access_uuid: string
20262
+ system_id: string
20263
+ lan_address: string
20264
+ }
20265
+ | undefined
20238
20266
  /**
20239
20267
  * @deprecated Use `external_type`. */
20240
20268
  system_type?: