@seamapi/types 1.865.0 → 1.867.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.
@@ -23553,6 +23553,11 @@ export type Routes = {
23553
23553
  commonParams: {
23554
23554
  /** ID of the encoder to use for the scan. */
23555
23555
  acs_encoder_id: string;
23556
+ /** Salto KS-specific metadata for the scan action. */
23557
+ salto_ks_metadata?: {
23558
+ /** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
23559
+ detect_new_tags?: boolean;
23560
+ } | undefined;
23556
23561
  };
23557
23562
  formData: {};
23558
23563
  jsonResponse: {
@@ -25071,6 +25076,11 @@ export type Routes = {
25071
25076
  acs_user_id?: string | undefined;
25072
25077
  /** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
25073
25078
  user_identity_id?: string | undefined;
25079
+ /** Salto KS-specific metadata for the scan action. */
25080
+ salto_ks_metadata?: {
25081
+ /** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
25082
+ detect_new_tags?: boolean;
25083
+ } | undefined;
25074
25084
  };
25075
25085
  formData: {};
25076
25086
  jsonResponse: {
@@ -34332,7 +34342,7 @@ export type Routes = {
34332
34342
  /** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
34333
34343
  customer_key?: string | undefined;
34334
34344
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
34335
- accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
34345
+ accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
34336
34346
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
34337
34347
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
34338
34348
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -37390,7 +37400,7 @@ export type Routes = {
37390
37400
  /** Array of device types for which you want to list devices. */
37391
37401
  device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
37392
37402
  /** Manufacturer for which you want to list devices. */
37393
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
37403
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec') | undefined;
37394
37404
  /** Array of device IDs for which you want to list devices. */
37395
37405
  device_ids?: string[] | undefined;
37396
37406
  /** Numerical limit on the number of devices to return. */
@@ -38789,7 +38799,7 @@ export type Routes = {
38789
38799
  formData: {};
38790
38800
  jsonResponse: {
38791
38801
  device_providers: {
38792
- device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec';
38802
+ device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
38793
38803
  display_name: string;
38794
38804
  image_url: string;
38795
38805
  provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
@@ -39402,7 +39412,7 @@ export type Routes = {
39402
39412
  /** Array of device types for which you want to list devices. */
39403
39413
  device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
39404
39414
  /** Manufacturer for which you want to list devices. */
39405
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
39415
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec') | undefined;
39406
39416
  /** Array of device IDs for which you want to list devices. */
39407
39417
  device_ids?: string[] | undefined;
39408
39418
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
@@ -68978,7 +68988,7 @@ export type Routes = {
68978
68988
  queryParams: {};
68979
68989
  jsonBody: {
68980
68990
  /** Type of connector to create */
68981
- connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling';
68991
+ connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling';
68982
68992
  /** Key identifying the customer */
68983
68993
  customer_key?: string | undefined;
68984
68994
  /** Instance-specific configuration for the connector */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.865.0",
3
+ "version": "1.867.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -57,6 +57,7 @@ export const DEVICE_PROVIDERS = {
57
57
  ICAL: 'ical',
58
58
  LODGIFY: 'lodgify',
59
59
  HOSTAWAY: 'hostaway',
60
+ GUESTY: 'guesty',
60
61
  ACUITY_SCHEDULING: 'acuity_scheduling',
61
62
  OMNITEC: 'omnitec',
62
63
  } as const
@@ -149,7 +150,7 @@ export const PROVIDER_CATEGORY_MAP = {
149
150
 
150
151
  cameras: ['ring'],
151
152
 
152
- connectors: ['ical', 'lodgify', 'hostaway', 'acuity_scheduling'],
153
+ connectors: ['ical', 'lodgify', 'hostaway', 'guesty', 'acuity_scheduling'],
153
154
 
154
155
  internal_beta: ALL_DEVICE_PROVIDERS,
155
156
  } as const satisfies Record<string, readonly DeviceProviderName[]>
@@ -16489,6 +16489,7 @@ const openapi: OpenAPISpec = {
16489
16489
  'ical',
16490
16490
  'lodgify',
16491
16491
  'hostaway',
16492
+ 'guesty',
16492
16493
  'acuity_scheduling',
16493
16494
  'omnitec',
16494
16495
  ],
@@ -45754,6 +45755,19 @@ const openapi: OpenAPISpec = {
45754
45755
  format: 'uuid',
45755
45756
  type: 'string',
45756
45757
  },
45758
+ salto_ks_metadata: {
45759
+ description:
45760
+ 'Salto KS-specific metadata for the scan action.',
45761
+ properties: {
45762
+ detect_new_tags: {
45763
+ default: false,
45764
+ description:
45765
+ 'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
45766
+ type: 'boolean',
45767
+ },
45768
+ },
45769
+ type: 'object',
45770
+ },
45757
45771
  },
45758
45772
  required: ['acs_encoder_id'],
45759
45773
  type: 'object',
@@ -45819,6 +45833,19 @@ const openapi: OpenAPISpec = {
45819
45833
  format: 'uuid',
45820
45834
  type: 'string',
45821
45835
  },
45836
+ salto_ks_metadata: {
45837
+ description:
45838
+ 'Salto KS-specific metadata for the scan action.',
45839
+ properties: {
45840
+ detect_new_tags: {
45841
+ default: false,
45842
+ description:
45843
+ 'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
45844
+ type: 'boolean',
45845
+ },
45846
+ },
45847
+ type: 'object',
45848
+ },
45822
45849
  user_identity_id: {
45823
45850
  description:
45824
45851
  'ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created.',
@@ -50560,6 +50587,7 @@ const openapi: OpenAPISpec = {
50560
50587
  'ical',
50561
50588
  'lodgify',
50562
50589
  'hostaway',
50590
+ 'guesty',
50563
50591
  'acuity_scheduling',
50564
50592
  'omnitec',
50565
50593
  'yale_access',
@@ -54903,6 +54931,7 @@ const openapi: OpenAPISpec = {
54903
54931
  'ical',
54904
54932
  'lodgify',
54905
54933
  'hostaway',
54934
+ 'guesty',
54906
54935
  'acuity_scheduling',
54907
54936
  'omnitec',
54908
54937
  ],
@@ -55424,6 +55453,7 @@ const openapi: OpenAPISpec = {
55424
55453
  'ical',
55425
55454
  'lodgify',
55426
55455
  'hostaway',
55456
+ 'guesty',
55427
55457
  'acuity_scheduling',
55428
55458
  'omnitec',
55429
55459
  ],
@@ -57703,6 +57733,7 @@ const openapi: OpenAPISpec = {
57703
57733
  'ical',
57704
57734
  'lodgify',
57705
57735
  'hostaway',
57736
+ 'guesty',
57706
57737
  'acuity_scheduling',
57707
57738
  'omnitec',
57708
57739
  ],
@@ -58223,6 +58254,7 @@ const openapi: OpenAPISpec = {
58223
58254
  'ical',
58224
58255
  'lodgify',
58225
58256
  'hostaway',
58257
+ 'guesty',
58226
58258
  'acuity_scheduling',
58227
58259
  'omnitec',
58228
58260
  ],
@@ -66922,6 +66954,7 @@ const openapi: OpenAPISpec = {
66922
66954
  'ical',
66923
66955
  'lodgify',
66924
66956
  'hostaway',
66957
+ 'guesty',
66925
66958
  'acuity_scheduling',
66926
66959
  ],
66927
66960
  type: 'string',
@@ -27330,6 +27330,13 @@ export type Routes = {
27330
27330
  commonParams: {
27331
27331
  /** ID of the encoder to use for the scan. */
27332
27332
  acs_encoder_id: string
27333
+ /** Salto KS-specific metadata for the scan action. */
27334
+ salto_ks_metadata?:
27335
+ | {
27336
+ /** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
27337
+ detect_new_tags?: boolean
27338
+ }
27339
+ | undefined
27333
27340
  }
27334
27341
  formData: {}
27335
27342
  jsonResponse: {
@@ -29100,6 +29107,13 @@ export type Routes = {
29100
29107
  acs_user_id?: string | undefined
29101
29108
  /** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
29102
29109
  user_identity_id?: string | undefined
29110
+ /** Salto KS-specific metadata for the scan action. */
29111
+ salto_ks_metadata?:
29112
+ | {
29113
+ /** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
29114
+ detect_new_tags?: boolean
29115
+ }
29116
+ | undefined
29103
29117
  }
29104
29118
  formData: {}
29105
29119
  jsonResponse: {
@@ -39922,6 +39936,7 @@ export type Routes = {
39922
39936
  | 'ical'
39923
39937
  | 'lodgify'
39924
39938
  | 'hostaway'
39939
+ | 'guesty'
39925
39940
  | 'acuity_scheduling'
39926
39941
  | 'omnitec'
39927
39942
  | 'yale_access'
@@ -43679,6 +43694,7 @@ export type Routes = {
43679
43694
  | 'ical'
43680
43695
  | 'lodgify'
43681
43696
  | 'hostaway'
43697
+ | 'guesty'
43682
43698
  | 'acuity_scheduling'
43683
43699
  | 'omnitec'
43684
43700
  )
@@ -45523,6 +45539,7 @@ export type Routes = {
45523
45539
  | 'ical'
45524
45540
  | 'lodgify'
45525
45541
  | 'hostaway'
45542
+ | 'guesty'
45526
45543
  | 'acuity_scheduling'
45527
45544
  | 'omnitec'
45528
45545
  display_name: string
@@ -47678,6 +47695,7 @@ export type Routes = {
47678
47695
  | 'ical'
47679
47696
  | 'lodgify'
47680
47697
  | 'hostaway'
47698
+ | 'guesty'
47681
47699
  | 'acuity_scheduling'
47682
47700
  | 'omnitec'
47683
47701
  )
@@ -82931,6 +82949,7 @@ export type Routes = {
82931
82949
  | 'ical'
82932
82950
  | 'lodgify'
82933
82951
  | 'hostaway'
82952
+ | 'guesty'
82934
82953
  | 'acuity_scheduling'
82935
82954
  /** Key identifying the customer */
82936
82955
  customer_key?: string | undefined