@seamapi/types 1.892.0 → 1.893.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +185 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +657 -0
- package/dist/index.cjs +185 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +162 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +20 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +50 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +8 -8
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -3
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +166 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +449 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +26 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -3
- package/src/lib/seam/connect/openapi.ts +200 -0
- package/src/lib/seam/connect/route-types.ts +492 -0
|
@@ -2099,6 +2099,17 @@ export type Routes = {
|
|
|
2099
2099
|
is_bridge_error?: boolean | undefined;
|
|
2100
2100
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2101
2101
|
error_code: 'bridge_disconnected';
|
|
2102
|
+
} | {
|
|
2103
|
+
/** Date and time at which Seam created the error. */
|
|
2104
|
+
created_at: string;
|
|
2105
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2106
|
+
message: string;
|
|
2107
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2108
|
+
is_connected_account_error?: boolean | undefined;
|
|
2109
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2110
|
+
is_bridge_error?: boolean | undefined;
|
|
2111
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2112
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
2102
2113
|
})[];
|
|
2103
2114
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2104
2115
|
warnings: ({
|
|
@@ -2778,6 +2789,17 @@ export type Routes = {
|
|
|
2778
2789
|
is_bridge_error?: boolean | undefined;
|
|
2779
2790
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2780
2791
|
error_code: 'bridge_disconnected';
|
|
2792
|
+
} | {
|
|
2793
|
+
/** Date and time at which Seam created the error. */
|
|
2794
|
+
created_at: string;
|
|
2795
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2796
|
+
message: string;
|
|
2797
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2798
|
+
is_connected_account_error?: boolean | undefined;
|
|
2799
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2800
|
+
is_bridge_error?: boolean | undefined;
|
|
2801
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2802
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
2781
2803
|
})[];
|
|
2782
2804
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2783
2805
|
warnings: ({
|
|
@@ -5136,6 +5158,17 @@ export type Routes = {
|
|
|
5136
5158
|
is_bridge_error?: boolean | undefined;
|
|
5137
5159
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5138
5160
|
error_code: 'bridge_disconnected';
|
|
5161
|
+
} | {
|
|
5162
|
+
/** Date and time at which Seam created the error. */
|
|
5163
|
+
created_at: string;
|
|
5164
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5165
|
+
message: string;
|
|
5166
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5167
|
+
is_connected_account_error?: boolean | undefined;
|
|
5168
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5169
|
+
is_bridge_error?: boolean | undefined;
|
|
5170
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5171
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
5139
5172
|
})[];
|
|
5140
5173
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5141
5174
|
warnings: ({
|
|
@@ -5861,6 +5894,17 @@ export type Routes = {
|
|
|
5861
5894
|
is_bridge_error?: boolean | undefined;
|
|
5862
5895
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5863
5896
|
error_code: 'bridge_disconnected';
|
|
5897
|
+
} | {
|
|
5898
|
+
/** Date and time at which Seam created the error. */
|
|
5899
|
+
created_at: string;
|
|
5900
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5901
|
+
message: string;
|
|
5902
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5903
|
+
is_connected_account_error?: boolean | undefined;
|
|
5904
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5905
|
+
is_bridge_error?: boolean | undefined;
|
|
5906
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5907
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
5864
5908
|
})[];
|
|
5865
5909
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5866
5910
|
warnings: ({
|
|
@@ -6531,6 +6575,17 @@ export type Routes = {
|
|
|
6531
6575
|
is_bridge_error?: boolean | undefined;
|
|
6532
6576
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6533
6577
|
error_code: 'bridge_disconnected';
|
|
6578
|
+
} | {
|
|
6579
|
+
/** Date and time at which Seam created the error. */
|
|
6580
|
+
created_at: string;
|
|
6581
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6582
|
+
message: string;
|
|
6583
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
6584
|
+
is_connected_account_error?: boolean | undefined;
|
|
6585
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
6586
|
+
is_bridge_error?: boolean | undefined;
|
|
6587
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6588
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
6534
6589
|
})[];
|
|
6535
6590
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
6536
6591
|
warnings: ({
|
|
@@ -7178,6 +7233,17 @@ export type Routes = {
|
|
|
7178
7233
|
is_bridge_error?: boolean | undefined;
|
|
7179
7234
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7180
7235
|
error_code: 'bridge_disconnected';
|
|
7236
|
+
} | {
|
|
7237
|
+
/** Date and time at which Seam created the error. */
|
|
7238
|
+
created_at: string;
|
|
7239
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7240
|
+
message: string;
|
|
7241
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7242
|
+
is_connected_account_error?: boolean | undefined;
|
|
7243
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7244
|
+
is_bridge_error?: boolean | undefined;
|
|
7245
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7246
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
7181
7247
|
})[];
|
|
7182
7248
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7183
7249
|
warnings: ({
|
|
@@ -7858,6 +7924,17 @@ export type Routes = {
|
|
|
7858
7924
|
is_bridge_error?: boolean | undefined;
|
|
7859
7925
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7860
7926
|
error_code: 'bridge_disconnected';
|
|
7927
|
+
} | {
|
|
7928
|
+
/** Date and time at which Seam created the error. */
|
|
7929
|
+
created_at: string;
|
|
7930
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7931
|
+
message: string;
|
|
7932
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7933
|
+
is_connected_account_error?: boolean | undefined;
|
|
7934
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7935
|
+
is_bridge_error?: boolean | undefined;
|
|
7936
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7937
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
7861
7938
|
})[];
|
|
7862
7939
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7863
7940
|
warnings: ({
|
|
@@ -10125,6 +10202,17 @@ export type Routes = {
|
|
|
10125
10202
|
is_bridge_error?: boolean | undefined;
|
|
10126
10203
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10127
10204
|
error_code: 'bridge_disconnected';
|
|
10205
|
+
} | {
|
|
10206
|
+
/** Date and time at which Seam created the error. */
|
|
10207
|
+
created_at: string;
|
|
10208
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10209
|
+
message: string;
|
|
10210
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
10211
|
+
is_connected_account_error?: boolean | undefined;
|
|
10212
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
10213
|
+
is_bridge_error?: boolean | undefined;
|
|
10214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10215
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
10128
10216
|
})[];
|
|
10129
10217
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
10130
10218
|
warnings: ({
|
|
@@ -10691,6 +10779,17 @@ export type Routes = {
|
|
|
10691
10779
|
is_bridge_error?: boolean | undefined;
|
|
10692
10780
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10693
10781
|
error_code: 'bridge_disconnected';
|
|
10782
|
+
} | {
|
|
10783
|
+
/** Date and time at which Seam created the error. */
|
|
10784
|
+
created_at: string;
|
|
10785
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10786
|
+
message: string;
|
|
10787
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
10788
|
+
is_connected_account_error?: boolean | undefined;
|
|
10789
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
10790
|
+
is_bridge_error?: boolean | undefined;
|
|
10791
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10792
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
10694
10793
|
})[];
|
|
10695
10794
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
10696
10795
|
warnings: ({
|
|
@@ -14257,6 +14356,17 @@ export type Routes = {
|
|
|
14257
14356
|
is_bridge_error?: boolean | undefined;
|
|
14258
14357
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14259
14358
|
error_code: 'bridge_disconnected';
|
|
14359
|
+
} | {
|
|
14360
|
+
/** Date and time at which Seam created the error. */
|
|
14361
|
+
created_at: string;
|
|
14362
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14363
|
+
message: string;
|
|
14364
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
14365
|
+
is_connected_account_error?: boolean | undefined;
|
|
14366
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
14367
|
+
is_bridge_error?: boolean | undefined;
|
|
14368
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14369
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
14260
14370
|
})[];
|
|
14261
14371
|
/** Array of warnings associated with the device. 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. */
|
|
14262
14372
|
warnings: ({
|
|
@@ -14750,6 +14860,17 @@ export type Routes = {
|
|
|
14750
14860
|
site_user_subscription_limit: number;
|
|
14751
14861
|
}[];
|
|
14752
14862
|
};
|
|
14863
|
+
} | {
|
|
14864
|
+
/** Date and time at which Seam created the error. */
|
|
14865
|
+
created_at: string;
|
|
14866
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14867
|
+
message: string;
|
|
14868
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
14869
|
+
is_connected_account_error?: boolean | undefined;
|
|
14870
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
14871
|
+
is_bridge_error?: boolean | undefined;
|
|
14872
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14873
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
14753
14874
|
})[];
|
|
14754
14875
|
/** Warnings associated with the connected account. */
|
|
14755
14876
|
warnings: ({
|
|
@@ -14815,6 +14936,13 @@ export type Routes = {
|
|
|
14815
14936
|
message: string;
|
|
14816
14937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14817
14938
|
warning_code: 'setup_required';
|
|
14939
|
+
} | {
|
|
14940
|
+
/** Date and time at which Seam created the warning. */
|
|
14941
|
+
created_at: string;
|
|
14942
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14943
|
+
message: string;
|
|
14944
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14945
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
14818
14946
|
})[];
|
|
14819
14947
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
14820
14948
|
custom_metadata: {
|
|
@@ -20818,6 +20946,17 @@ export type Routes = {
|
|
|
20818
20946
|
is_bridge_error?: boolean | undefined;
|
|
20819
20947
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20820
20948
|
error_code: 'bridge_disconnected';
|
|
20949
|
+
} | {
|
|
20950
|
+
/** Date and time at which Seam created the error. */
|
|
20951
|
+
created_at: string;
|
|
20952
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20953
|
+
message: string;
|
|
20954
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
20955
|
+
is_connected_account_error?: boolean | undefined;
|
|
20956
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
20957
|
+
is_bridge_error?: boolean | undefined;
|
|
20958
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20959
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
20821
20960
|
})[];
|
|
20822
20961
|
/** Array of warnings associated with the device. 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. */
|
|
20823
20962
|
warnings: ({
|
|
@@ -40505,6 +40644,17 @@ export type Routes = {
|
|
|
40505
40644
|
site_user_subscription_limit: number;
|
|
40506
40645
|
}[];
|
|
40507
40646
|
};
|
|
40647
|
+
} | {
|
|
40648
|
+
/** Date and time at which Seam created the error. */
|
|
40649
|
+
created_at: string;
|
|
40650
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40651
|
+
message: string;
|
|
40652
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40653
|
+
is_connected_account_error?: boolean | undefined;
|
|
40654
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
40655
|
+
is_bridge_error?: boolean | undefined;
|
|
40656
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40657
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
40508
40658
|
})[];
|
|
40509
40659
|
/** Warnings associated with the connected account. */
|
|
40510
40660
|
warnings: ({
|
|
@@ -40570,6 +40720,13 @@ export type Routes = {
|
|
|
40570
40720
|
message: string;
|
|
40571
40721
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40572
40722
|
warning_code: 'setup_required';
|
|
40723
|
+
} | {
|
|
40724
|
+
/** Date and time at which Seam created the warning. */
|
|
40725
|
+
created_at: string;
|
|
40726
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40727
|
+
message: string;
|
|
40728
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40729
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
40573
40730
|
})[];
|
|
40574
40731
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
40575
40732
|
custom_metadata: {
|
|
@@ -40695,6 +40852,17 @@ export type Routes = {
|
|
|
40695
40852
|
site_user_subscription_limit: number;
|
|
40696
40853
|
}[];
|
|
40697
40854
|
};
|
|
40855
|
+
} | {
|
|
40856
|
+
/** Date and time at which Seam created the error. */
|
|
40857
|
+
created_at: string;
|
|
40858
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40859
|
+
message: string;
|
|
40860
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40861
|
+
is_connected_account_error?: boolean | undefined;
|
|
40862
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
40863
|
+
is_bridge_error?: boolean | undefined;
|
|
40864
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40865
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
40698
40866
|
})[];
|
|
40699
40867
|
/** Warnings associated with the connected account. */
|
|
40700
40868
|
warnings: ({
|
|
@@ -40760,6 +40928,13 @@ export type Routes = {
|
|
|
40760
40928
|
message: string;
|
|
40761
40929
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40762
40930
|
warning_code: 'setup_required';
|
|
40931
|
+
} | {
|
|
40932
|
+
/** Date and time at which Seam created the warning. */
|
|
40933
|
+
created_at: string;
|
|
40934
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40935
|
+
message: string;
|
|
40936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40937
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
40763
40938
|
})[];
|
|
40764
40939
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
40765
40940
|
custom_metadata: {
|
|
@@ -40919,6 +41094,17 @@ export type Routes = {
|
|
|
40919
41094
|
site_user_subscription_limit: number;
|
|
40920
41095
|
}[];
|
|
40921
41096
|
};
|
|
41097
|
+
} | {
|
|
41098
|
+
/** Date and time at which Seam created the error. */
|
|
41099
|
+
created_at: string;
|
|
41100
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41101
|
+
message: string;
|
|
41102
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
41103
|
+
is_connected_account_error?: boolean | undefined;
|
|
41104
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
41105
|
+
is_bridge_error?: boolean | undefined;
|
|
41106
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41107
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
40922
41108
|
})[];
|
|
40923
41109
|
/** Warnings associated with the connected account. */
|
|
40924
41110
|
warnings: ({
|
|
@@ -40984,6 +41170,13 @@ export type Routes = {
|
|
|
40984
41170
|
message: string;
|
|
40985
41171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40986
41172
|
warning_code: 'setup_required';
|
|
41173
|
+
} | {
|
|
41174
|
+
/** Date and time at which Seam created the warning. */
|
|
41175
|
+
created_at: string;
|
|
41176
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41177
|
+
message: string;
|
|
41178
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41179
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
40987
41180
|
})[];
|
|
40988
41181
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
40989
41182
|
custom_metadata: {
|
|
@@ -42986,6 +43179,17 @@ export type Routes = {
|
|
|
42986
43179
|
is_bridge_error?: boolean | undefined;
|
|
42987
43180
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42988
43181
|
error_code: 'bridge_disconnected';
|
|
43182
|
+
} | {
|
|
43183
|
+
/** Date and time at which Seam created the error. */
|
|
43184
|
+
created_at: string;
|
|
43185
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43186
|
+
message: string;
|
|
43187
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
43188
|
+
is_connected_account_error?: boolean | undefined;
|
|
43189
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
43190
|
+
is_bridge_error?: boolean | undefined;
|
|
43191
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43192
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
42989
43193
|
})[];
|
|
42990
43194
|
/** Array of warnings associated with the device. 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. */
|
|
42991
43195
|
warnings: ({
|
|
@@ -44397,6 +44601,17 @@ export type Routes = {
|
|
|
44397
44601
|
is_bridge_error?: boolean | undefined;
|
|
44398
44602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44399
44603
|
error_code: 'bridge_disconnected';
|
|
44604
|
+
} | {
|
|
44605
|
+
/** Date and time at which Seam created the error. */
|
|
44606
|
+
created_at: string;
|
|
44607
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44608
|
+
message: string;
|
|
44609
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
44610
|
+
is_connected_account_error?: boolean | undefined;
|
|
44611
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
44612
|
+
is_bridge_error?: boolean | undefined;
|
|
44613
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44614
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
44400
44615
|
})[];
|
|
44401
44616
|
/** Array of warnings associated with the device. 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. */
|
|
44402
44617
|
warnings: ({
|
|
@@ -44977,6 +45192,17 @@ export type Routes = {
|
|
|
44977
45192
|
is_bridge_error?: boolean | undefined;
|
|
44978
45193
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44979
45194
|
error_code: 'bridge_disconnected';
|
|
45195
|
+
} | {
|
|
45196
|
+
/** Date and time at which Seam created the error. */
|
|
45197
|
+
created_at: string;
|
|
45198
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45199
|
+
message: string;
|
|
45200
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
45201
|
+
is_connected_account_error?: boolean | undefined;
|
|
45202
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
45203
|
+
is_bridge_error?: boolean | undefined;
|
|
45204
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45205
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
44980
45206
|
})[];
|
|
44981
45207
|
/** Array of warnings associated with the device. 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. */
|
|
44982
45208
|
warnings: ({
|
|
@@ -45482,6 +45708,17 @@ export type Routes = {
|
|
|
45482
45708
|
is_bridge_error?: boolean | undefined;
|
|
45483
45709
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45484
45710
|
error_code: 'bridge_disconnected';
|
|
45711
|
+
} | {
|
|
45712
|
+
/** Date and time at which Seam created the error. */
|
|
45713
|
+
created_at: string;
|
|
45714
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45715
|
+
message: string;
|
|
45716
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
45717
|
+
is_connected_account_error?: boolean | undefined;
|
|
45718
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
45719
|
+
is_bridge_error?: boolean | undefined;
|
|
45720
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45721
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
45485
45722
|
})[];
|
|
45486
45723
|
/** Array of warnings associated with the device. 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. */
|
|
45487
45724
|
warnings: ({
|
|
@@ -54380,6 +54617,17 @@ export type Routes = {
|
|
|
54380
54617
|
is_bridge_error?: boolean | undefined;
|
|
54381
54618
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54382
54619
|
error_code: 'bridge_disconnected';
|
|
54620
|
+
} | {
|
|
54621
|
+
/** Date and time at which Seam created the error. */
|
|
54622
|
+
created_at: string;
|
|
54623
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54624
|
+
message: string;
|
|
54625
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54626
|
+
is_connected_account_error?: boolean | undefined;
|
|
54627
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54628
|
+
is_bridge_error?: boolean | undefined;
|
|
54629
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54630
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
54383
54631
|
})[];
|
|
54384
54632
|
/** Array of warnings associated with the device. 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. */
|
|
54385
54633
|
warnings: ({
|
|
@@ -55741,6 +55989,17 @@ export type Routes = {
|
|
|
55741
55989
|
is_bridge_error?: boolean | undefined;
|
|
55742
55990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55743
55991
|
error_code: 'bridge_disconnected';
|
|
55992
|
+
} | {
|
|
55993
|
+
/** Date and time at which Seam created the error. */
|
|
55994
|
+
created_at: string;
|
|
55995
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55996
|
+
message: string;
|
|
55997
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
55998
|
+
is_connected_account_error?: boolean | undefined;
|
|
55999
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
56000
|
+
is_bridge_error?: boolean | undefined;
|
|
56001
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
56002
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
55744
56003
|
})[];
|
|
55745
56004
|
/** Array of warnings associated with the device. 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. */
|
|
55746
56005
|
warnings: ({
|
|
@@ -57152,6 +57411,17 @@ export type Routes = {
|
|
|
57152
57411
|
is_bridge_error?: boolean | undefined;
|
|
57153
57412
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
57154
57413
|
error_code: 'bridge_disconnected';
|
|
57414
|
+
} | {
|
|
57415
|
+
/** Date and time at which Seam created the error. */
|
|
57416
|
+
created_at: string;
|
|
57417
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57418
|
+
message: string;
|
|
57419
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
57420
|
+
is_connected_account_error?: boolean | undefined;
|
|
57421
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
57422
|
+
is_bridge_error?: boolean | undefined;
|
|
57423
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
57424
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
57155
57425
|
})[];
|
|
57156
57426
|
/** Array of warnings associated with the device. 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. */
|
|
57157
57427
|
warnings: ({
|
|
@@ -58512,6 +58782,17 @@ export type Routes = {
|
|
|
58512
58782
|
is_bridge_error?: boolean | undefined;
|
|
58513
58783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58514
58784
|
error_code: 'bridge_disconnected';
|
|
58785
|
+
} | {
|
|
58786
|
+
/** Date and time at which Seam created the error. */
|
|
58787
|
+
created_at: string;
|
|
58788
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58789
|
+
message: string;
|
|
58790
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
58791
|
+
is_connected_account_error?: boolean | undefined;
|
|
58792
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
58793
|
+
is_bridge_error?: boolean | undefined;
|
|
58794
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58795
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
58515
58796
|
})[];
|
|
58516
58797
|
/** Array of warnings associated with the device. 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. */
|
|
58517
58798
|
warnings: ({
|
|
@@ -66613,6 +66894,17 @@ export type Routes = {
|
|
|
66613
66894
|
is_bridge_error?: boolean | undefined;
|
|
66614
66895
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66615
66896
|
error_code: 'bridge_disconnected';
|
|
66897
|
+
} | {
|
|
66898
|
+
/** Date and time at which Seam created the error. */
|
|
66899
|
+
created_at: string;
|
|
66900
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66901
|
+
message: string;
|
|
66902
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
66903
|
+
is_connected_account_error?: boolean | undefined;
|
|
66904
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
66905
|
+
is_bridge_error?: boolean | undefined;
|
|
66906
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66907
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
66616
66908
|
})[];
|
|
66617
66909
|
/** Array of warnings associated with the device. 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. */
|
|
66618
66910
|
warnings: ({
|
|
@@ -67973,6 +68265,17 @@ export type Routes = {
|
|
|
67973
68265
|
is_bridge_error?: boolean | undefined;
|
|
67974
68266
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67975
68267
|
error_code: 'bridge_disconnected';
|
|
68268
|
+
} | {
|
|
68269
|
+
/** Date and time at which Seam created the error. */
|
|
68270
|
+
created_at: string;
|
|
68271
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68272
|
+
message: string;
|
|
68273
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
68274
|
+
is_connected_account_error?: boolean | undefined;
|
|
68275
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
68276
|
+
is_bridge_error?: boolean | undefined;
|
|
68277
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68278
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
67976
68279
|
})[];
|
|
67977
68280
|
/** Array of warnings associated with the device. 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. */
|
|
67978
68281
|
warnings: ({
|
|
@@ -82891,6 +83194,17 @@ export type Routes = {
|
|
|
82891
83194
|
is_bridge_error?: boolean | undefined;
|
|
82892
83195
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82893
83196
|
error_code: 'bridge_disconnected';
|
|
83197
|
+
} | {
|
|
83198
|
+
/** Date and time at which Seam created the error. */
|
|
83199
|
+
created_at: string;
|
|
83200
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83201
|
+
message: string;
|
|
83202
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
83203
|
+
is_connected_account_error?: boolean | undefined;
|
|
83204
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
83205
|
+
is_bridge_error?: boolean | undefined;
|
|
83206
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83207
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
82894
83208
|
})[];
|
|
82895
83209
|
/** Array of warnings associated with the device. 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. */
|
|
82896
83210
|
warnings: ({
|
|
@@ -83384,6 +83698,17 @@ export type Routes = {
|
|
|
83384
83698
|
site_user_subscription_limit: number;
|
|
83385
83699
|
}[];
|
|
83386
83700
|
};
|
|
83701
|
+
} | {
|
|
83702
|
+
/** Date and time at which Seam created the error. */
|
|
83703
|
+
created_at: string;
|
|
83704
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83705
|
+
message: string;
|
|
83706
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
83707
|
+
is_connected_account_error?: boolean | undefined;
|
|
83708
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
83709
|
+
is_bridge_error?: boolean | undefined;
|
|
83710
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83711
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
83387
83712
|
})[];
|
|
83388
83713
|
/** Warnings associated with the connected account. */
|
|
83389
83714
|
warnings: ({
|
|
@@ -83449,6 +83774,13 @@ export type Routes = {
|
|
|
83449
83774
|
message: string;
|
|
83450
83775
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83451
83776
|
warning_code: 'setup_required';
|
|
83777
|
+
} | {
|
|
83778
|
+
/** Date and time at which Seam created the warning. */
|
|
83779
|
+
created_at: string;
|
|
83780
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83781
|
+
message: string;
|
|
83782
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83783
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
83452
83784
|
})[];
|
|
83453
83785
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
83454
83786
|
custom_metadata: {
|
|
@@ -90185,6 +90517,17 @@ export type Routes = {
|
|
|
90185
90517
|
is_bridge_error?: boolean | undefined;
|
|
90186
90518
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90187
90519
|
error_code: 'bridge_disconnected';
|
|
90520
|
+
} | {
|
|
90521
|
+
/** Date and time at which Seam created the error. */
|
|
90522
|
+
created_at: string;
|
|
90523
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90524
|
+
message: string;
|
|
90525
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
90526
|
+
is_connected_account_error?: boolean | undefined;
|
|
90527
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
90528
|
+
is_bridge_error?: boolean | undefined;
|
|
90529
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90530
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
90188
90531
|
})[];
|
|
90189
90532
|
/** Array of warnings associated with the device. 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. */
|
|
90190
90533
|
warnings: ({
|
|
@@ -94954,6 +95297,17 @@ export type Routes = {
|
|
|
94954
95297
|
is_bridge_error?: boolean | undefined;
|
|
94955
95298
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94956
95299
|
error_code: 'bridge_disconnected';
|
|
95300
|
+
} | {
|
|
95301
|
+
/** Date and time at which Seam created the error. */
|
|
95302
|
+
created_at: string;
|
|
95303
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95304
|
+
message: string;
|
|
95305
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
95306
|
+
is_connected_account_error?: boolean | undefined;
|
|
95307
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
95308
|
+
is_bridge_error?: boolean | undefined;
|
|
95309
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95310
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
94957
95311
|
})[];
|
|
94958
95312
|
/** Array of warnings associated with the device. 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. */
|
|
94959
95313
|
warnings: ({
|
|
@@ -96314,6 +96668,17 @@ export type Routes = {
|
|
|
96314
96668
|
is_bridge_error?: boolean | undefined;
|
|
96315
96669
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96316
96670
|
error_code: 'bridge_disconnected';
|
|
96671
|
+
} | {
|
|
96672
|
+
/** Date and time at which Seam created the error. */
|
|
96673
|
+
created_at: string;
|
|
96674
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96675
|
+
message: string;
|
|
96676
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
96677
|
+
is_connected_account_error?: boolean | undefined;
|
|
96678
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
96679
|
+
is_bridge_error?: boolean | undefined;
|
|
96680
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96681
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
96317
96682
|
})[];
|
|
96318
96683
|
/** Array of warnings associated with the device. 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. */
|
|
96319
96684
|
warnings: ({
|
|
@@ -105312,6 +105677,17 @@ export type Routes = {
|
|
|
105312
105677
|
is_bridge_error?: boolean | undefined;
|
|
105313
105678
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105314
105679
|
error_code: 'bridge_disconnected';
|
|
105680
|
+
} | {
|
|
105681
|
+
/** Date and time at which Seam created the error. */
|
|
105682
|
+
created_at: string;
|
|
105683
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105684
|
+
message: string;
|
|
105685
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
105686
|
+
is_connected_account_error?: boolean | undefined;
|
|
105687
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
105688
|
+
is_bridge_error?: boolean | undefined;
|
|
105689
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105690
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
105315
105691
|
})[];
|
|
105316
105692
|
/** Array of warnings associated with the device. 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. */
|
|
105317
105693
|
warnings: ({
|
|
@@ -106674,6 +107050,17 @@ export type Routes = {
|
|
|
106674
107050
|
is_bridge_error?: boolean | undefined;
|
|
106675
107051
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
106676
107052
|
error_code: 'bridge_disconnected';
|
|
107053
|
+
} | {
|
|
107054
|
+
/** Date and time at which Seam created the error. */
|
|
107055
|
+
created_at: string;
|
|
107056
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107057
|
+
message: string;
|
|
107058
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
107059
|
+
is_connected_account_error?: boolean | undefined;
|
|
107060
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
107061
|
+
is_bridge_error?: boolean | undefined;
|
|
107062
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107063
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
106677
107064
|
})[];
|
|
106678
107065
|
/** Array of warnings associated with the device. 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. */
|
|
106679
107066
|
warnings: ({
|
|
@@ -109239,6 +109626,17 @@ export type Routes = {
|
|
|
109239
109626
|
is_bridge_error?: boolean | undefined;
|
|
109240
109627
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109241
109628
|
error_code: 'bridge_disconnected';
|
|
109629
|
+
} | {
|
|
109630
|
+
/** Date and time at which Seam created the error. */
|
|
109631
|
+
created_at: string;
|
|
109632
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109633
|
+
message: string;
|
|
109634
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
109635
|
+
is_connected_account_error?: boolean | undefined;
|
|
109636
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
109637
|
+
is_bridge_error?: boolean | undefined;
|
|
109638
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109639
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
109242
109640
|
})[];
|
|
109243
109641
|
/** Array of warnings associated with the device. 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. */
|
|
109244
109642
|
warnings: ({
|
|
@@ -112490,6 +112888,17 @@ export type Routes = {
|
|
|
112490
112888
|
is_bridge_error?: boolean | undefined;
|
|
112491
112889
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112492
112890
|
error_code: 'bridge_disconnected';
|
|
112891
|
+
} | {
|
|
112892
|
+
/** Date and time at which Seam created the error. */
|
|
112893
|
+
created_at: string;
|
|
112894
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112895
|
+
message: string;
|
|
112896
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
112897
|
+
is_connected_account_error?: boolean | undefined;
|
|
112898
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
112899
|
+
is_bridge_error?: boolean | undefined;
|
|
112900
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112901
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
112493
112902
|
})[];
|
|
112494
112903
|
/** Array of warnings associated with the device. 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. */
|
|
112495
112904
|
warnings: ({
|
|
@@ -113225,6 +113634,17 @@ export type Routes = {
|
|
|
113225
113634
|
site_user_subscription_limit: number;
|
|
113226
113635
|
}[];
|
|
113227
113636
|
};
|
|
113637
|
+
} | {
|
|
113638
|
+
/** Date and time at which Seam created the error. */
|
|
113639
|
+
created_at: string;
|
|
113640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113641
|
+
message: string;
|
|
113642
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
113643
|
+
is_connected_account_error?: boolean | undefined;
|
|
113644
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
113645
|
+
is_bridge_error?: boolean | undefined;
|
|
113646
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113647
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
113228
113648
|
})[];
|
|
113229
113649
|
/** Warnings associated with the connected account. */
|
|
113230
113650
|
warnings: ({
|
|
@@ -113290,6 +113710,13 @@ export type Routes = {
|
|
|
113290
113710
|
message: string;
|
|
113291
113711
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113292
113712
|
warning_code: 'setup_required';
|
|
113713
|
+
} | {
|
|
113714
|
+
/** Date and time at which Seam created the warning. */
|
|
113715
|
+
created_at: string;
|
|
113716
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
113717
|
+
message: string;
|
|
113718
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113719
|
+
warning_code: 'dormakaba_sites_unapproved';
|
|
113293
113720
|
})[];
|
|
113294
113721
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
113295
113722
|
custom_metadata: {
|
|
@@ -116757,6 +117184,17 @@ export type Routes = {
|
|
|
116757
117184
|
is_bridge_error?: boolean | undefined;
|
|
116758
117185
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116759
117186
|
error_code: 'bridge_disconnected';
|
|
117187
|
+
} | {
|
|
117188
|
+
/** Date and time at which Seam created the error. */
|
|
117189
|
+
created_at: string;
|
|
117190
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117191
|
+
message: string;
|
|
117192
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
117193
|
+
is_connected_account_error?: boolean | undefined;
|
|
117194
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
117195
|
+
is_bridge_error?: boolean | undefined;
|
|
117196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117197
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
116760
117198
|
})[];
|
|
116761
117199
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
116762
117200
|
warnings: ({
|
|
@@ -117307,6 +117745,17 @@ export type Routes = {
|
|
|
117307
117745
|
is_bridge_error?: boolean | undefined;
|
|
117308
117746
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117309
117747
|
error_code: 'bridge_disconnected';
|
|
117748
|
+
} | {
|
|
117749
|
+
/** Date and time at which Seam created the error. */
|
|
117750
|
+
created_at: string;
|
|
117751
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117752
|
+
message: string;
|
|
117753
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
117754
|
+
is_connected_account_error?: boolean | undefined;
|
|
117755
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
117756
|
+
is_bridge_error?: boolean | undefined;
|
|
117757
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117758
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
117310
117759
|
})[];
|
|
117311
117760
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
117312
117761
|
warnings: ({
|