@seamapi/types 1.561.0 → 1.562.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 +60 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +257 -0
- package/dist/index.cjs +60 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +71 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +26 -0
- package/lib/seam/connect/models/batch.d.ts +144 -0
- package/lib/seam/connect/openapi.js +52 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +117 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +130 -0
|
@@ -1547,6 +1547,15 @@ export type Routes = {
|
|
|
1547
1547
|
created_at?: string | undefined;
|
|
1548
1548
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1549
1549
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
1550
|
+
} | {
|
|
1551
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1552
|
+
message: string;
|
|
1553
|
+
/** Indicates that this is an access code error. */
|
|
1554
|
+
is_access_code_error: true;
|
|
1555
|
+
/** Date and time at which Seam created the error. */
|
|
1556
|
+
created_at?: string | undefined;
|
|
1557
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1558
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
1550
1559
|
} | {
|
|
1551
1560
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1552
1561
|
message: string;
|
|
@@ -2092,6 +2101,15 @@ export type Routes = {
|
|
|
2092
2101
|
created_at?: string | undefined;
|
|
2093
2102
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2094
2103
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
2104
|
+
} | {
|
|
2105
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2106
|
+
message: string;
|
|
2107
|
+
/** Indicates that this is an access code error. */
|
|
2108
|
+
is_access_code_error: true;
|
|
2109
|
+
/** Date and time at which Seam created the error. */
|
|
2110
|
+
created_at?: string | undefined;
|
|
2111
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2112
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
2095
2113
|
} | {
|
|
2096
2114
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2097
2115
|
message: string;
|
|
@@ -3891,6 +3909,15 @@ export type Routes = {
|
|
|
3891
3909
|
created_at?: string | undefined;
|
|
3892
3910
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3893
3911
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3912
|
+
} | {
|
|
3913
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3914
|
+
message: string;
|
|
3915
|
+
/** Indicates that this is an access code error. */
|
|
3916
|
+
is_access_code_error: true;
|
|
3917
|
+
/** Date and time at which Seam created the error. */
|
|
3918
|
+
created_at?: string | undefined;
|
|
3919
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3920
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
3894
3921
|
} | {
|
|
3895
3922
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3896
3923
|
message: string;
|
|
@@ -4410,6 +4437,15 @@ export type Routes = {
|
|
|
4410
4437
|
created_at?: string | undefined;
|
|
4411
4438
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4412
4439
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
4440
|
+
} | {
|
|
4441
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4442
|
+
message: string;
|
|
4443
|
+
/** Indicates that this is an access code error. */
|
|
4444
|
+
is_access_code_error: true;
|
|
4445
|
+
/** Date and time at which Seam created the error. */
|
|
4446
|
+
created_at?: string | undefined;
|
|
4447
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4448
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
4413
4449
|
} | {
|
|
4414
4450
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4415
4451
|
message: string;
|
|
@@ -4935,6 +4971,15 @@ export type Routes = {
|
|
|
4935
4971
|
created_at?: string | undefined;
|
|
4936
4972
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4937
4973
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
4974
|
+
} | {
|
|
4975
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4976
|
+
message: string;
|
|
4977
|
+
/** Indicates that this is an access code error. */
|
|
4978
|
+
is_access_code_error: true;
|
|
4979
|
+
/** Date and time at which Seam created the error. */
|
|
4980
|
+
created_at?: string | undefined;
|
|
4981
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4982
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
4938
4983
|
} | {
|
|
4939
4984
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4940
4985
|
message: string;
|
|
@@ -5438,6 +5483,15 @@ export type Routes = {
|
|
|
5438
5483
|
created_at?: string | undefined;
|
|
5439
5484
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5440
5485
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
5486
|
+
} | {
|
|
5487
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5488
|
+
message: string;
|
|
5489
|
+
/** Indicates that this is an access code error. */
|
|
5490
|
+
is_access_code_error: true;
|
|
5491
|
+
/** Date and time at which Seam created the error. */
|
|
5492
|
+
created_at?: string | undefined;
|
|
5493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5494
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
5441
5495
|
} | {
|
|
5442
5496
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5443
5497
|
message: string;
|
|
@@ -5974,6 +6028,15 @@ export type Routes = {
|
|
|
5974
6028
|
created_at?: string | undefined;
|
|
5975
6029
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5976
6030
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
6031
|
+
} | {
|
|
6032
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6033
|
+
message: string;
|
|
6034
|
+
/** Indicates that this is an access code error. */
|
|
6035
|
+
is_access_code_error: true;
|
|
6036
|
+
/** Date and time at which Seam created the error. */
|
|
6037
|
+
created_at?: string | undefined;
|
|
6038
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6039
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
5977
6040
|
} | {
|
|
5978
6041
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5979
6042
|
message: string;
|
|
@@ -7760,6 +7823,15 @@ export type Routes = {
|
|
|
7760
7823
|
created_at?: string | undefined;
|
|
7761
7824
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7762
7825
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
7826
|
+
} | {
|
|
7827
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7828
|
+
message: string;
|
|
7829
|
+
/** Indicates that this is an access code error. */
|
|
7830
|
+
is_access_code_error: true;
|
|
7831
|
+
/** Date and time at which Seam created the error. */
|
|
7832
|
+
created_at?: string | undefined;
|
|
7833
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7834
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
7763
7835
|
} | {
|
|
7764
7836
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7765
7837
|
message: string;
|
|
@@ -8257,6 +8329,15 @@ export type Routes = {
|
|
|
8257
8329
|
created_at?: string | undefined;
|
|
8258
8330
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8259
8331
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
8332
|
+
} | {
|
|
8333
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8334
|
+
message: string;
|
|
8335
|
+
/** Indicates that this is an access code error. */
|
|
8336
|
+
is_access_code_error: true;
|
|
8337
|
+
/** Date and time at which Seam created the error. */
|
|
8338
|
+
created_at?: string | undefined;
|
|
8339
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8340
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
8260
8341
|
} | {
|
|
8261
8342
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8262
8343
|
message: string;
|
|
@@ -19401,6 +19482,15 @@ export type Routes = {
|
|
|
19401
19482
|
created_at?: string | undefined;
|
|
19402
19483
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19403
19484
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
19485
|
+
} | {
|
|
19486
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19487
|
+
message: string;
|
|
19488
|
+
/** Indicates that this is an access code error. */
|
|
19489
|
+
is_access_code_error: true;
|
|
19490
|
+
/** Date and time at which Seam created the error. */
|
|
19491
|
+
created_at?: string | undefined;
|
|
19492
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19493
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
19404
19494
|
} | {
|
|
19405
19495
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19406
19496
|
message: string;
|
|
@@ -19891,6 +19981,15 @@ export type Routes = {
|
|
|
19891
19981
|
created_at?: string | undefined;
|
|
19892
19982
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19893
19983
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
19984
|
+
} | {
|
|
19985
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19986
|
+
message: string;
|
|
19987
|
+
/** Indicates that this is an access code error. */
|
|
19988
|
+
is_access_code_error: true;
|
|
19989
|
+
/** Date and time at which Seam created the error. */
|
|
19990
|
+
created_at?: string | undefined;
|
|
19991
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19992
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
19894
19993
|
} | {
|
|
19895
19994
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19896
19995
|
message: string;
|
|
@@ -85889,6 +85988,15 @@ export type Routes = {
|
|
|
85889
85988
|
created_at?: string | undefined;
|
|
85890
85989
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85891
85990
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
85991
|
+
} | {
|
|
85992
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85993
|
+
message: string;
|
|
85994
|
+
/** Indicates that this is an access code error. */
|
|
85995
|
+
is_access_code_error: true;
|
|
85996
|
+
/** Date and time at which Seam created the error. */
|
|
85997
|
+
created_at?: string | undefined;
|
|
85998
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85999
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
85892
86000
|
} | {
|
|
85893
86001
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85894
86002
|
message: string;
|
|
@@ -86379,6 +86487,15 @@ export type Routes = {
|
|
|
86379
86487
|
created_at?: string | undefined;
|
|
86380
86488
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86381
86489
|
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
86490
|
+
} | {
|
|
86491
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86492
|
+
message: string;
|
|
86493
|
+
/** Indicates that this is an access code error. */
|
|
86494
|
+
is_access_code_error: true;
|
|
86495
|
+
/** Date and time at which Seam created the error. */
|
|
86496
|
+
created_at?: string | undefined;
|
|
86497
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86498
|
+
error_code: 'kwikset_insufficient_permissions';
|
|
86382
86499
|
} | {
|
|
86383
86500
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86384
86501
|
message: string;
|
package/package.json
CHANGED
|
@@ -122,6 +122,16 @@ const kwikset_unable_to_confirm_deletion = common_access_code_error
|
|
|
122
122
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
123
123
|
)
|
|
124
124
|
|
|
125
|
+
const kwikset_insufficient_permissions = common_access_code_error
|
|
126
|
+
.extend({
|
|
127
|
+
error_code: z
|
|
128
|
+
.literal('kwikset_insufficient_permissions')
|
|
129
|
+
.describe(error_code_description),
|
|
130
|
+
})
|
|
131
|
+
.describe(
|
|
132
|
+
'Admin role required—insufficient permissions to manage PINs on this Kwikset device. Please have a Home Admin update your role in the Kwikset app, or ask them to set the PIN.',
|
|
133
|
+
)
|
|
134
|
+
|
|
125
135
|
const igloohome_offline_access_code_no_variance_available =
|
|
126
136
|
common_access_code_error
|
|
127
137
|
.extend({
|
|
@@ -254,6 +264,7 @@ const access_code_error = z
|
|
|
254
264
|
wyze_duplicate_code_name,
|
|
255
265
|
wyze_potential_duplicate_code,
|
|
256
266
|
dormakaba_oracode_no_valid_user_level,
|
|
267
|
+
kwikset_insufficient_permissions,
|
|
257
268
|
])
|
|
258
269
|
.describe(
|
|
259
270
|
'Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
@@ -292,6 +303,9 @@ const _access_code_error_map = z.object({
|
|
|
292
303
|
kwikset_unable_to_confirm_deletion: kwikset_unable_to_confirm_deletion
|
|
293
304
|
.optional()
|
|
294
305
|
.nullable(),
|
|
306
|
+
kwikset_insufficient_permissions: kwikset_insufficient_permissions
|
|
307
|
+
.optional()
|
|
308
|
+
.nullable(),
|
|
295
309
|
code_modified_external_to_seam_error: code_modified_external_to_seam_error
|
|
296
310
|
.optional()
|
|
297
311
|
.nullable(),
|
|
@@ -807,6 +807,37 @@ export default {
|
|
|
807
807
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
808
808
|
type: 'object',
|
|
809
809
|
},
|
|
810
|
+
{
|
|
811
|
+
description:
|
|
812
|
+
'Admin role required—insufficient permissions to manage PINs on this Kwikset device. Please have a Home Admin update your role in the Kwikset app, or ask them to set the PIN.',
|
|
813
|
+
properties: {
|
|
814
|
+
created_at: {
|
|
815
|
+
description:
|
|
816
|
+
'Date and time at which Seam created the error.',
|
|
817
|
+
format: 'date-time',
|
|
818
|
+
type: 'string',
|
|
819
|
+
},
|
|
820
|
+
error_code: {
|
|
821
|
+
description:
|
|
822
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
823
|
+
enum: ['kwikset_insufficient_permissions'],
|
|
824
|
+
type: 'string',
|
|
825
|
+
},
|
|
826
|
+
is_access_code_error: {
|
|
827
|
+
description:
|
|
828
|
+
'Indicates that this is an access code error.',
|
|
829
|
+
enum: [true],
|
|
830
|
+
type: 'boolean',
|
|
831
|
+
},
|
|
832
|
+
message: {
|
|
833
|
+
description:
|
|
834
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
835
|
+
type: 'string',
|
|
836
|
+
},
|
|
837
|
+
},
|
|
838
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
839
|
+
type: 'object',
|
|
840
|
+
},
|
|
810
841
|
{
|
|
811
842
|
description: 'Indicates that the account is disconnected.',
|
|
812
843
|
properties: {
|
|
@@ -21663,6 +21694,37 @@ export default {
|
|
|
21663
21694
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
21664
21695
|
type: 'object',
|
|
21665
21696
|
},
|
|
21697
|
+
{
|
|
21698
|
+
description:
|
|
21699
|
+
'Admin role required—insufficient permissions to manage PINs on this Kwikset device. Please have a Home Admin update your role in the Kwikset app, or ask them to set the PIN.',
|
|
21700
|
+
properties: {
|
|
21701
|
+
created_at: {
|
|
21702
|
+
description:
|
|
21703
|
+
'Date and time at which Seam created the error.',
|
|
21704
|
+
format: 'date-time',
|
|
21705
|
+
type: 'string',
|
|
21706
|
+
},
|
|
21707
|
+
error_code: {
|
|
21708
|
+
description:
|
|
21709
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
21710
|
+
enum: ['kwikset_insufficient_permissions'],
|
|
21711
|
+
type: 'string',
|
|
21712
|
+
},
|
|
21713
|
+
is_access_code_error: {
|
|
21714
|
+
description:
|
|
21715
|
+
'Indicates that this is an access code error.',
|
|
21716
|
+
enum: [true],
|
|
21717
|
+
type: 'boolean',
|
|
21718
|
+
},
|
|
21719
|
+
message: {
|
|
21720
|
+
description:
|
|
21721
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
21722
|
+
type: 'string',
|
|
21723
|
+
},
|
|
21724
|
+
},
|
|
21725
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
21726
|
+
type: 'object',
|
|
21727
|
+
},
|
|
21666
21728
|
{
|
|
21667
21729
|
description: 'Indicates that the account is disconnected.',
|
|
21668
21730
|
properties: {
|
|
@@ -1762,6 +1762,16 @@ export type Routes = {
|
|
|
1762
1762
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1763
1763
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
1764
1764
|
}
|
|
1765
|
+
| {
|
|
1766
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1767
|
+
message: string
|
|
1768
|
+
/** Indicates that this is an access code error. */
|
|
1769
|
+
is_access_code_error: true
|
|
1770
|
+
/** Date and time at which Seam created the error. */
|
|
1771
|
+
created_at?: string | undefined
|
|
1772
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1773
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
1774
|
+
}
|
|
1765
1775
|
| {
|
|
1766
1776
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1767
1777
|
message: string
|
|
@@ -2361,6 +2371,16 @@ export type Routes = {
|
|
|
2361
2371
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2362
2372
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
2363
2373
|
}
|
|
2374
|
+
| {
|
|
2375
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2376
|
+
message: string
|
|
2377
|
+
/** Indicates that this is an access code error. */
|
|
2378
|
+
is_access_code_error: true
|
|
2379
|
+
/** Date and time at which Seam created the error. */
|
|
2380
|
+
created_at?: string | undefined
|
|
2381
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2382
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
2383
|
+
}
|
|
2364
2384
|
| {
|
|
2365
2385
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2366
2386
|
message: string
|
|
@@ -4403,6 +4423,16 @@ export type Routes = {
|
|
|
4403
4423
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4404
4424
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
4405
4425
|
}
|
|
4426
|
+
| {
|
|
4427
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4428
|
+
message: string
|
|
4429
|
+
/** Indicates that this is an access code error. */
|
|
4430
|
+
is_access_code_error: true
|
|
4431
|
+
/** Date and time at which Seam created the error. */
|
|
4432
|
+
created_at?: string | undefined
|
|
4433
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4434
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
4435
|
+
}
|
|
4406
4436
|
| {
|
|
4407
4437
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4408
4438
|
message: string
|
|
@@ -4976,6 +5006,16 @@ export type Routes = {
|
|
|
4976
5006
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4977
5007
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
4978
5008
|
}
|
|
5009
|
+
| {
|
|
5010
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5011
|
+
message: string
|
|
5012
|
+
/** Indicates that this is an access code error. */
|
|
5013
|
+
is_access_code_error: true
|
|
5014
|
+
/** Date and time at which Seam created the error. */
|
|
5015
|
+
created_at?: string | undefined
|
|
5016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5017
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
5018
|
+
}
|
|
4979
5019
|
| {
|
|
4980
5020
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4981
5021
|
message: string
|
|
@@ -5555,6 +5595,16 @@ export type Routes = {
|
|
|
5555
5595
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5556
5596
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
5557
5597
|
}
|
|
5598
|
+
| {
|
|
5599
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5600
|
+
message: string
|
|
5601
|
+
/** Indicates that this is an access code error. */
|
|
5602
|
+
is_access_code_error: true
|
|
5603
|
+
/** Date and time at which Seam created the error. */
|
|
5604
|
+
created_at?: string | undefined
|
|
5605
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5606
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
5607
|
+
}
|
|
5558
5608
|
| {
|
|
5559
5609
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5560
5610
|
message: string
|
|
@@ -6112,6 +6162,16 @@ export type Routes = {
|
|
|
6112
6162
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6113
6163
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
6114
6164
|
}
|
|
6165
|
+
| {
|
|
6166
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6167
|
+
message: string
|
|
6168
|
+
/** Indicates that this is an access code error. */
|
|
6169
|
+
is_access_code_error: true
|
|
6170
|
+
/** Date and time at which Seam created the error. */
|
|
6171
|
+
created_at?: string | undefined
|
|
6172
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6173
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
6174
|
+
}
|
|
6115
6175
|
| {
|
|
6116
6176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6117
6177
|
message: string
|
|
@@ -6702,6 +6762,16 @@ export type Routes = {
|
|
|
6702
6762
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6703
6763
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
6704
6764
|
}
|
|
6765
|
+
| {
|
|
6766
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6767
|
+
message: string
|
|
6768
|
+
/** Indicates that this is an access code error. */
|
|
6769
|
+
is_access_code_error: true
|
|
6770
|
+
/** Date and time at which Seam created the error. */
|
|
6771
|
+
created_at?: string | undefined
|
|
6772
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6773
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
6774
|
+
}
|
|
6705
6775
|
| {
|
|
6706
6776
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6707
6777
|
message: string
|
|
@@ -8731,6 +8801,16 @@ export type Routes = {
|
|
|
8731
8801
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8732
8802
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
8733
8803
|
}
|
|
8804
|
+
| {
|
|
8805
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8806
|
+
message: string
|
|
8807
|
+
/** Indicates that this is an access code error. */
|
|
8808
|
+
is_access_code_error: true
|
|
8809
|
+
/** Date and time at which Seam created the error. */
|
|
8810
|
+
created_at?: string | undefined
|
|
8811
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8812
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
8813
|
+
}
|
|
8734
8814
|
| {
|
|
8735
8815
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8736
8816
|
message: string
|
|
@@ -9282,6 +9362,16 @@ export type Routes = {
|
|
|
9282
9362
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9283
9363
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
9284
9364
|
}
|
|
9365
|
+
| {
|
|
9366
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9367
|
+
message: string
|
|
9368
|
+
/** Indicates that this is an access code error. */
|
|
9369
|
+
is_access_code_error: true
|
|
9370
|
+
/** Date and time at which Seam created the error. */
|
|
9371
|
+
created_at?: string | undefined
|
|
9372
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9373
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
9374
|
+
}
|
|
9285
9375
|
| {
|
|
9286
9376
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9287
9377
|
message: string
|
|
@@ -22600,6 +22690,16 @@ export type Routes = {
|
|
|
22600
22690
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22601
22691
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
22602
22692
|
}
|
|
22693
|
+
| {
|
|
22694
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22695
|
+
message: string
|
|
22696
|
+
/** Indicates that this is an access code error. */
|
|
22697
|
+
is_access_code_error: true
|
|
22698
|
+
/** Date and time at which Seam created the error. */
|
|
22699
|
+
created_at?: string | undefined
|
|
22700
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22701
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
22702
|
+
}
|
|
22603
22703
|
| {
|
|
22604
22704
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22605
22705
|
message: string
|
|
@@ -23146,6 +23246,16 @@ export type Routes = {
|
|
|
23146
23246
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23147
23247
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
23148
23248
|
}
|
|
23249
|
+
| {
|
|
23250
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23251
|
+
message: string
|
|
23252
|
+
/** Indicates that this is an access code error. */
|
|
23253
|
+
is_access_code_error: true
|
|
23254
|
+
/** Date and time at which Seam created the error. */
|
|
23255
|
+
created_at?: string | undefined
|
|
23256
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23257
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
23258
|
+
}
|
|
23149
23259
|
| {
|
|
23150
23260
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23151
23261
|
message: string
|
|
@@ -102231,6 +102341,16 @@ export type Routes = {
|
|
|
102231
102341
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
102232
102342
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
102233
102343
|
}
|
|
102344
|
+
| {
|
|
102345
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102346
|
+
message: string
|
|
102347
|
+
/** Indicates that this is an access code error. */
|
|
102348
|
+
is_access_code_error: true
|
|
102349
|
+
/** Date and time at which Seam created the error. */
|
|
102350
|
+
created_at?: string | undefined
|
|
102351
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
102352
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
102353
|
+
}
|
|
102234
102354
|
| {
|
|
102235
102355
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102236
102356
|
message: string
|
|
@@ -102777,6 +102897,16 @@ export type Routes = {
|
|
|
102777
102897
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
102778
102898
|
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
102779
102899
|
}
|
|
102900
|
+
| {
|
|
102901
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102902
|
+
message: string
|
|
102903
|
+
/** Indicates that this is an access code error. */
|
|
102904
|
+
is_access_code_error: true
|
|
102905
|
+
/** Date and time at which Seam created the error. */
|
|
102906
|
+
created_at?: string | undefined
|
|
102907
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
102908
|
+
error_code: 'kwikset_insufficient_permissions'
|
|
102909
|
+
}
|
|
102780
102910
|
| {
|
|
102781
102911
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102782
102912
|
message: string
|