@seamapi/types 1.45.0 → 1.46.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.
@@ -13255,10 +13255,10 @@ interface Routes {
13255
13255
  jsonResponse: {
13256
13256
  acs_system: {
13257
13257
  acs_system_id: string;
13258
- external_type: 'pti_site' | 'alta_org' | 'brivo_system';
13258
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
13259
13259
  external_type_display_name: string;
13260
13260
  /** deprecated: use external_type */
13261
- system_type: 'pti_site' | 'alta_org' | 'brivo_system';
13261
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
13262
13262
  /** deprecated: use external_type_display_name */
13263
13263
  system_type_display_name: string;
13264
13264
  name: string;
@@ -13279,10 +13279,10 @@ interface Routes {
13279
13279
  jsonResponse: {
13280
13280
  acs_systems: Array<{
13281
13281
  acs_system_id: string;
13282
- external_type: 'pti_site' | 'alta_org' | 'brivo_system';
13282
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
13283
13283
  external_type_display_name: string;
13284
13284
  /** deprecated: use external_type */
13285
- system_type: 'pti_site' | 'alta_org' | 'brivo_system';
13285
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
13286
13286
  /** deprecated: use external_type_display_name */
13287
13287
  system_type_display_name: string;
13288
13288
  name: string;
@@ -100,14 +100,14 @@ export default {
100
100
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
101
101
  created_at: { format: 'date-time', type: 'string' },
102
102
  external_type: {
103
- enum: ['pti_site', 'alta_org', 'brivo_system'],
103
+ enum: ['pti_site', 'alta_org', 'salto_site', 'brivo_system'],
104
104
  type: 'string',
105
105
  },
106
106
  external_type_display_name: { type: 'string' },
107
107
  name: { type: 'string' },
108
108
  system_type: {
109
109
  description: 'deprecated: use external_type',
110
- enum: ['pti_site', 'alta_org', 'brivo_system'],
110
+ enum: ['pti_site', 'alta_org', 'salto_site', 'brivo_system'],
111
111
  type: 'string',
112
112
  },
113
113
  system_type_display_name: {