@seamapi/types 1.459.0 → 1.460.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 +489 -127
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2612 -713
- package/dist/index.cjs +489 -127
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +3279 -237
- package/lib/seam/connect/models/batch.js +7 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +18 -18
- package/lib/seam/connect/models/customer/access-grant-resources.js +2 -1
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +15 -15
- package/lib/seam/connect/models/devices/device-metadata.d.ts +108 -0
- package/lib/seam/connect/models/devices/device-metadata.js +67 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +152 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +108 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +181 -14
- package/lib/seam/connect/models/phones/phone-session.js +3 -0
- package/lib/seam/connect/models/phones/phone-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +300 -33
- package/lib/seam/connect/openapi.js +447 -113
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1354 -179
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +7 -0
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +68 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/phones/phone-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +481 -113
- package/src/lib/seam/connect/route-types.ts +1558 -189
|
@@ -10105,88 +10105,13 @@ export interface Routes {
|
|
|
10105
10105
|
commonParams: {
|
|
10106
10106
|
/** IDs of the access grants that you want to get along with their related resources. */
|
|
10107
10107
|
access_grant_ids: string[];
|
|
10108
|
-
include?: Array<'spaces' | 'devices' | 'acs_entrances'> | undefined;
|
|
10109
|
-
exclude?: Array<'spaces' | 'devices' | 'acs_entrances'> | undefined;
|
|
10108
|
+
include?: Array<'spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identity'> | undefined;
|
|
10109
|
+
exclude?: Array<'spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identity'> | undefined;
|
|
10110
10110
|
};
|
|
10111
10111
|
formData: {};
|
|
10112
10112
|
jsonResponse: {
|
|
10113
|
-
/** Represents a resource batch. */
|
|
10114
10113
|
batch: {
|
|
10115
|
-
batch_type: '
|
|
10116
|
-
user_identities?: Array<{
|
|
10117
|
-
/** ID of the user identity. */
|
|
10118
|
-
user_identity_id: string;
|
|
10119
|
-
/** Unique key for the user identity. */
|
|
10120
|
-
user_identity_key: string | null;
|
|
10121
|
-
/** Unique email address for the user identity. */
|
|
10122
|
-
email_address: string | null;
|
|
10123
|
-
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
10124
|
-
phone_number: string | null;
|
|
10125
|
-
display_name: string;
|
|
10126
|
-
full_name: string | null;
|
|
10127
|
-
/** Date and time at which the user identity was created. */
|
|
10128
|
-
created_at: string;
|
|
10129
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
10130
|
-
workspace_id: string;
|
|
10131
|
-
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
10132
|
-
errors: Array<{
|
|
10133
|
-
/** Date and time at which Seam created the error. */
|
|
10134
|
-
created_at: string;
|
|
10135
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10136
|
-
message: string;
|
|
10137
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10138
|
-
error_code: 'issue_with_acs_user';
|
|
10139
|
-
/** ID of the access system user that has an issue. */
|
|
10140
|
-
acs_user_id: string;
|
|
10141
|
-
/** ID of the access system that the user identity is associated with. */
|
|
10142
|
-
acs_system_id: string;
|
|
10143
|
-
}>;
|
|
10144
|
-
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
10145
|
-
warnings: Array<{
|
|
10146
|
-
/** Date and time at which Seam created the warning. */
|
|
10147
|
-
created_at: string;
|
|
10148
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10149
|
-
message: string;
|
|
10150
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10151
|
-
warning_code: 'being_deleted';
|
|
10152
|
-
} | {
|
|
10153
|
-
/** Date and time at which Seam created the warning. */
|
|
10154
|
-
created_at: string;
|
|
10155
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10156
|
-
message: string;
|
|
10157
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10158
|
-
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
10159
|
-
}>;
|
|
10160
|
-
/** Array of access system user IDs associated with the user identity. */
|
|
10161
|
-
acs_user_ids: string[];
|
|
10162
|
-
}> | undefined;
|
|
10163
|
-
workspaces?: Array<{
|
|
10164
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
10165
|
-
workspace_id: string;
|
|
10166
|
-
/** Name of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
10167
|
-
name: string;
|
|
10168
|
-
/** Company name associated with the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
10169
|
-
company_name: string;
|
|
10170
|
-
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). */
|
|
10171
|
-
is_sandbox: boolean;
|
|
10172
|
-
connect_webview_customization: {
|
|
10173
|
-
/** Primary button color for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
10174
|
-
primary_button_color?: string | undefined;
|
|
10175
|
-
/** Primary button text color for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
10176
|
-
primary_button_text_color?: string | undefined;
|
|
10177
|
-
/** Success message for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
10178
|
-
success_message?: string | undefined;
|
|
10179
|
-
/** Logo shape for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
10180
|
-
logo_shape?: ('circle' | 'square') | undefined;
|
|
10181
|
-
/** URL of the inviter logo for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
10182
|
-
inviter_logo_url?: string | undefined;
|
|
10183
|
-
};
|
|
10184
|
-
/** Indicates whether the [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) is suspended. Seam suspends sandbox workspaces that have not been accessed in 14 days. */
|
|
10185
|
-
is_suspended: boolean;
|
|
10186
|
-
/**
|
|
10187
|
-
* @deprecated Use `company_name` instead. */
|
|
10188
|
-
connect_partner_name: (string | null) | null;
|
|
10189
|
-
}> | undefined;
|
|
10114
|
+
batch_type: 'access_grants';
|
|
10190
10115
|
spaces?: Array<{
|
|
10191
10116
|
/** ID of the space. */
|
|
10192
10117
|
space_id: string;
|
|
@@ -10748,6 +10673,49 @@ export interface Routes {
|
|
|
10748
10673
|
/** Product type for a Sensi device. */
|
|
10749
10674
|
product_type: string;
|
|
10750
10675
|
} | undefined;
|
|
10676
|
+
/** Metadata for a KeyNest device. */
|
|
10677
|
+
keynest_metadata?: {
|
|
10678
|
+
/** Key ID for a KeyNest device. */
|
|
10679
|
+
key_id: string;
|
|
10680
|
+
/** Device name for a KeyNest device. */
|
|
10681
|
+
device_name: string;
|
|
10682
|
+
/** Property ID for a KeyNest device. */
|
|
10683
|
+
property_id: string | null;
|
|
10684
|
+
/** Property postcode for a KeyNest device. */
|
|
10685
|
+
property_postcode: string | null;
|
|
10686
|
+
/** Key notes for a KeyNest device. */
|
|
10687
|
+
key_notes: string | null;
|
|
10688
|
+
/** Subscription plan for a KeyNest device. */
|
|
10689
|
+
subscription_plan: string;
|
|
10690
|
+
/** Status type for a KeyNest device. */
|
|
10691
|
+
status_type: string;
|
|
10692
|
+
/** Current or last store ID for a KeyNest device. */
|
|
10693
|
+
current_or_last_store_id: number;
|
|
10694
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
10695
|
+
last_movement: string;
|
|
10696
|
+
/** Address for a KeyNest device. */
|
|
10697
|
+
address: string | null;
|
|
10698
|
+
/** Current status for a KeyNest device. */
|
|
10699
|
+
current_status: string | null;
|
|
10700
|
+
/** Current user name for a KeyNest device. */
|
|
10701
|
+
current_user_name: string | null;
|
|
10702
|
+
/** Current user email for a KeyNest device. */
|
|
10703
|
+
current_user_email: string | null;
|
|
10704
|
+
/** Current user phone number for a KeyNest device. */
|
|
10705
|
+
current_user_phone_number: string | null;
|
|
10706
|
+
/** Current user company for a KeyNest device. */
|
|
10707
|
+
current_user_company: string | null;
|
|
10708
|
+
/** Handover method for a KeyNest device. */
|
|
10709
|
+
handover_method: string | null;
|
|
10710
|
+
/** KeyNest app user for a KeyNest device. */
|
|
10711
|
+
keynest_app_user: string | null;
|
|
10712
|
+
/** Default office ID for a KeyNest device. */
|
|
10713
|
+
default_office_id: number;
|
|
10714
|
+
/** Fob ID for a KeyNest device. */
|
|
10715
|
+
fob_id: number;
|
|
10716
|
+
/** Whether the KeyNest device has a photo. */
|
|
10717
|
+
has_photo: boolean;
|
|
10718
|
+
} | undefined;
|
|
10751
10719
|
}) & ({
|
|
10752
10720
|
/** */
|
|
10753
10721
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -11468,6 +11436,299 @@ export interface Routes {
|
|
|
11468
11436
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
11469
11437
|
can_unlock_with_code?: boolean | undefined;
|
|
11470
11438
|
}> | undefined;
|
|
11439
|
+
user_identities?: Array<{
|
|
11440
|
+
/** ID of the user identity. */
|
|
11441
|
+
user_identity_id: string;
|
|
11442
|
+
/** Unique key for the user identity. */
|
|
11443
|
+
user_identity_key: string | null;
|
|
11444
|
+
/** Unique email address for the user identity. */
|
|
11445
|
+
email_address: string | null;
|
|
11446
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
11447
|
+
phone_number: string | null;
|
|
11448
|
+
display_name: string;
|
|
11449
|
+
full_name: string | null;
|
|
11450
|
+
/** Date and time at which the user identity was created. */
|
|
11451
|
+
created_at: string;
|
|
11452
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
11453
|
+
workspace_id: string;
|
|
11454
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11455
|
+
errors: Array<{
|
|
11456
|
+
/** Date and time at which Seam created the error. */
|
|
11457
|
+
created_at: string;
|
|
11458
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11459
|
+
message: string;
|
|
11460
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11461
|
+
error_code: 'issue_with_acs_user';
|
|
11462
|
+
/** ID of the access system user that has an issue. */
|
|
11463
|
+
acs_user_id: string;
|
|
11464
|
+
/** ID of the access system that the user identity is associated with. */
|
|
11465
|
+
acs_system_id: string;
|
|
11466
|
+
}>;
|
|
11467
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
11468
|
+
warnings: Array<{
|
|
11469
|
+
/** Date and time at which Seam created the warning. */
|
|
11470
|
+
created_at: string;
|
|
11471
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11472
|
+
message: string;
|
|
11473
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11474
|
+
warning_code: 'being_deleted';
|
|
11475
|
+
} | {
|
|
11476
|
+
/** Date and time at which Seam created the warning. */
|
|
11477
|
+
created_at: string;
|
|
11478
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11479
|
+
message: string;
|
|
11480
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11481
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
11482
|
+
}>;
|
|
11483
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
11484
|
+
acs_user_ids: string[];
|
|
11485
|
+
}> | undefined;
|
|
11486
|
+
connected_accounts?: Array<{
|
|
11487
|
+
/** ID of the connected account. */
|
|
11488
|
+
connected_account_id?: string | undefined;
|
|
11489
|
+
/** Date and time at which the connected account was created. */
|
|
11490
|
+
created_at?: string | undefined;
|
|
11491
|
+
/** User identifier associated with the connected account. */
|
|
11492
|
+
user_identifier?: {
|
|
11493
|
+
/** Username of the user identifier associated with the connected account. */
|
|
11494
|
+
username?: string | undefined;
|
|
11495
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
11496
|
+
api_url?: string | undefined;
|
|
11497
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
11498
|
+
email?: string | undefined;
|
|
11499
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
11500
|
+
phone?: string | undefined;
|
|
11501
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
11502
|
+
exclusive?: boolean | undefined;
|
|
11503
|
+
} | undefined;
|
|
11504
|
+
/** Type of connected account. */
|
|
11505
|
+
account_type?: string | undefined;
|
|
11506
|
+
/** Display name for the connected account type. */
|
|
11507
|
+
account_type_display_name: string;
|
|
11508
|
+
/** Errors associated with the connected account. */
|
|
11509
|
+
errors: Array<{
|
|
11510
|
+
/** Date and time at which Seam created the error. */
|
|
11511
|
+
created_at: string;
|
|
11512
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11513
|
+
message: string;
|
|
11514
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
11515
|
+
is_connected_account_error?: boolean | undefined;
|
|
11516
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
11517
|
+
is_bridge_error?: boolean | undefined;
|
|
11518
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11519
|
+
error_code: 'account_disconnected';
|
|
11520
|
+
} | {
|
|
11521
|
+
/** Date and time at which Seam created the error. */
|
|
11522
|
+
created_at: string;
|
|
11523
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11524
|
+
message: string;
|
|
11525
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
11526
|
+
is_connected_account_error?: boolean | undefined;
|
|
11527
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
11528
|
+
is_bridge_error?: boolean | undefined;
|
|
11529
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11530
|
+
error_code: 'invalid_credentials';
|
|
11531
|
+
} | {
|
|
11532
|
+
/** Date and time at which Seam created the error. */
|
|
11533
|
+
created_at: string;
|
|
11534
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11535
|
+
message: string;
|
|
11536
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
11537
|
+
is_connected_account_error?: boolean | undefined;
|
|
11538
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
11539
|
+
is_bridge_error?: boolean | undefined;
|
|
11540
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11541
|
+
error_code: 'bridge_disconnected';
|
|
11542
|
+
} | {
|
|
11543
|
+
/** Date and time at which Seam created the error. */
|
|
11544
|
+
created_at: string;
|
|
11545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11546
|
+
message: string;
|
|
11547
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
11548
|
+
is_connected_account_error?: boolean | undefined;
|
|
11549
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
11550
|
+
is_bridge_error?: boolean | undefined;
|
|
11551
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11552
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
11553
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
11554
|
+
salto_ks_metadata: {
|
|
11555
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
11556
|
+
sites: Array<{
|
|
11557
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
11558
|
+
site_id: string;
|
|
11559
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
11560
|
+
site_name: string;
|
|
11561
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
11562
|
+
subscribed_site_user_count: number;
|
|
11563
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
11564
|
+
site_user_subscription_limit: number;
|
|
11565
|
+
}>;
|
|
11566
|
+
};
|
|
11567
|
+
}>;
|
|
11568
|
+
/** Warnings associated with the connected account. */
|
|
11569
|
+
warnings: Array<{
|
|
11570
|
+
/** Date and time at which Seam created the warning. */
|
|
11571
|
+
created_at: string;
|
|
11572
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11573
|
+
message: string;
|
|
11574
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11575
|
+
warning_code: 'scheduled_maintenance_window';
|
|
11576
|
+
} | {
|
|
11577
|
+
/** Date and time at which Seam created the warning. */
|
|
11578
|
+
created_at: string;
|
|
11579
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11580
|
+
message: string;
|
|
11581
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11582
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
11583
|
+
} | {
|
|
11584
|
+
/** Date and time at which Seam created the warning. */
|
|
11585
|
+
created_at: string;
|
|
11586
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11587
|
+
message: string;
|
|
11588
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11589
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
11590
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
11591
|
+
salto_ks_metadata: {
|
|
11592
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
11593
|
+
sites: Array<{
|
|
11594
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
11595
|
+
site_id: string;
|
|
11596
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
11597
|
+
site_name: string;
|
|
11598
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
11599
|
+
site_user_subscription_limit: number;
|
|
11600
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
11601
|
+
subscribed_site_user_count: number;
|
|
11602
|
+
}>;
|
|
11603
|
+
};
|
|
11604
|
+
}>;
|
|
11605
|
+
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
11606
|
+
custom_metadata: Record<string, string | boolean>;
|
|
11607
|
+
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for management by the Seam API. */
|
|
11608
|
+
automatically_manage_new_devices: boolean;
|
|
11609
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
11610
|
+
customer_key?: string | undefined;
|
|
11611
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
11612
|
+
accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
|
|
11613
|
+
}> | undefined;
|
|
11614
|
+
acs_systems?: Array<{
|
|
11615
|
+
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11616
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11617
|
+
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11618
|
+
acs_system_id: string;
|
|
11619
|
+
acs_user_count?: number | undefined;
|
|
11620
|
+
acs_access_group_count?: number | undefined;
|
|
11621
|
+
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11622
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
11623
|
+
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11624
|
+
external_type_display_name?: string | undefined;
|
|
11625
|
+
/** Indicates whether the `acs_system` is a credential manager. */
|
|
11626
|
+
is_credential_manager: boolean;
|
|
11627
|
+
visionline_metadata?: {
|
|
11628
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
11629
|
+
mobile_access_uuid: string;
|
|
11630
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
11631
|
+
system_id: string;
|
|
11632
|
+
/** IP address or hostname of the main Visionline server relative to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) on the local network. */
|
|
11633
|
+
lan_address: string;
|
|
11634
|
+
} | undefined;
|
|
11635
|
+
/**
|
|
11636
|
+
* @deprecated Use `external_type`. */
|
|
11637
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
11638
|
+
/**
|
|
11639
|
+
* @deprecated Use `external_type_display_name`. */
|
|
11640
|
+
system_type_display_name?: string | undefined;
|
|
11641
|
+
location: {
|
|
11642
|
+
/** Time zone in which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) is located. */
|
|
11643
|
+
time_zone: string | null;
|
|
11644
|
+
};
|
|
11645
|
+
/** Name of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11646
|
+
name: string;
|
|
11647
|
+
/** Date and time at which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) was created. */
|
|
11648
|
+
created_at: string;
|
|
11649
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11650
|
+
workspace_id: string;
|
|
11651
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
11652
|
+
* @deprecated Use `connected_account_id`. */
|
|
11653
|
+
connected_account_ids: string[];
|
|
11654
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11655
|
+
connected_account_id: string;
|
|
11656
|
+
/** URL for the image that represents the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11657
|
+
image_url: string;
|
|
11658
|
+
/** Alternative text for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) image. */
|
|
11659
|
+
image_alt_text: string;
|
|
11660
|
+
/** Errors associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11661
|
+
errors: Array<{
|
|
11662
|
+
/** Date and time at which Seam created the error. */
|
|
11663
|
+
created_at: string;
|
|
11664
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11665
|
+
message: string;
|
|
11666
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11667
|
+
error_code: 'seam_bridge_disconnected';
|
|
11668
|
+
} | {
|
|
11669
|
+
/** Date and time at which Seam created the error. */
|
|
11670
|
+
created_at: string;
|
|
11671
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11672
|
+
message: string;
|
|
11673
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11674
|
+
error_code: 'bridge_disconnected';
|
|
11675
|
+
is_bridge_error?: boolean | undefined;
|
|
11676
|
+
} | {
|
|
11677
|
+
/** Date and time at which Seam created the error. */
|
|
11678
|
+
created_at: string;
|
|
11679
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11680
|
+
message: string;
|
|
11681
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11682
|
+
error_code: 'visionline_instance_unreachable';
|
|
11683
|
+
} | {
|
|
11684
|
+
/** Date and time at which Seam created the error. */
|
|
11685
|
+
created_at: string;
|
|
11686
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11687
|
+
message: string;
|
|
11688
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11689
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
11690
|
+
} | {
|
|
11691
|
+
/** Date and time at which Seam created the error. */
|
|
11692
|
+
created_at: string;
|
|
11693
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11694
|
+
message: string;
|
|
11695
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11696
|
+
error_code: 'acs_system_disconnected';
|
|
11697
|
+
} | {
|
|
11698
|
+
/** Date and time at which Seam created the error. */
|
|
11699
|
+
created_at: string;
|
|
11700
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11701
|
+
message: string;
|
|
11702
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11703
|
+
error_code: 'account_disconnected';
|
|
11704
|
+
} | {
|
|
11705
|
+
/** Date and time at which Seam created the error. */
|
|
11706
|
+
created_at: string;
|
|
11707
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11708
|
+
message: string;
|
|
11709
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11710
|
+
error_code: 'salto_ks_certification_expired';
|
|
11711
|
+
}>;
|
|
11712
|
+
/** Warnings associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11713
|
+
warnings: Array<{
|
|
11714
|
+
/** Date and time at which Seam created the warning. */
|
|
11715
|
+
created_at: string;
|
|
11716
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11717
|
+
message: string;
|
|
11718
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11719
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
11720
|
+
} | {
|
|
11721
|
+
/** Date and time at which Seam created the warning. */
|
|
11722
|
+
created_at: string;
|
|
11723
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11724
|
+
message: string;
|
|
11725
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11726
|
+
warning_code: 'time_zone_does_not_match_location';
|
|
11727
|
+
/**
|
|
11728
|
+
* @deprecated this field is deprecated. */
|
|
11729
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
11730
|
+
}>;
|
|
11731
|
+
}> | undefined;
|
|
11471
11732
|
};
|
|
11472
11733
|
};
|
|
11473
11734
|
};
|
|
@@ -13516,6 +13777,49 @@ export interface Routes {
|
|
|
13516
13777
|
/** Product type for a Sensi device. */
|
|
13517
13778
|
product_type: string;
|
|
13518
13779
|
} | undefined;
|
|
13780
|
+
/** Metadata for a KeyNest device. */
|
|
13781
|
+
keynest_metadata?: {
|
|
13782
|
+
/** Key ID for a KeyNest device. */
|
|
13783
|
+
key_id: string;
|
|
13784
|
+
/** Device name for a KeyNest device. */
|
|
13785
|
+
device_name: string;
|
|
13786
|
+
/** Property ID for a KeyNest device. */
|
|
13787
|
+
property_id: string | null;
|
|
13788
|
+
/** Property postcode for a KeyNest device. */
|
|
13789
|
+
property_postcode: string | null;
|
|
13790
|
+
/** Key notes for a KeyNest device. */
|
|
13791
|
+
key_notes: string | null;
|
|
13792
|
+
/** Subscription plan for a KeyNest device. */
|
|
13793
|
+
subscription_plan: string;
|
|
13794
|
+
/** Status type for a KeyNest device. */
|
|
13795
|
+
status_type: string;
|
|
13796
|
+
/** Current or last store ID for a KeyNest device. */
|
|
13797
|
+
current_or_last_store_id: number;
|
|
13798
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
13799
|
+
last_movement: string;
|
|
13800
|
+
/** Address for a KeyNest device. */
|
|
13801
|
+
address: string | null;
|
|
13802
|
+
/** Current status for a KeyNest device. */
|
|
13803
|
+
current_status: string | null;
|
|
13804
|
+
/** Current user name for a KeyNest device. */
|
|
13805
|
+
current_user_name: string | null;
|
|
13806
|
+
/** Current user email for a KeyNest device. */
|
|
13807
|
+
current_user_email: string | null;
|
|
13808
|
+
/** Current user phone number for a KeyNest device. */
|
|
13809
|
+
current_user_phone_number: string | null;
|
|
13810
|
+
/** Current user company for a KeyNest device. */
|
|
13811
|
+
current_user_company: string | null;
|
|
13812
|
+
/** Handover method for a KeyNest device. */
|
|
13813
|
+
handover_method: string | null;
|
|
13814
|
+
/** KeyNest app user for a KeyNest device. */
|
|
13815
|
+
keynest_app_user: string | null;
|
|
13816
|
+
/** Default office ID for a KeyNest device. */
|
|
13817
|
+
default_office_id: number;
|
|
13818
|
+
/** Fob ID for a KeyNest device. */
|
|
13819
|
+
fob_id: number;
|
|
13820
|
+
/** Whether the KeyNest device has a photo. */
|
|
13821
|
+
has_photo: boolean;
|
|
13822
|
+
} | undefined;
|
|
13519
13823
|
}) & ({
|
|
13520
13824
|
/** */
|
|
13521
13825
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -24256,7 +24560,7 @@ export interface Routes {
|
|
|
24256
24560
|
/** Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key. */
|
|
24257
24561
|
customer_key?: string | undefined;
|
|
24258
24562
|
/** 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. */
|
|
24259
|
-
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
24563
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
24260
24564
|
/** 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. */
|
|
24261
24565
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
24262
24566
|
/** 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). */
|
|
@@ -25111,8 +25415,8 @@ export interface Routes {
|
|
|
25111
25415
|
}> | undefined;
|
|
25112
25416
|
/** List of reservations. */
|
|
25113
25417
|
reservations?: Array<{
|
|
25114
|
-
/** Your
|
|
25115
|
-
name
|
|
25418
|
+
/** Your name for this access grant resource. */
|
|
25419
|
+
name?: string | undefined;
|
|
25116
25420
|
/** Starting date and time for the access grant. */
|
|
25117
25421
|
starts_at?: string | undefined;
|
|
25118
25422
|
/** Ending date and time for the access grant. */
|
|
@@ -25148,8 +25452,8 @@ export interface Routes {
|
|
|
25148
25452
|
}> | undefined;
|
|
25149
25453
|
/** List of bookings. */
|
|
25150
25454
|
bookings?: Array<{
|
|
25151
|
-
/** Your
|
|
25152
|
-
name
|
|
25455
|
+
/** Your name for this access grant resource. */
|
|
25456
|
+
name?: string | undefined;
|
|
25153
25457
|
/** Starting date and time for the access grant. */
|
|
25154
25458
|
starts_at?: string | undefined;
|
|
25155
25459
|
/** Ending date and time for the access grant. */
|
|
@@ -25185,8 +25489,8 @@ export interface Routes {
|
|
|
25185
25489
|
}> | undefined;
|
|
25186
25490
|
/** List of access grants. */
|
|
25187
25491
|
access_grants?: Array<{
|
|
25188
|
-
/** Your
|
|
25189
|
-
name
|
|
25492
|
+
/** Your name for this access grant resource. */
|
|
25493
|
+
name?: string | undefined;
|
|
25190
25494
|
/** Starting date and time for the access grant. */
|
|
25191
25495
|
starts_at?: string | undefined;
|
|
25192
25496
|
/** Ending date and time for the access grant. */
|
|
@@ -25371,8 +25675,8 @@ export interface Routes {
|
|
|
25371
25675
|
}> | undefined;
|
|
25372
25676
|
/** List of reservations. */
|
|
25373
25677
|
reservations?: Array<{
|
|
25374
|
-
/** Your
|
|
25375
|
-
name
|
|
25678
|
+
/** Your name for this access grant resource. */
|
|
25679
|
+
name?: string | undefined;
|
|
25376
25680
|
/** Starting date and time for the access grant. */
|
|
25377
25681
|
starts_at?: string | undefined;
|
|
25378
25682
|
/** Ending date and time for the access grant. */
|
|
@@ -25408,8 +25712,8 @@ export interface Routes {
|
|
|
25408
25712
|
}> | undefined;
|
|
25409
25713
|
/** List of bookings. */
|
|
25410
25714
|
bookings?: Array<{
|
|
25411
|
-
/** Your
|
|
25412
|
-
name
|
|
25715
|
+
/** Your name for this access grant resource. */
|
|
25716
|
+
name?: string | undefined;
|
|
25413
25717
|
/** Starting date and time for the access grant. */
|
|
25414
25718
|
starts_at?: string | undefined;
|
|
25415
25719
|
/** Ending date and time for the access grant. */
|
|
@@ -25445,8 +25749,8 @@ export interface Routes {
|
|
|
25445
25749
|
}> | undefined;
|
|
25446
25750
|
/** List of access grants. */
|
|
25447
25751
|
access_grants?: Array<{
|
|
25448
|
-
/** Your
|
|
25449
|
-
name
|
|
25752
|
+
/** Your name for this access grant resource. */
|
|
25753
|
+
name?: string | undefined;
|
|
25450
25754
|
/** Starting date and time for the access grant. */
|
|
25451
25755
|
starts_at?: string | undefined;
|
|
25452
25756
|
/** Ending date and time for the access grant. */
|
|
@@ -26053,6 +26357,49 @@ export interface Routes {
|
|
|
26053
26357
|
/** Product type for a Sensi device. */
|
|
26054
26358
|
product_type: string;
|
|
26055
26359
|
} | undefined;
|
|
26360
|
+
/** Metadata for a KeyNest device. */
|
|
26361
|
+
keynest_metadata?: {
|
|
26362
|
+
/** Key ID for a KeyNest device. */
|
|
26363
|
+
key_id: string;
|
|
26364
|
+
/** Device name for a KeyNest device. */
|
|
26365
|
+
device_name: string;
|
|
26366
|
+
/** Property ID for a KeyNest device. */
|
|
26367
|
+
property_id: string | null;
|
|
26368
|
+
/** Property postcode for a KeyNest device. */
|
|
26369
|
+
property_postcode: string | null;
|
|
26370
|
+
/** Key notes for a KeyNest device. */
|
|
26371
|
+
key_notes: string | null;
|
|
26372
|
+
/** Subscription plan for a KeyNest device. */
|
|
26373
|
+
subscription_plan: string;
|
|
26374
|
+
/** Status type for a KeyNest device. */
|
|
26375
|
+
status_type: string;
|
|
26376
|
+
/** Current or last store ID for a KeyNest device. */
|
|
26377
|
+
current_or_last_store_id: number;
|
|
26378
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
26379
|
+
last_movement: string;
|
|
26380
|
+
/** Address for a KeyNest device. */
|
|
26381
|
+
address: string | null;
|
|
26382
|
+
/** Current status for a KeyNest device. */
|
|
26383
|
+
current_status: string | null;
|
|
26384
|
+
/** Current user name for a KeyNest device. */
|
|
26385
|
+
current_user_name: string | null;
|
|
26386
|
+
/** Current user email for a KeyNest device. */
|
|
26387
|
+
current_user_email: string | null;
|
|
26388
|
+
/** Current user phone number for a KeyNest device. */
|
|
26389
|
+
current_user_phone_number: string | null;
|
|
26390
|
+
/** Current user company for a KeyNest device. */
|
|
26391
|
+
current_user_company: string | null;
|
|
26392
|
+
/** Handover method for a KeyNest device. */
|
|
26393
|
+
handover_method: string | null;
|
|
26394
|
+
/** KeyNest app user for a KeyNest device. */
|
|
26395
|
+
keynest_app_user: string | null;
|
|
26396
|
+
/** Default office ID for a KeyNest device. */
|
|
26397
|
+
default_office_id: number;
|
|
26398
|
+
/** Fob ID for a KeyNest device. */
|
|
26399
|
+
fob_id: number;
|
|
26400
|
+
/** Whether the KeyNest device has a photo. */
|
|
26401
|
+
has_photo: boolean;
|
|
26402
|
+
} | undefined;
|
|
26056
26403
|
}) & ({
|
|
26057
26404
|
/** */
|
|
26058
26405
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -26690,7 +27037,7 @@ export interface Routes {
|
|
|
26690
27037
|
/** Array of device types for which you want to list devices. */
|
|
26691
27038
|
device_types?: Array<('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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
26692
27039
|
/** Manufacturer for which you want to list devices. */
|
|
26693
|
-
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings') | undefined;
|
|
27040
|
+
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
|
|
26694
27041
|
/** Array of device IDs for which you want to list devices. */
|
|
26695
27042
|
device_ids?: string[] | undefined;
|
|
26696
27043
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -27262,6 +27609,49 @@ export interface Routes {
|
|
|
27262
27609
|
/** Product type for a Sensi device. */
|
|
27263
27610
|
product_type: string;
|
|
27264
27611
|
} | undefined;
|
|
27612
|
+
/** Metadata for a KeyNest device. */
|
|
27613
|
+
keynest_metadata?: {
|
|
27614
|
+
/** Key ID for a KeyNest device. */
|
|
27615
|
+
key_id: string;
|
|
27616
|
+
/** Device name for a KeyNest device. */
|
|
27617
|
+
device_name: string;
|
|
27618
|
+
/** Property ID for a KeyNest device. */
|
|
27619
|
+
property_id: string | null;
|
|
27620
|
+
/** Property postcode for a KeyNest device. */
|
|
27621
|
+
property_postcode: string | null;
|
|
27622
|
+
/** Key notes for a KeyNest device. */
|
|
27623
|
+
key_notes: string | null;
|
|
27624
|
+
/** Subscription plan for a KeyNest device. */
|
|
27625
|
+
subscription_plan: string;
|
|
27626
|
+
/** Status type for a KeyNest device. */
|
|
27627
|
+
status_type: string;
|
|
27628
|
+
/** Current or last store ID for a KeyNest device. */
|
|
27629
|
+
current_or_last_store_id: number;
|
|
27630
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
27631
|
+
last_movement: string;
|
|
27632
|
+
/** Address for a KeyNest device. */
|
|
27633
|
+
address: string | null;
|
|
27634
|
+
/** Current status for a KeyNest device. */
|
|
27635
|
+
current_status: string | null;
|
|
27636
|
+
/** Current user name for a KeyNest device. */
|
|
27637
|
+
current_user_name: string | null;
|
|
27638
|
+
/** Current user email for a KeyNest device. */
|
|
27639
|
+
current_user_email: string | null;
|
|
27640
|
+
/** Current user phone number for a KeyNest device. */
|
|
27641
|
+
current_user_phone_number: string | null;
|
|
27642
|
+
/** Current user company for a KeyNest device. */
|
|
27643
|
+
current_user_company: string | null;
|
|
27644
|
+
/** Handover method for a KeyNest device. */
|
|
27645
|
+
handover_method: string | null;
|
|
27646
|
+
/** KeyNest app user for a KeyNest device. */
|
|
27647
|
+
keynest_app_user: string | null;
|
|
27648
|
+
/** Default office ID for a KeyNest device. */
|
|
27649
|
+
default_office_id: number;
|
|
27650
|
+
/** Fob ID for a KeyNest device. */
|
|
27651
|
+
fob_id: number;
|
|
27652
|
+
/** Whether the KeyNest device has a photo. */
|
|
27653
|
+
has_photo: boolean;
|
|
27654
|
+
} | undefined;
|
|
27265
27655
|
}) & ({
|
|
27266
27656
|
/** */
|
|
27267
27657
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -27902,7 +28292,7 @@ export interface Routes {
|
|
|
27902
28292
|
formData: {};
|
|
27903
28293
|
jsonResponse: {
|
|
27904
28294
|
device_providers: Array<{
|
|
27905
|
-
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2';
|
|
28295
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest';
|
|
27906
28296
|
display_name: string;
|
|
27907
28297
|
image_url: string;
|
|
27908
28298
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -28403,7 +28793,7 @@ export interface Routes {
|
|
|
28403
28793
|
/** Array of device types for which you want to list devices. */
|
|
28404
28794
|
device_types?: Array<('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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
28405
28795
|
/** Manufacturer for which you want to list devices. */
|
|
28406
|
-
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings') | undefined;
|
|
28796
|
+
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
|
|
28407
28797
|
/** Array of device IDs for which you want to list devices. */
|
|
28408
28798
|
device_ids?: string[] | undefined;
|
|
28409
28799
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -32695,6 +33085,49 @@ export interface Routes {
|
|
|
32695
33085
|
/** Product type for a Sensi device. */
|
|
32696
33086
|
product_type: string;
|
|
32697
33087
|
} | undefined;
|
|
33088
|
+
/** Metadata for a KeyNest device. */
|
|
33089
|
+
keynest_metadata?: {
|
|
33090
|
+
/** Key ID for a KeyNest device. */
|
|
33091
|
+
key_id: string;
|
|
33092
|
+
/** Device name for a KeyNest device. */
|
|
33093
|
+
device_name: string;
|
|
33094
|
+
/** Property ID for a KeyNest device. */
|
|
33095
|
+
property_id: string | null;
|
|
33096
|
+
/** Property postcode for a KeyNest device. */
|
|
33097
|
+
property_postcode: string | null;
|
|
33098
|
+
/** Key notes for a KeyNest device. */
|
|
33099
|
+
key_notes: string | null;
|
|
33100
|
+
/** Subscription plan for a KeyNest device. */
|
|
33101
|
+
subscription_plan: string;
|
|
33102
|
+
/** Status type for a KeyNest device. */
|
|
33103
|
+
status_type: string;
|
|
33104
|
+
/** Current or last store ID for a KeyNest device. */
|
|
33105
|
+
current_or_last_store_id: number;
|
|
33106
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
33107
|
+
last_movement: string;
|
|
33108
|
+
/** Address for a KeyNest device. */
|
|
33109
|
+
address: string | null;
|
|
33110
|
+
/** Current status for a KeyNest device. */
|
|
33111
|
+
current_status: string | null;
|
|
33112
|
+
/** Current user name for a KeyNest device. */
|
|
33113
|
+
current_user_name: string | null;
|
|
33114
|
+
/** Current user email for a KeyNest device. */
|
|
33115
|
+
current_user_email: string | null;
|
|
33116
|
+
/** Current user phone number for a KeyNest device. */
|
|
33117
|
+
current_user_phone_number: string | null;
|
|
33118
|
+
/** Current user company for a KeyNest device. */
|
|
33119
|
+
current_user_company: string | null;
|
|
33120
|
+
/** Handover method for a KeyNest device. */
|
|
33121
|
+
handover_method: string | null;
|
|
33122
|
+
/** KeyNest app user for a KeyNest device. */
|
|
33123
|
+
keynest_app_user: string | null;
|
|
33124
|
+
/** Default office ID for a KeyNest device. */
|
|
33125
|
+
default_office_id: number;
|
|
33126
|
+
/** Fob ID for a KeyNest device. */
|
|
33127
|
+
fob_id: number;
|
|
33128
|
+
/** Whether the KeyNest device has a photo. */
|
|
33129
|
+
has_photo: boolean;
|
|
33130
|
+
} | undefined;
|
|
32698
33131
|
}) & ({
|
|
32699
33132
|
/** */
|
|
32700
33133
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -33856,6 +34289,49 @@ export interface Routes {
|
|
|
33856
34289
|
/** Product type for a Sensi device. */
|
|
33857
34290
|
product_type: string;
|
|
33858
34291
|
} | undefined;
|
|
34292
|
+
/** Metadata for a KeyNest device. */
|
|
34293
|
+
keynest_metadata?: {
|
|
34294
|
+
/** Key ID for a KeyNest device. */
|
|
34295
|
+
key_id: string;
|
|
34296
|
+
/** Device name for a KeyNest device. */
|
|
34297
|
+
device_name: string;
|
|
34298
|
+
/** Property ID for a KeyNest device. */
|
|
34299
|
+
property_id: string | null;
|
|
34300
|
+
/** Property postcode for a KeyNest device. */
|
|
34301
|
+
property_postcode: string | null;
|
|
34302
|
+
/** Key notes for a KeyNest device. */
|
|
34303
|
+
key_notes: string | null;
|
|
34304
|
+
/** Subscription plan for a KeyNest device. */
|
|
34305
|
+
subscription_plan: string;
|
|
34306
|
+
/** Status type for a KeyNest device. */
|
|
34307
|
+
status_type: string;
|
|
34308
|
+
/** Current or last store ID for a KeyNest device. */
|
|
34309
|
+
current_or_last_store_id: number;
|
|
34310
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
34311
|
+
last_movement: string;
|
|
34312
|
+
/** Address for a KeyNest device. */
|
|
34313
|
+
address: string | null;
|
|
34314
|
+
/** Current status for a KeyNest device. */
|
|
34315
|
+
current_status: string | null;
|
|
34316
|
+
/** Current user name for a KeyNest device. */
|
|
34317
|
+
current_user_name: string | null;
|
|
34318
|
+
/** Current user email for a KeyNest device. */
|
|
34319
|
+
current_user_email: string | null;
|
|
34320
|
+
/** Current user phone number for a KeyNest device. */
|
|
34321
|
+
current_user_phone_number: string | null;
|
|
34322
|
+
/** Current user company for a KeyNest device. */
|
|
34323
|
+
current_user_company: string | null;
|
|
34324
|
+
/** Handover method for a KeyNest device. */
|
|
34325
|
+
handover_method: string | null;
|
|
34326
|
+
/** KeyNest app user for a KeyNest device. */
|
|
34327
|
+
keynest_app_user: string | null;
|
|
34328
|
+
/** Default office ID for a KeyNest device. */
|
|
34329
|
+
default_office_id: number;
|
|
34330
|
+
/** Fob ID for a KeyNest device. */
|
|
34331
|
+
fob_id: number;
|
|
34332
|
+
/** Whether the KeyNest device has a photo. */
|
|
34333
|
+
has_photo: boolean;
|
|
34334
|
+
} | undefined;
|
|
33859
34335
|
}) & ({
|
|
33860
34336
|
/** */
|
|
33861
34337
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -35065,6 +35541,49 @@ export interface Routes {
|
|
|
35065
35541
|
/** Product type for a Sensi device. */
|
|
35066
35542
|
product_type: string;
|
|
35067
35543
|
} | undefined;
|
|
35544
|
+
/** Metadata for a KeyNest device. */
|
|
35545
|
+
keynest_metadata?: {
|
|
35546
|
+
/** Key ID for a KeyNest device. */
|
|
35547
|
+
key_id: string;
|
|
35548
|
+
/** Device name for a KeyNest device. */
|
|
35549
|
+
device_name: string;
|
|
35550
|
+
/** Property ID for a KeyNest device. */
|
|
35551
|
+
property_id: string | null;
|
|
35552
|
+
/** Property postcode for a KeyNest device. */
|
|
35553
|
+
property_postcode: string | null;
|
|
35554
|
+
/** Key notes for a KeyNest device. */
|
|
35555
|
+
key_notes: string | null;
|
|
35556
|
+
/** Subscription plan for a KeyNest device. */
|
|
35557
|
+
subscription_plan: string;
|
|
35558
|
+
/** Status type for a KeyNest device. */
|
|
35559
|
+
status_type: string;
|
|
35560
|
+
/** Current or last store ID for a KeyNest device. */
|
|
35561
|
+
current_or_last_store_id: number;
|
|
35562
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
35563
|
+
last_movement: string;
|
|
35564
|
+
/** Address for a KeyNest device. */
|
|
35565
|
+
address: string | null;
|
|
35566
|
+
/** Current status for a KeyNest device. */
|
|
35567
|
+
current_status: string | null;
|
|
35568
|
+
/** Current user name for a KeyNest device. */
|
|
35569
|
+
current_user_name: string | null;
|
|
35570
|
+
/** Current user email for a KeyNest device. */
|
|
35571
|
+
current_user_email: string | null;
|
|
35572
|
+
/** Current user phone number for a KeyNest device. */
|
|
35573
|
+
current_user_phone_number: string | null;
|
|
35574
|
+
/** Current user company for a KeyNest device. */
|
|
35575
|
+
current_user_company: string | null;
|
|
35576
|
+
/** Handover method for a KeyNest device. */
|
|
35577
|
+
handover_method: string | null;
|
|
35578
|
+
/** KeyNest app user for a KeyNest device. */
|
|
35579
|
+
keynest_app_user: string | null;
|
|
35580
|
+
/** Default office ID for a KeyNest device. */
|
|
35581
|
+
default_office_id: number;
|
|
35582
|
+
/** Fob ID for a KeyNest device. */
|
|
35583
|
+
fob_id: number;
|
|
35584
|
+
/** Whether the KeyNest device has a photo. */
|
|
35585
|
+
has_photo: boolean;
|
|
35586
|
+
} | undefined;
|
|
35068
35587
|
}) & ({
|
|
35069
35588
|
/** */
|
|
35070
35589
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -36225,6 +36744,49 @@ export interface Routes {
|
|
|
36225
36744
|
/** Product type for a Sensi device. */
|
|
36226
36745
|
product_type: string;
|
|
36227
36746
|
} | undefined;
|
|
36747
|
+
/** Metadata for a KeyNest device. */
|
|
36748
|
+
keynest_metadata?: {
|
|
36749
|
+
/** Key ID for a KeyNest device. */
|
|
36750
|
+
key_id: string;
|
|
36751
|
+
/** Device name for a KeyNest device. */
|
|
36752
|
+
device_name: string;
|
|
36753
|
+
/** Property ID for a KeyNest device. */
|
|
36754
|
+
property_id: string | null;
|
|
36755
|
+
/** Property postcode for a KeyNest device. */
|
|
36756
|
+
property_postcode: string | null;
|
|
36757
|
+
/** Key notes for a KeyNest device. */
|
|
36758
|
+
key_notes: string | null;
|
|
36759
|
+
/** Subscription plan for a KeyNest device. */
|
|
36760
|
+
subscription_plan: string;
|
|
36761
|
+
/** Status type for a KeyNest device. */
|
|
36762
|
+
status_type: string;
|
|
36763
|
+
/** Current or last store ID for a KeyNest device. */
|
|
36764
|
+
current_or_last_store_id: number;
|
|
36765
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
36766
|
+
last_movement: string;
|
|
36767
|
+
/** Address for a KeyNest device. */
|
|
36768
|
+
address: string | null;
|
|
36769
|
+
/** Current status for a KeyNest device. */
|
|
36770
|
+
current_status: string | null;
|
|
36771
|
+
/** Current user name for a KeyNest device. */
|
|
36772
|
+
current_user_name: string | null;
|
|
36773
|
+
/** Current user email for a KeyNest device. */
|
|
36774
|
+
current_user_email: string | null;
|
|
36775
|
+
/** Current user phone number for a KeyNest device. */
|
|
36776
|
+
current_user_phone_number: string | null;
|
|
36777
|
+
/** Current user company for a KeyNest device. */
|
|
36778
|
+
current_user_company: string | null;
|
|
36779
|
+
/** Handover method for a KeyNest device. */
|
|
36780
|
+
handover_method: string | null;
|
|
36781
|
+
/** KeyNest app user for a KeyNest device. */
|
|
36782
|
+
keynest_app_user: string | null;
|
|
36783
|
+
/** Default office ID for a KeyNest device. */
|
|
36784
|
+
default_office_id: number;
|
|
36785
|
+
/** Fob ID for a KeyNest device. */
|
|
36786
|
+
fob_id: number;
|
|
36787
|
+
/** Whether the KeyNest device has a photo. */
|
|
36788
|
+
has_photo: boolean;
|
|
36789
|
+
} | undefined;
|
|
36228
36790
|
}) & ({
|
|
36229
36791
|
/** */
|
|
36230
36792
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42472,6 +43034,49 @@ export interface Routes {
|
|
|
42472
43034
|
/** Product type for a Sensi device. */
|
|
42473
43035
|
product_type: string;
|
|
42474
43036
|
} | undefined;
|
|
43037
|
+
/** Metadata for a KeyNest device. */
|
|
43038
|
+
keynest_metadata?: {
|
|
43039
|
+
/** Key ID for a KeyNest device. */
|
|
43040
|
+
key_id: string;
|
|
43041
|
+
/** Device name for a KeyNest device. */
|
|
43042
|
+
device_name: string;
|
|
43043
|
+
/** Property ID for a KeyNest device. */
|
|
43044
|
+
property_id: string | null;
|
|
43045
|
+
/** Property postcode for a KeyNest device. */
|
|
43046
|
+
property_postcode: string | null;
|
|
43047
|
+
/** Key notes for a KeyNest device. */
|
|
43048
|
+
key_notes: string | null;
|
|
43049
|
+
/** Subscription plan for a KeyNest device. */
|
|
43050
|
+
subscription_plan: string;
|
|
43051
|
+
/** Status type for a KeyNest device. */
|
|
43052
|
+
status_type: string;
|
|
43053
|
+
/** Current or last store ID for a KeyNest device. */
|
|
43054
|
+
current_or_last_store_id: number;
|
|
43055
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
43056
|
+
last_movement: string;
|
|
43057
|
+
/** Address for a KeyNest device. */
|
|
43058
|
+
address: string | null;
|
|
43059
|
+
/** Current status for a KeyNest device. */
|
|
43060
|
+
current_status: string | null;
|
|
43061
|
+
/** Current user name for a KeyNest device. */
|
|
43062
|
+
current_user_name: string | null;
|
|
43063
|
+
/** Current user email for a KeyNest device. */
|
|
43064
|
+
current_user_email: string | null;
|
|
43065
|
+
/** Current user phone number for a KeyNest device. */
|
|
43066
|
+
current_user_phone_number: string | null;
|
|
43067
|
+
/** Current user company for a KeyNest device. */
|
|
43068
|
+
current_user_company: string | null;
|
|
43069
|
+
/** Handover method for a KeyNest device. */
|
|
43070
|
+
handover_method: string | null;
|
|
43071
|
+
/** KeyNest app user for a KeyNest device. */
|
|
43072
|
+
keynest_app_user: string | null;
|
|
43073
|
+
/** Default office ID for a KeyNest device. */
|
|
43074
|
+
default_office_id: number;
|
|
43075
|
+
/** Fob ID for a KeyNest device. */
|
|
43076
|
+
fob_id: number;
|
|
43077
|
+
/** Whether the KeyNest device has a photo. */
|
|
43078
|
+
has_photo: boolean;
|
|
43079
|
+
} | undefined;
|
|
42475
43080
|
}) & ({
|
|
42476
43081
|
/** */
|
|
42477
43082
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -43632,6 +44237,49 @@ export interface Routes {
|
|
|
43632
44237
|
/** Product type for a Sensi device. */
|
|
43633
44238
|
product_type: string;
|
|
43634
44239
|
} | undefined;
|
|
44240
|
+
/** Metadata for a KeyNest device. */
|
|
44241
|
+
keynest_metadata?: {
|
|
44242
|
+
/** Key ID for a KeyNest device. */
|
|
44243
|
+
key_id: string;
|
|
44244
|
+
/** Device name for a KeyNest device. */
|
|
44245
|
+
device_name: string;
|
|
44246
|
+
/** Property ID for a KeyNest device. */
|
|
44247
|
+
property_id: string | null;
|
|
44248
|
+
/** Property postcode for a KeyNest device. */
|
|
44249
|
+
property_postcode: string | null;
|
|
44250
|
+
/** Key notes for a KeyNest device. */
|
|
44251
|
+
key_notes: string | null;
|
|
44252
|
+
/** Subscription plan for a KeyNest device. */
|
|
44253
|
+
subscription_plan: string;
|
|
44254
|
+
/** Status type for a KeyNest device. */
|
|
44255
|
+
status_type: string;
|
|
44256
|
+
/** Current or last store ID for a KeyNest device. */
|
|
44257
|
+
current_or_last_store_id: number;
|
|
44258
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
44259
|
+
last_movement: string;
|
|
44260
|
+
/** Address for a KeyNest device. */
|
|
44261
|
+
address: string | null;
|
|
44262
|
+
/** Current status for a KeyNest device. */
|
|
44263
|
+
current_status: string | null;
|
|
44264
|
+
/** Current user name for a KeyNest device. */
|
|
44265
|
+
current_user_name: string | null;
|
|
44266
|
+
/** Current user email for a KeyNest device. */
|
|
44267
|
+
current_user_email: string | null;
|
|
44268
|
+
/** Current user phone number for a KeyNest device. */
|
|
44269
|
+
current_user_phone_number: string | null;
|
|
44270
|
+
/** Current user company for a KeyNest device. */
|
|
44271
|
+
current_user_company: string | null;
|
|
44272
|
+
/** Handover method for a KeyNest device. */
|
|
44273
|
+
handover_method: string | null;
|
|
44274
|
+
/** KeyNest app user for a KeyNest device. */
|
|
44275
|
+
keynest_app_user: string | null;
|
|
44276
|
+
/** Default office ID for a KeyNest device. */
|
|
44277
|
+
default_office_id: number;
|
|
44278
|
+
/** Fob ID for a KeyNest device. */
|
|
44279
|
+
fob_id: number;
|
|
44280
|
+
/** Whether the KeyNest device has a photo. */
|
|
44281
|
+
has_photo: boolean;
|
|
44282
|
+
} | undefined;
|
|
43635
44283
|
}) & ({
|
|
43636
44284
|
/** */
|
|
43637
44285
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48702,8 +49350,8 @@ export interface Routes {
|
|
|
48702
49350
|
}>;
|
|
48703
49351
|
};
|
|
48704
49352
|
};
|
|
48705
|
-
'/seam/console/v1/
|
|
48706
|
-
route: '/seam/console/v1/
|
|
49353
|
+
'/seam/console/v1/get_resource_locator': {
|
|
49354
|
+
route: '/seam/console/v1/get_resource_locator';
|
|
48707
49355
|
method: 'GET' | 'POST';
|
|
48708
49356
|
queryParams: {
|
|
48709
49357
|
uuid: string;
|
|
@@ -48712,7 +49360,11 @@ export interface Routes {
|
|
|
48712
49360
|
commonParams: {};
|
|
48713
49361
|
formData: {};
|
|
48714
49362
|
jsonResponse: {
|
|
48715
|
-
|
|
49363
|
+
resource_locator: {
|
|
49364
|
+
resource_type: string;
|
|
49365
|
+
acs_system_id?: string | undefined;
|
|
49366
|
+
device_id?: string | undefined;
|
|
49367
|
+
};
|
|
48716
49368
|
};
|
|
48717
49369
|
};
|
|
48718
49370
|
'/seam/customer/v1/automation_runs/list': {
|
|
@@ -48793,11 +49445,11 @@ export interface Routes {
|
|
|
48793
49445
|
} | undefined;
|
|
48794
49446
|
reservation_time_updated?: {
|
|
48795
49447
|
rule: 'reservation_time_updated';
|
|
48796
|
-
config
|
|
49448
|
+
config?: {} | undefined;
|
|
48797
49449
|
} | undefined;
|
|
48798
49450
|
reservation_deleted?: {
|
|
48799
49451
|
rule: 'reservation_deleted';
|
|
48800
|
-
config
|
|
49452
|
+
config?: {} | undefined;
|
|
48801
49453
|
} | undefined;
|
|
48802
49454
|
} | undefined;
|
|
48803
49455
|
};
|
|
@@ -48818,11 +49470,11 @@ export interface Routes {
|
|
|
48818
49470
|
} | undefined;
|
|
48819
49471
|
reservation_time_updated?: {
|
|
48820
49472
|
rule: 'reservation_time_updated';
|
|
48821
|
-
config
|
|
49473
|
+
config?: {} | undefined;
|
|
48822
49474
|
} | undefined;
|
|
48823
49475
|
reservation_deleted?: {
|
|
48824
49476
|
rule: 'reservation_deleted';
|
|
48825
|
-
config
|
|
49477
|
+
config?: {} | undefined;
|
|
48826
49478
|
} | undefined;
|
|
48827
49479
|
} | undefined;
|
|
48828
49480
|
};
|
|
@@ -49330,6 +49982,56 @@ export interface Routes {
|
|
|
49330
49982
|
}>;
|
|
49331
49983
|
}>;
|
|
49332
49984
|
}>;
|
|
49985
|
+
/** User identity. */
|
|
49986
|
+
user_identity: {
|
|
49987
|
+
/** ID of the user identity. */
|
|
49988
|
+
user_identity_id: string;
|
|
49989
|
+
/** Unique key for the user identity. */
|
|
49990
|
+
user_identity_key: string | null;
|
|
49991
|
+
/** Unique email address for the user identity. */
|
|
49992
|
+
email_address: string | null;
|
|
49993
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
49994
|
+
phone_number: string | null;
|
|
49995
|
+
display_name: string;
|
|
49996
|
+
full_name: string | null;
|
|
49997
|
+
/** Date and time at which the user identity was created. */
|
|
49998
|
+
created_at: string;
|
|
49999
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
50000
|
+
workspace_id: string;
|
|
50001
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
50002
|
+
errors: Array<{
|
|
50003
|
+
/** Date and time at which Seam created the error. */
|
|
50004
|
+
created_at: string;
|
|
50005
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50006
|
+
message: string;
|
|
50007
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50008
|
+
error_code: 'issue_with_acs_user';
|
|
50009
|
+
/** ID of the access system user that has an issue. */
|
|
50010
|
+
acs_user_id: string;
|
|
50011
|
+
/** ID of the access system that the user identity is associated with. */
|
|
50012
|
+
acs_system_id: string;
|
|
50013
|
+
}>;
|
|
50014
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
50015
|
+
warnings: Array<{
|
|
50016
|
+
/** Date and time at which Seam created the warning. */
|
|
50017
|
+
created_at: string;
|
|
50018
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
50019
|
+
message: string;
|
|
50020
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50021
|
+
warning_code: 'being_deleted';
|
|
50022
|
+
} | {
|
|
50023
|
+
/** Date and time at which Seam created the warning. */
|
|
50024
|
+
created_at: string;
|
|
50025
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
50026
|
+
message: string;
|
|
50027
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50028
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
50029
|
+
}>;
|
|
50030
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
50031
|
+
acs_user_ids: string[];
|
|
50032
|
+
};
|
|
50033
|
+
/** Workspace ID. */
|
|
50034
|
+
workspace_id: string;
|
|
49333
50035
|
};
|
|
49334
50036
|
};
|
|
49335
50037
|
};
|
|
@@ -49482,88 +50184,14 @@ export interface Routes {
|
|
|
49482
50184
|
commonParams: {
|
|
49483
50185
|
/** IDs of the spaces that you want to get along with their related resources. */
|
|
49484
50186
|
space_ids: string[];
|
|
49485
|
-
include?: Array<'spaces' | 'devices' | 'acs_entrances'> | undefined;
|
|
49486
|
-
exclude?: Array<'spaces' | 'devices' | 'acs_entrances'> | undefined;
|
|
50187
|
+
include?: Array<'spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems'> | undefined;
|
|
50188
|
+
exclude?: Array<'spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems'> | undefined;
|
|
49487
50189
|
};
|
|
49488
50190
|
formData: {};
|
|
49489
50191
|
jsonResponse: {
|
|
49490
|
-
/**
|
|
50192
|
+
/** ID of the affected access system user. */
|
|
49491
50193
|
batch: {
|
|
49492
|
-
batch_type: '
|
|
49493
|
-
user_identities?: Array<{
|
|
49494
|
-
/** ID of the user identity. */
|
|
49495
|
-
user_identity_id: string;
|
|
49496
|
-
/** Unique key for the user identity. */
|
|
49497
|
-
user_identity_key: string | null;
|
|
49498
|
-
/** Unique email address for the user identity. */
|
|
49499
|
-
email_address: string | null;
|
|
49500
|
-
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
49501
|
-
phone_number: string | null;
|
|
49502
|
-
display_name: string;
|
|
49503
|
-
full_name: string | null;
|
|
49504
|
-
/** Date and time at which the user identity was created. */
|
|
49505
|
-
created_at: string;
|
|
49506
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
49507
|
-
workspace_id: string;
|
|
49508
|
-
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
49509
|
-
errors: Array<{
|
|
49510
|
-
/** Date and time at which Seam created the error. */
|
|
49511
|
-
created_at: string;
|
|
49512
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49513
|
-
message: string;
|
|
49514
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49515
|
-
error_code: 'issue_with_acs_user';
|
|
49516
|
-
/** ID of the access system user that has an issue. */
|
|
49517
|
-
acs_user_id: string;
|
|
49518
|
-
/** ID of the access system that the user identity is associated with. */
|
|
49519
|
-
acs_system_id: string;
|
|
49520
|
-
}>;
|
|
49521
|
-
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
49522
|
-
warnings: Array<{
|
|
49523
|
-
/** Date and time at which Seam created the warning. */
|
|
49524
|
-
created_at: string;
|
|
49525
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49526
|
-
message: string;
|
|
49527
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49528
|
-
warning_code: 'being_deleted';
|
|
49529
|
-
} | {
|
|
49530
|
-
/** Date and time at which Seam created the warning. */
|
|
49531
|
-
created_at: string;
|
|
49532
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49533
|
-
message: string;
|
|
49534
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49535
|
-
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
49536
|
-
}>;
|
|
49537
|
-
/** Array of access system user IDs associated with the user identity. */
|
|
49538
|
-
acs_user_ids: string[];
|
|
49539
|
-
}> | undefined;
|
|
49540
|
-
workspaces?: Array<{
|
|
49541
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
49542
|
-
workspace_id: string;
|
|
49543
|
-
/** Name of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
49544
|
-
name: string;
|
|
49545
|
-
/** Company name associated with the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
49546
|
-
company_name: string;
|
|
49547
|
-
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). */
|
|
49548
|
-
is_sandbox: boolean;
|
|
49549
|
-
connect_webview_customization: {
|
|
49550
|
-
/** Primary button color for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
49551
|
-
primary_button_color?: string | undefined;
|
|
49552
|
-
/** Primary button text color for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
49553
|
-
primary_button_text_color?: string | undefined;
|
|
49554
|
-
/** Success message for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
49555
|
-
success_message?: string | undefined;
|
|
49556
|
-
/** Logo shape for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
49557
|
-
logo_shape?: ('circle' | 'square') | undefined;
|
|
49558
|
-
/** URL of the inviter logo for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
49559
|
-
inviter_logo_url?: string | undefined;
|
|
49560
|
-
};
|
|
49561
|
-
/** Indicates whether the [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) is suspended. Seam suspends sandbox workspaces that have not been accessed in 14 days. */
|
|
49562
|
-
is_suspended: boolean;
|
|
49563
|
-
/**
|
|
49564
|
-
* @deprecated Use `company_name` instead. */
|
|
49565
|
-
connect_partner_name: (string | null) | null;
|
|
49566
|
-
}> | undefined;
|
|
50194
|
+
batch_type: 'spaces';
|
|
49567
50195
|
spaces?: Array<{
|
|
49568
50196
|
/** ID of the space. */
|
|
49569
50197
|
space_id: string;
|
|
@@ -50125,6 +50753,49 @@ export interface Routes {
|
|
|
50125
50753
|
/** Product type for a Sensi device. */
|
|
50126
50754
|
product_type: string;
|
|
50127
50755
|
} | undefined;
|
|
50756
|
+
/** Metadata for a KeyNest device. */
|
|
50757
|
+
keynest_metadata?: {
|
|
50758
|
+
/** Key ID for a KeyNest device. */
|
|
50759
|
+
key_id: string;
|
|
50760
|
+
/** Device name for a KeyNest device. */
|
|
50761
|
+
device_name: string;
|
|
50762
|
+
/** Property ID for a KeyNest device. */
|
|
50763
|
+
property_id: string | null;
|
|
50764
|
+
/** Property postcode for a KeyNest device. */
|
|
50765
|
+
property_postcode: string | null;
|
|
50766
|
+
/** Key notes for a KeyNest device. */
|
|
50767
|
+
key_notes: string | null;
|
|
50768
|
+
/** Subscription plan for a KeyNest device. */
|
|
50769
|
+
subscription_plan: string;
|
|
50770
|
+
/** Status type for a KeyNest device. */
|
|
50771
|
+
status_type: string;
|
|
50772
|
+
/** Current or last store ID for a KeyNest device. */
|
|
50773
|
+
current_or_last_store_id: number;
|
|
50774
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
50775
|
+
last_movement: string;
|
|
50776
|
+
/** Address for a KeyNest device. */
|
|
50777
|
+
address: string | null;
|
|
50778
|
+
/** Current status for a KeyNest device. */
|
|
50779
|
+
current_status: string | null;
|
|
50780
|
+
/** Current user name for a KeyNest device. */
|
|
50781
|
+
current_user_name: string | null;
|
|
50782
|
+
/** Current user email for a KeyNest device. */
|
|
50783
|
+
current_user_email: string | null;
|
|
50784
|
+
/** Current user phone number for a KeyNest device. */
|
|
50785
|
+
current_user_phone_number: string | null;
|
|
50786
|
+
/** Current user company for a KeyNest device. */
|
|
50787
|
+
current_user_company: string | null;
|
|
50788
|
+
/** Handover method for a KeyNest device. */
|
|
50789
|
+
handover_method: string | null;
|
|
50790
|
+
/** KeyNest app user for a KeyNest device. */
|
|
50791
|
+
keynest_app_user: string | null;
|
|
50792
|
+
/** Default office ID for a KeyNest device. */
|
|
50793
|
+
default_office_id: number;
|
|
50794
|
+
/** Fob ID for a KeyNest device. */
|
|
50795
|
+
fob_id: number;
|
|
50796
|
+
/** Whether the KeyNest device has a photo. */
|
|
50797
|
+
has_photo: boolean;
|
|
50798
|
+
} | undefined;
|
|
50128
50799
|
}) & ({
|
|
50129
50800
|
/** */
|
|
50130
50801
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -50845,6 +51516,252 @@ export interface Routes {
|
|
|
50845
51516
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
50846
51517
|
can_unlock_with_code?: boolean | undefined;
|
|
50847
51518
|
}> | undefined;
|
|
51519
|
+
connected_accounts?: Array<{
|
|
51520
|
+
/** ID of the connected account. */
|
|
51521
|
+
connected_account_id?: string | undefined;
|
|
51522
|
+
/** Date and time at which the connected account was created. */
|
|
51523
|
+
created_at?: string | undefined;
|
|
51524
|
+
/** User identifier associated with the connected account. */
|
|
51525
|
+
user_identifier?: {
|
|
51526
|
+
/** Username of the user identifier associated with the connected account. */
|
|
51527
|
+
username?: string | undefined;
|
|
51528
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
51529
|
+
api_url?: string | undefined;
|
|
51530
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
51531
|
+
email?: string | undefined;
|
|
51532
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
51533
|
+
phone?: string | undefined;
|
|
51534
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
51535
|
+
exclusive?: boolean | undefined;
|
|
51536
|
+
} | undefined;
|
|
51537
|
+
/** Type of connected account. */
|
|
51538
|
+
account_type?: string | undefined;
|
|
51539
|
+
/** Display name for the connected account type. */
|
|
51540
|
+
account_type_display_name: string;
|
|
51541
|
+
/** Errors associated with the connected account. */
|
|
51542
|
+
errors: Array<{
|
|
51543
|
+
/** Date and time at which Seam created the error. */
|
|
51544
|
+
created_at: string;
|
|
51545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51546
|
+
message: string;
|
|
51547
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51548
|
+
is_connected_account_error?: boolean | undefined;
|
|
51549
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
51550
|
+
is_bridge_error?: boolean | undefined;
|
|
51551
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51552
|
+
error_code: 'account_disconnected';
|
|
51553
|
+
} | {
|
|
51554
|
+
/** Date and time at which Seam created the error. */
|
|
51555
|
+
created_at: string;
|
|
51556
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51557
|
+
message: string;
|
|
51558
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51559
|
+
is_connected_account_error?: boolean | undefined;
|
|
51560
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
51561
|
+
is_bridge_error?: boolean | undefined;
|
|
51562
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51563
|
+
error_code: 'invalid_credentials';
|
|
51564
|
+
} | {
|
|
51565
|
+
/** Date and time at which Seam created the error. */
|
|
51566
|
+
created_at: string;
|
|
51567
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51568
|
+
message: string;
|
|
51569
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51570
|
+
is_connected_account_error?: boolean | undefined;
|
|
51571
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
51572
|
+
is_bridge_error?: boolean | undefined;
|
|
51573
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51574
|
+
error_code: 'bridge_disconnected';
|
|
51575
|
+
} | {
|
|
51576
|
+
/** Date and time at which Seam created the error. */
|
|
51577
|
+
created_at: string;
|
|
51578
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51579
|
+
message: string;
|
|
51580
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51581
|
+
is_connected_account_error?: boolean | undefined;
|
|
51582
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
51583
|
+
is_bridge_error?: boolean | undefined;
|
|
51584
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51585
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
51586
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
51587
|
+
salto_ks_metadata: {
|
|
51588
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
51589
|
+
sites: Array<{
|
|
51590
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
51591
|
+
site_id: string;
|
|
51592
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
51593
|
+
site_name: string;
|
|
51594
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
51595
|
+
subscribed_site_user_count: number;
|
|
51596
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
51597
|
+
site_user_subscription_limit: number;
|
|
51598
|
+
}>;
|
|
51599
|
+
};
|
|
51600
|
+
}>;
|
|
51601
|
+
/** Warnings associated with the connected account. */
|
|
51602
|
+
warnings: Array<{
|
|
51603
|
+
/** Date and time at which Seam created the warning. */
|
|
51604
|
+
created_at: string;
|
|
51605
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51606
|
+
message: string;
|
|
51607
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51608
|
+
warning_code: 'scheduled_maintenance_window';
|
|
51609
|
+
} | {
|
|
51610
|
+
/** Date and time at which Seam created the warning. */
|
|
51611
|
+
created_at: string;
|
|
51612
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51613
|
+
message: string;
|
|
51614
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51615
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
51616
|
+
} | {
|
|
51617
|
+
/** Date and time at which Seam created the warning. */
|
|
51618
|
+
created_at: string;
|
|
51619
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51620
|
+
message: string;
|
|
51621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51622
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
51623
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
51624
|
+
salto_ks_metadata: {
|
|
51625
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
51626
|
+
sites: Array<{
|
|
51627
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
51628
|
+
site_id: string;
|
|
51629
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
51630
|
+
site_name: string;
|
|
51631
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
51632
|
+
site_user_subscription_limit: number;
|
|
51633
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
51634
|
+
subscribed_site_user_count: number;
|
|
51635
|
+
}>;
|
|
51636
|
+
};
|
|
51637
|
+
}>;
|
|
51638
|
+
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
51639
|
+
custom_metadata: Record<string, string | boolean>;
|
|
51640
|
+
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for management by the Seam API. */
|
|
51641
|
+
automatically_manage_new_devices: boolean;
|
|
51642
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
51643
|
+
customer_key?: string | undefined;
|
|
51644
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
51645
|
+
accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
|
|
51646
|
+
}> | undefined;
|
|
51647
|
+
acs_systems?: Array<{
|
|
51648
|
+
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51649
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
51650
|
+
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51651
|
+
acs_system_id: string;
|
|
51652
|
+
acs_user_count?: number | undefined;
|
|
51653
|
+
acs_access_group_count?: number | undefined;
|
|
51654
|
+
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
51655
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
51656
|
+
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
51657
|
+
external_type_display_name?: string | undefined;
|
|
51658
|
+
/** Indicates whether the `acs_system` is a credential manager. */
|
|
51659
|
+
is_credential_manager: boolean;
|
|
51660
|
+
visionline_metadata?: {
|
|
51661
|
+
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
51662
|
+
mobile_access_uuid: string;
|
|
51663
|
+
/** Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager. */
|
|
51664
|
+
system_id: string;
|
|
51665
|
+
/** IP address or hostname of the main Visionline server relative to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) on the local network. */
|
|
51666
|
+
lan_address: string;
|
|
51667
|
+
} | undefined;
|
|
51668
|
+
/**
|
|
51669
|
+
* @deprecated Use `external_type`. */
|
|
51670
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
51671
|
+
/**
|
|
51672
|
+
* @deprecated Use `external_type_display_name`. */
|
|
51673
|
+
system_type_display_name?: string | undefined;
|
|
51674
|
+
location: {
|
|
51675
|
+
/** Time zone in which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) is located. */
|
|
51676
|
+
time_zone: string | null;
|
|
51677
|
+
};
|
|
51678
|
+
/** Name of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51679
|
+
name: string;
|
|
51680
|
+
/** Date and time at which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) was created. */
|
|
51681
|
+
created_at: string;
|
|
51682
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51683
|
+
workspace_id: string;
|
|
51684
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
51685
|
+
* @deprecated Use `connected_account_id`. */
|
|
51686
|
+
connected_account_ids: string[];
|
|
51687
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51688
|
+
connected_account_id: string;
|
|
51689
|
+
/** URL for the image that represents the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51690
|
+
image_url: string;
|
|
51691
|
+
/** Alternative text for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) image. */
|
|
51692
|
+
image_alt_text: string;
|
|
51693
|
+
/** Errors associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51694
|
+
errors: Array<{
|
|
51695
|
+
/** Date and time at which Seam created the error. */
|
|
51696
|
+
created_at: string;
|
|
51697
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51698
|
+
message: string;
|
|
51699
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51700
|
+
error_code: 'seam_bridge_disconnected';
|
|
51701
|
+
} | {
|
|
51702
|
+
/** Date and time at which Seam created the error. */
|
|
51703
|
+
created_at: string;
|
|
51704
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51705
|
+
message: string;
|
|
51706
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51707
|
+
error_code: 'bridge_disconnected';
|
|
51708
|
+
is_bridge_error?: boolean | undefined;
|
|
51709
|
+
} | {
|
|
51710
|
+
/** Date and time at which Seam created the error. */
|
|
51711
|
+
created_at: string;
|
|
51712
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51713
|
+
message: string;
|
|
51714
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51715
|
+
error_code: 'visionline_instance_unreachable';
|
|
51716
|
+
} | {
|
|
51717
|
+
/** Date and time at which Seam created the error. */
|
|
51718
|
+
created_at: string;
|
|
51719
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51720
|
+
message: string;
|
|
51721
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51722
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
51723
|
+
} | {
|
|
51724
|
+
/** Date and time at which Seam created the error. */
|
|
51725
|
+
created_at: string;
|
|
51726
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51727
|
+
message: string;
|
|
51728
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51729
|
+
error_code: 'acs_system_disconnected';
|
|
51730
|
+
} | {
|
|
51731
|
+
/** Date and time at which Seam created the error. */
|
|
51732
|
+
created_at: string;
|
|
51733
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51734
|
+
message: string;
|
|
51735
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51736
|
+
error_code: 'account_disconnected';
|
|
51737
|
+
} | {
|
|
51738
|
+
/** Date and time at which Seam created the error. */
|
|
51739
|
+
created_at: string;
|
|
51740
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51741
|
+
message: string;
|
|
51742
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51743
|
+
error_code: 'salto_ks_certification_expired';
|
|
51744
|
+
}>;
|
|
51745
|
+
/** Warnings associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51746
|
+
warnings: Array<{
|
|
51747
|
+
/** Date and time at which Seam created the warning. */
|
|
51748
|
+
created_at: string;
|
|
51749
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51750
|
+
message: string;
|
|
51751
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51752
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
51753
|
+
} | {
|
|
51754
|
+
/** Date and time at which Seam created the warning. */
|
|
51755
|
+
created_at: string;
|
|
51756
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51757
|
+
message: string;
|
|
51758
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51759
|
+
warning_code: 'time_zone_does_not_match_location';
|
|
51760
|
+
/**
|
|
51761
|
+
* @deprecated this field is deprecated. */
|
|
51762
|
+
misconfigured_acs_entrance_ids?: string[] | undefined;
|
|
51763
|
+
}>;
|
|
51764
|
+
}> | undefined;
|
|
50848
51765
|
};
|
|
50849
51766
|
};
|
|
50850
51767
|
};
|
|
@@ -55413,6 +56330,49 @@ export interface Routes {
|
|
|
55413
56330
|
/** Product type for a Sensi device. */
|
|
55414
56331
|
product_type: string;
|
|
55415
56332
|
} | undefined;
|
|
56333
|
+
/** Metadata for a KeyNest device. */
|
|
56334
|
+
keynest_metadata?: {
|
|
56335
|
+
/** Key ID for a KeyNest device. */
|
|
56336
|
+
key_id: string;
|
|
56337
|
+
/** Device name for a KeyNest device. */
|
|
56338
|
+
device_name: string;
|
|
56339
|
+
/** Property ID for a KeyNest device. */
|
|
56340
|
+
property_id: string | null;
|
|
56341
|
+
/** Property postcode for a KeyNest device. */
|
|
56342
|
+
property_postcode: string | null;
|
|
56343
|
+
/** Key notes for a KeyNest device. */
|
|
56344
|
+
key_notes: string | null;
|
|
56345
|
+
/** Subscription plan for a KeyNest device. */
|
|
56346
|
+
subscription_plan: string;
|
|
56347
|
+
/** Status type for a KeyNest device. */
|
|
56348
|
+
status_type: string;
|
|
56349
|
+
/** Current or last store ID for a KeyNest device. */
|
|
56350
|
+
current_or_last_store_id: number;
|
|
56351
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
56352
|
+
last_movement: string;
|
|
56353
|
+
/** Address for a KeyNest device. */
|
|
56354
|
+
address: string | null;
|
|
56355
|
+
/** Current status for a KeyNest device. */
|
|
56356
|
+
current_status: string | null;
|
|
56357
|
+
/** Current user name for a KeyNest device. */
|
|
56358
|
+
current_user_name: string | null;
|
|
56359
|
+
/** Current user email for a KeyNest device. */
|
|
56360
|
+
current_user_email: string | null;
|
|
56361
|
+
/** Current user phone number for a KeyNest device. */
|
|
56362
|
+
current_user_phone_number: string | null;
|
|
56363
|
+
/** Current user company for a KeyNest device. */
|
|
56364
|
+
current_user_company: string | null;
|
|
56365
|
+
/** Handover method for a KeyNest device. */
|
|
56366
|
+
handover_method: string | null;
|
|
56367
|
+
/** KeyNest app user for a KeyNest device. */
|
|
56368
|
+
keynest_app_user: string | null;
|
|
56369
|
+
/** Default office ID for a KeyNest device. */
|
|
56370
|
+
default_office_id: number;
|
|
56371
|
+
/** Fob ID for a KeyNest device. */
|
|
56372
|
+
fob_id: number;
|
|
56373
|
+
/** Whether the KeyNest device has a photo. */
|
|
56374
|
+
has_photo: boolean;
|
|
56375
|
+
} | undefined;
|
|
55416
56376
|
}) & ({
|
|
55417
56377
|
/** */
|
|
55418
56378
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -59154,6 +60114,49 @@ export interface Routes {
|
|
|
59154
60114
|
/** Product type for a Sensi device. */
|
|
59155
60115
|
product_type: string;
|
|
59156
60116
|
} | undefined;
|
|
60117
|
+
/** Metadata for a KeyNest device. */
|
|
60118
|
+
keynest_metadata?: {
|
|
60119
|
+
/** Key ID for a KeyNest device. */
|
|
60120
|
+
key_id: string;
|
|
60121
|
+
/** Device name for a KeyNest device. */
|
|
60122
|
+
device_name: string;
|
|
60123
|
+
/** Property ID for a KeyNest device. */
|
|
60124
|
+
property_id: string | null;
|
|
60125
|
+
/** Property postcode for a KeyNest device. */
|
|
60126
|
+
property_postcode: string | null;
|
|
60127
|
+
/** Key notes for a KeyNest device. */
|
|
60128
|
+
key_notes: string | null;
|
|
60129
|
+
/** Subscription plan for a KeyNest device. */
|
|
60130
|
+
subscription_plan: string;
|
|
60131
|
+
/** Status type for a KeyNest device. */
|
|
60132
|
+
status_type: string;
|
|
60133
|
+
/** Current or last store ID for a KeyNest device. */
|
|
60134
|
+
current_or_last_store_id: number;
|
|
60135
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
60136
|
+
last_movement: string;
|
|
60137
|
+
/** Address for a KeyNest device. */
|
|
60138
|
+
address: string | null;
|
|
60139
|
+
/** Current status for a KeyNest device. */
|
|
60140
|
+
current_status: string | null;
|
|
60141
|
+
/** Current user name for a KeyNest device. */
|
|
60142
|
+
current_user_name: string | null;
|
|
60143
|
+
/** Current user email for a KeyNest device. */
|
|
60144
|
+
current_user_email: string | null;
|
|
60145
|
+
/** Current user phone number for a KeyNest device. */
|
|
60146
|
+
current_user_phone_number: string | null;
|
|
60147
|
+
/** Current user company for a KeyNest device. */
|
|
60148
|
+
current_user_company: string | null;
|
|
60149
|
+
/** Handover method for a KeyNest device. */
|
|
60150
|
+
handover_method: string | null;
|
|
60151
|
+
/** KeyNest app user for a KeyNest device. */
|
|
60152
|
+
keynest_app_user: string | null;
|
|
60153
|
+
/** Default office ID for a KeyNest device. */
|
|
60154
|
+
default_office_id: number;
|
|
60155
|
+
/** Fob ID for a KeyNest device. */
|
|
60156
|
+
fob_id: number;
|
|
60157
|
+
/** Whether the KeyNest device has a photo. */
|
|
60158
|
+
has_photo: boolean;
|
|
60159
|
+
} | undefined;
|
|
59157
60160
|
}) & ({
|
|
59158
60161
|
/** */
|
|
59159
60162
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -60314,6 +61317,49 @@ export interface Routes {
|
|
|
60314
61317
|
/** Product type for a Sensi device. */
|
|
60315
61318
|
product_type: string;
|
|
60316
61319
|
} | undefined;
|
|
61320
|
+
/** Metadata for a KeyNest device. */
|
|
61321
|
+
keynest_metadata?: {
|
|
61322
|
+
/** Key ID for a KeyNest device. */
|
|
61323
|
+
key_id: string;
|
|
61324
|
+
/** Device name for a KeyNest device. */
|
|
61325
|
+
device_name: string;
|
|
61326
|
+
/** Property ID for a KeyNest device. */
|
|
61327
|
+
property_id: string | null;
|
|
61328
|
+
/** Property postcode for a KeyNest device. */
|
|
61329
|
+
property_postcode: string | null;
|
|
61330
|
+
/** Key notes for a KeyNest device. */
|
|
61331
|
+
key_notes: string | null;
|
|
61332
|
+
/** Subscription plan for a KeyNest device. */
|
|
61333
|
+
subscription_plan: string;
|
|
61334
|
+
/** Status type for a KeyNest device. */
|
|
61335
|
+
status_type: string;
|
|
61336
|
+
/** Current or last store ID for a KeyNest device. */
|
|
61337
|
+
current_or_last_store_id: number;
|
|
61338
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
61339
|
+
last_movement: string;
|
|
61340
|
+
/** Address for a KeyNest device. */
|
|
61341
|
+
address: string | null;
|
|
61342
|
+
/** Current status for a KeyNest device. */
|
|
61343
|
+
current_status: string | null;
|
|
61344
|
+
/** Current user name for a KeyNest device. */
|
|
61345
|
+
current_user_name: string | null;
|
|
61346
|
+
/** Current user email for a KeyNest device. */
|
|
61347
|
+
current_user_email: string | null;
|
|
61348
|
+
/** Current user phone number for a KeyNest device. */
|
|
61349
|
+
current_user_phone_number: string | null;
|
|
61350
|
+
/** Current user company for a KeyNest device. */
|
|
61351
|
+
current_user_company: string | null;
|
|
61352
|
+
/** Handover method for a KeyNest device. */
|
|
61353
|
+
handover_method: string | null;
|
|
61354
|
+
/** KeyNest app user for a KeyNest device. */
|
|
61355
|
+
keynest_app_user: string | null;
|
|
61356
|
+
/** Default office ID for a KeyNest device. */
|
|
61357
|
+
default_office_id: number;
|
|
61358
|
+
/** Fob ID for a KeyNest device. */
|
|
61359
|
+
fob_id: number;
|
|
61360
|
+
/** Whether the KeyNest device has a photo. */
|
|
61361
|
+
has_photo: boolean;
|
|
61362
|
+
} | undefined;
|
|
60317
61363
|
}) & ({
|
|
60318
61364
|
/** */
|
|
60319
61365
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -67934,6 +68980,49 @@ export interface Routes {
|
|
|
67934
68980
|
/** Product type for a Sensi device. */
|
|
67935
68981
|
product_type: string;
|
|
67936
68982
|
} | undefined;
|
|
68983
|
+
/** Metadata for a KeyNest device. */
|
|
68984
|
+
keynest_metadata?: {
|
|
68985
|
+
/** Key ID for a KeyNest device. */
|
|
68986
|
+
key_id: string;
|
|
68987
|
+
/** Device name for a KeyNest device. */
|
|
68988
|
+
device_name: string;
|
|
68989
|
+
/** Property ID for a KeyNest device. */
|
|
68990
|
+
property_id: string | null;
|
|
68991
|
+
/** Property postcode for a KeyNest device. */
|
|
68992
|
+
property_postcode: string | null;
|
|
68993
|
+
/** Key notes for a KeyNest device. */
|
|
68994
|
+
key_notes: string | null;
|
|
68995
|
+
/** Subscription plan for a KeyNest device. */
|
|
68996
|
+
subscription_plan: string;
|
|
68997
|
+
/** Status type for a KeyNest device. */
|
|
68998
|
+
status_type: string;
|
|
68999
|
+
/** Current or last store ID for a KeyNest device. */
|
|
69000
|
+
current_or_last_store_id: number;
|
|
69001
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
69002
|
+
last_movement: string;
|
|
69003
|
+
/** Address for a KeyNest device. */
|
|
69004
|
+
address: string | null;
|
|
69005
|
+
/** Current status for a KeyNest device. */
|
|
69006
|
+
current_status: string | null;
|
|
69007
|
+
/** Current user name for a KeyNest device. */
|
|
69008
|
+
current_user_name: string | null;
|
|
69009
|
+
/** Current user email for a KeyNest device. */
|
|
69010
|
+
current_user_email: string | null;
|
|
69011
|
+
/** Current user phone number for a KeyNest device. */
|
|
69012
|
+
current_user_phone_number: string | null;
|
|
69013
|
+
/** Current user company for a KeyNest device. */
|
|
69014
|
+
current_user_company: string | null;
|
|
69015
|
+
/** Handover method for a KeyNest device. */
|
|
69016
|
+
handover_method: string | null;
|
|
69017
|
+
/** KeyNest app user for a KeyNest device. */
|
|
69018
|
+
keynest_app_user: string | null;
|
|
69019
|
+
/** Default office ID for a KeyNest device. */
|
|
69020
|
+
default_office_id: number;
|
|
69021
|
+
/** Fob ID for a KeyNest device. */
|
|
69022
|
+
fob_id: number;
|
|
69023
|
+
/** Whether the KeyNest device has a photo. */
|
|
69024
|
+
has_photo: boolean;
|
|
69025
|
+
} | undefined;
|
|
67937
69026
|
}) & ({
|
|
67938
69027
|
/** */
|
|
67939
69028
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -69096,6 +70185,49 @@ export interface Routes {
|
|
|
69096
70185
|
/** Product type for a Sensi device. */
|
|
69097
70186
|
product_type: string;
|
|
69098
70187
|
} | undefined;
|
|
70188
|
+
/** Metadata for a KeyNest device. */
|
|
70189
|
+
keynest_metadata?: {
|
|
70190
|
+
/** Key ID for a KeyNest device. */
|
|
70191
|
+
key_id: string;
|
|
70192
|
+
/** Device name for a KeyNest device. */
|
|
70193
|
+
device_name: string;
|
|
70194
|
+
/** Property ID for a KeyNest device. */
|
|
70195
|
+
property_id: string | null;
|
|
70196
|
+
/** Property postcode for a KeyNest device. */
|
|
70197
|
+
property_postcode: string | null;
|
|
70198
|
+
/** Key notes for a KeyNest device. */
|
|
70199
|
+
key_notes: string | null;
|
|
70200
|
+
/** Subscription plan for a KeyNest device. */
|
|
70201
|
+
subscription_plan: string;
|
|
70202
|
+
/** Status type for a KeyNest device. */
|
|
70203
|
+
status_type: string;
|
|
70204
|
+
/** Current or last store ID for a KeyNest device. */
|
|
70205
|
+
current_or_last_store_id: number;
|
|
70206
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
70207
|
+
last_movement: string;
|
|
70208
|
+
/** Address for a KeyNest device. */
|
|
70209
|
+
address: string | null;
|
|
70210
|
+
/** Current status for a KeyNest device. */
|
|
70211
|
+
current_status: string | null;
|
|
70212
|
+
/** Current user name for a KeyNest device. */
|
|
70213
|
+
current_user_name: string | null;
|
|
70214
|
+
/** Current user email for a KeyNest device. */
|
|
70215
|
+
current_user_email: string | null;
|
|
70216
|
+
/** Current user phone number for a KeyNest device. */
|
|
70217
|
+
current_user_phone_number: string | null;
|
|
70218
|
+
/** Current user company for a KeyNest device. */
|
|
70219
|
+
current_user_company: string | null;
|
|
70220
|
+
/** Handover method for a KeyNest device. */
|
|
70221
|
+
handover_method: string | null;
|
|
70222
|
+
/** KeyNest app user for a KeyNest device. */
|
|
70223
|
+
keynest_app_user: string | null;
|
|
70224
|
+
/** Default office ID for a KeyNest device. */
|
|
70225
|
+
default_office_id: number;
|
|
70226
|
+
/** Fob ID for a KeyNest device. */
|
|
70227
|
+
fob_id: number;
|
|
70228
|
+
/** Whether the KeyNest device has a photo. */
|
|
70229
|
+
has_photo: boolean;
|
|
70230
|
+
} | undefined;
|
|
69099
70231
|
}) & ({
|
|
69100
70232
|
/** */
|
|
69101
70233
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -70929,6 +72061,49 @@ export interface Routes {
|
|
|
70929
72061
|
/** Product type for a Sensi device. */
|
|
70930
72062
|
product_type: string;
|
|
70931
72063
|
} | undefined;
|
|
72064
|
+
/** Metadata for a KeyNest device. */
|
|
72065
|
+
keynest_metadata?: {
|
|
72066
|
+
/** Key ID for a KeyNest device. */
|
|
72067
|
+
key_id: string;
|
|
72068
|
+
/** Device name for a KeyNest device. */
|
|
72069
|
+
device_name: string;
|
|
72070
|
+
/** Property ID for a KeyNest device. */
|
|
72071
|
+
property_id: string | null;
|
|
72072
|
+
/** Property postcode for a KeyNest device. */
|
|
72073
|
+
property_postcode: string | null;
|
|
72074
|
+
/** Key notes for a KeyNest device. */
|
|
72075
|
+
key_notes: string | null;
|
|
72076
|
+
/** Subscription plan for a KeyNest device. */
|
|
72077
|
+
subscription_plan: string;
|
|
72078
|
+
/** Status type for a KeyNest device. */
|
|
72079
|
+
status_type: string;
|
|
72080
|
+
/** Current or last store ID for a KeyNest device. */
|
|
72081
|
+
current_or_last_store_id: number;
|
|
72082
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
72083
|
+
last_movement: string;
|
|
72084
|
+
/** Address for a KeyNest device. */
|
|
72085
|
+
address: string | null;
|
|
72086
|
+
/** Current status for a KeyNest device. */
|
|
72087
|
+
current_status: string | null;
|
|
72088
|
+
/** Current user name for a KeyNest device. */
|
|
72089
|
+
current_user_name: string | null;
|
|
72090
|
+
/** Current user email for a KeyNest device. */
|
|
72091
|
+
current_user_email: string | null;
|
|
72092
|
+
/** Current user phone number for a KeyNest device. */
|
|
72093
|
+
current_user_phone_number: string | null;
|
|
72094
|
+
/** Current user company for a KeyNest device. */
|
|
72095
|
+
current_user_company: string | null;
|
|
72096
|
+
/** Handover method for a KeyNest device. */
|
|
72097
|
+
handover_method: string | null;
|
|
72098
|
+
/** KeyNest app user for a KeyNest device. */
|
|
72099
|
+
keynest_app_user: string | null;
|
|
72100
|
+
/** Default office ID for a KeyNest device. */
|
|
72101
|
+
default_office_id: number;
|
|
72102
|
+
/** Fob ID for a KeyNest device. */
|
|
72103
|
+
fob_id: number;
|
|
72104
|
+
/** Whether the KeyNest device has a photo. */
|
|
72105
|
+
has_photo: boolean;
|
|
72106
|
+
} | undefined;
|
|
70932
72107
|
}) & ({
|
|
70933
72108
|
/** */
|
|
70934
72109
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|