@seamapi/types 1.892.0 → 1.894.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.
Files changed (27) hide show
  1. package/dist/connect.cjs +192 -7
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +660 -2
  4. package/dist/index.cjs +192 -7
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
  7. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
  8. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +162 -0
  9. package/lib/seam/connect/models/connected-accounts/connected-account.js +20 -0
  10. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  11. package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
  12. package/lib/seam/connect/models/devices/device-provider.js +3 -0
  13. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device.d.ts +50 -0
  15. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
  16. package/lib/seam/connect/models/user-identities/user-identity.d.ts +8 -8
  17. package/lib/seam/connect/models/user-identities/user-identity.js +1 -3
  18. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  19. package/lib/seam/connect/openapi.js +168 -0
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +451 -2
  22. package/package.json +1 -1
  23. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +26 -0
  24. package/src/lib/seam/connect/models/devices/device-provider.ts +3 -0
  25. package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -3
  26. package/src/lib/seam/connect/openapi.ts +202 -0
  27. package/src/lib/seam/connect/route-types.ts +494 -0
@@ -1167,6 +1167,25 @@ declare const access_code: z.ZodObject<{
1167
1167
  };
1168
1168
  is_connected_account_error?: boolean | undefined;
1169
1169
  is_bridge_error?: boolean | undefined;
1170
+ }> | z.ZodObject<{
1171
+ created_at: z.ZodString;
1172
+ message: z.ZodString;
1173
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
1174
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
1175
+ } & {
1176
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
1177
+ }, "strip", z.ZodTypeAny, {
1178
+ message: string;
1179
+ created_at: string;
1180
+ error_code: "dormakaba_sites_disconnected";
1181
+ is_connected_account_error?: boolean | undefined;
1182
+ is_bridge_error?: boolean | undefined;
1183
+ }, {
1184
+ message: string;
1185
+ created_at: string;
1186
+ error_code: "dormakaba_sites_disconnected";
1187
+ is_connected_account_error?: boolean | undefined;
1188
+ is_bridge_error?: boolean | undefined;
1170
1189
  }> | z.ZodObject<{
1171
1190
  message: z.ZodString;
1172
1191
  is_device_error: z.ZodLiteral<true>;
@@ -1888,6 +1907,12 @@ declare const access_code: z.ZodObject<{
1888
1907
  };
1889
1908
  is_connected_account_error?: boolean | undefined;
1890
1909
  is_bridge_error?: boolean | undefined;
1910
+ } | {
1911
+ message: string;
1912
+ created_at: string;
1913
+ error_code: "dormakaba_sites_disconnected";
1914
+ is_connected_account_error?: boolean | undefined;
1915
+ is_bridge_error?: boolean | undefined;
1891
1916
  } | {
1892
1917
  message: string;
1893
1918
  created_at: string;
@@ -2262,6 +2287,12 @@ declare const access_code: z.ZodObject<{
2262
2287
  };
2263
2288
  is_connected_account_error?: boolean | undefined;
2264
2289
  is_bridge_error?: boolean | undefined;
2290
+ } | {
2291
+ message: string;
2292
+ created_at: string;
2293
+ error_code: "dormakaba_sites_disconnected";
2294
+ is_connected_account_error?: boolean | undefined;
2295
+ is_bridge_error?: boolean | undefined;
2265
2296
  } | {
2266
2297
  message: string;
2267
2298
  created_at: string;
@@ -3119,6 +3150,25 @@ declare const unmanaged_access_code: z.ZodObject<{
3119
3150
  };
3120
3151
  is_connected_account_error?: boolean | undefined;
3121
3152
  is_bridge_error?: boolean | undefined;
3153
+ }> | z.ZodObject<{
3154
+ created_at: z.ZodString;
3155
+ message: z.ZodString;
3156
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
3157
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
3158
+ } & {
3159
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
3160
+ }, "strip", z.ZodTypeAny, {
3161
+ message: string;
3162
+ created_at: string;
3163
+ error_code: "dormakaba_sites_disconnected";
3164
+ is_connected_account_error?: boolean | undefined;
3165
+ is_bridge_error?: boolean | undefined;
3166
+ }, {
3167
+ message: string;
3168
+ created_at: string;
3169
+ error_code: "dormakaba_sites_disconnected";
3170
+ is_connected_account_error?: boolean | undefined;
3171
+ is_bridge_error?: boolean | undefined;
3122
3172
  }> | z.ZodObject<{
3123
3173
  message: z.ZodString;
3124
3174
  is_device_error: z.ZodLiteral<true>;
@@ -3666,6 +3716,12 @@ declare const unmanaged_access_code: z.ZodObject<{
3666
3716
  };
3667
3717
  is_connected_account_error?: boolean | undefined;
3668
3718
  is_bridge_error?: boolean | undefined;
3719
+ } | {
3720
+ message: string;
3721
+ created_at: string;
3722
+ error_code: "dormakaba_sites_disconnected";
3723
+ is_connected_account_error?: boolean | undefined;
3724
+ is_bridge_error?: boolean | undefined;
3669
3725
  } | {
3670
3726
  message: string;
3671
3727
  created_at: string;
@@ -3987,6 +4043,12 @@ declare const unmanaged_access_code: z.ZodObject<{
3987
4043
  };
3988
4044
  is_connected_account_error?: boolean | undefined;
3989
4045
  is_bridge_error?: boolean | undefined;
4046
+ } | {
4047
+ message: string;
4048
+ created_at: string;
4049
+ error_code: "dormakaba_sites_disconnected";
4050
+ is_connected_account_error?: boolean | undefined;
4051
+ is_bridge_error?: boolean | undefined;
3990
4052
  } | {
3991
4053
  message: string;
3992
4054
  created_at: string;
@@ -14511,6 +14573,25 @@ declare const connected_account_error: z.ZodDiscriminatedUnion<"error_code", [z.
14511
14573
  };
14512
14574
  is_connected_account_error?: boolean | undefined;
14513
14575
  is_bridge_error?: boolean | undefined;
14576
+ }>, z.ZodObject<{
14577
+ created_at: z.ZodString;
14578
+ message: z.ZodString;
14579
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
14580
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
14581
+ } & {
14582
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
14583
+ }, "strip", z.ZodTypeAny, {
14584
+ message: string;
14585
+ created_at: string;
14586
+ error_code: "dormakaba_sites_disconnected";
14587
+ is_connected_account_error?: boolean | undefined;
14588
+ is_bridge_error?: boolean | undefined;
14589
+ }, {
14590
+ message: string;
14591
+ created_at: string;
14592
+ error_code: "dormakaba_sites_disconnected";
14593
+ is_connected_account_error?: boolean | undefined;
14594
+ is_bridge_error?: boolean | undefined;
14514
14595
  }>]>;
14515
14596
  type ConnectedAccountError = z.infer<typeof connected_account_error>;
14516
14597
  type ConnectedAccountWarning = z.infer<typeof connected_account_warning>;
@@ -14653,6 +14734,19 @@ declare const connected_account_warning: z.ZodDiscriminatedUnion<"warning_code",
14653
14734
  message: string;
14654
14735
  created_at: string;
14655
14736
  warning_code: "setup_required";
14737
+ }>, z.ZodObject<{
14738
+ created_at: z.ZodString;
14739
+ message: z.ZodString;
14740
+ } & {
14741
+ warning_code: z.ZodLiteral<"dormakaba_sites_unapproved">;
14742
+ }, "strip", z.ZodTypeAny, {
14743
+ message: string;
14744
+ created_at: string;
14745
+ warning_code: "dormakaba_sites_unapproved";
14746
+ }, {
14747
+ message: string;
14748
+ created_at: string;
14749
+ warning_code: "dormakaba_sites_unapproved";
14656
14750
  }>]>;
14657
14751
  declare const connected_account: z.ZodObject<{
14658
14752
  connected_account_id: z.ZodString;
@@ -14785,6 +14879,25 @@ declare const connected_account: z.ZodObject<{
14785
14879
  };
14786
14880
  is_connected_account_error?: boolean | undefined;
14787
14881
  is_bridge_error?: boolean | undefined;
14882
+ }>, z.ZodObject<{
14883
+ created_at: z.ZodString;
14884
+ message: z.ZodString;
14885
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
14886
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
14887
+ } & {
14888
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
14889
+ }, "strip", z.ZodTypeAny, {
14890
+ message: string;
14891
+ created_at: string;
14892
+ error_code: "dormakaba_sites_disconnected";
14893
+ is_connected_account_error?: boolean | undefined;
14894
+ is_bridge_error?: boolean | undefined;
14895
+ }, {
14896
+ message: string;
14897
+ created_at: string;
14898
+ error_code: "dormakaba_sites_disconnected";
14899
+ is_connected_account_error?: boolean | undefined;
14900
+ is_bridge_error?: boolean | undefined;
14788
14901
  }>]>, "many">;
14789
14902
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
14790
14903
  created_at: z.ZodString;
@@ -14925,6 +15038,19 @@ declare const connected_account: z.ZodObject<{
14925
15038
  message: string;
14926
15039
  created_at: string;
14927
15040
  warning_code: "setup_required";
15041
+ }>, z.ZodObject<{
15042
+ created_at: z.ZodString;
15043
+ message: z.ZodString;
15044
+ } & {
15045
+ warning_code: z.ZodLiteral<"dormakaba_sites_unapproved">;
15046
+ }, "strip", z.ZodTypeAny, {
15047
+ message: string;
15048
+ created_at: string;
15049
+ warning_code: "dormakaba_sites_unapproved";
15050
+ }, {
15051
+ message: string;
15052
+ created_at: string;
15053
+ warning_code: "dormakaba_sites_unapproved";
14928
15054
  }>]>, "many">;
14929
15055
  custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
14930
15056
  automatically_manage_new_devices: z.ZodBoolean;
@@ -14963,6 +15089,12 @@ declare const connected_account: z.ZodObject<{
14963
15089
  };
14964
15090
  is_connected_account_error?: boolean | undefined;
14965
15091
  is_bridge_error?: boolean | undefined;
15092
+ } | {
15093
+ message: string;
15094
+ created_at: string;
15095
+ error_code: "dormakaba_sites_disconnected";
15096
+ is_connected_account_error?: boolean | undefined;
15097
+ is_bridge_error?: boolean | undefined;
14966
15098
  })[];
14967
15099
  connected_account_id: string;
14968
15100
  account_type_display_name: string;
@@ -15002,6 +15134,10 @@ declare const connected_account: z.ZodObject<{
15002
15134
  message: string;
15003
15135
  created_at: string;
15004
15136
  warning_code: "setup_required";
15137
+ } | {
15138
+ message: string;
15139
+ created_at: string;
15140
+ warning_code: "dormakaba_sites_unapproved";
15005
15141
  })[];
15006
15142
  custom_metadata: Record<string, string | boolean>;
15007
15143
  automatically_manage_new_devices: boolean;
@@ -15050,6 +15186,12 @@ declare const connected_account: z.ZodObject<{
15050
15186
  };
15051
15187
  is_connected_account_error?: boolean | undefined;
15052
15188
  is_bridge_error?: boolean | undefined;
15189
+ } | {
15190
+ message: string;
15191
+ created_at: string;
15192
+ error_code: "dormakaba_sites_disconnected";
15193
+ is_connected_account_error?: boolean | undefined;
15194
+ is_bridge_error?: boolean | undefined;
15053
15195
  })[];
15054
15196
  connected_account_id: string;
15055
15197
  account_type_display_name: string;
@@ -15089,6 +15231,10 @@ declare const connected_account: z.ZodObject<{
15089
15231
  message: string;
15090
15232
  created_at: string;
15091
15233
  warning_code: "setup_required";
15234
+ } | {
15235
+ message: string;
15236
+ created_at: string;
15237
+ warning_code: "dormakaba_sites_unapproved";
15092
15238
  })[];
15093
15239
  custom_metadata: Record<string, string | boolean>;
15094
15240
  automatically_manage_new_devices: boolean;
@@ -18547,6 +18693,25 @@ declare const device: z.ZodObject<{
18547
18693
  };
18548
18694
  is_connected_account_error?: boolean | undefined;
18549
18695
  is_bridge_error?: boolean | undefined;
18696
+ }> | z.ZodObject<{
18697
+ created_at: z.ZodString;
18698
+ message: z.ZodString;
18699
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
18700
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
18701
+ } & {
18702
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
18703
+ }, "strip", z.ZodTypeAny, {
18704
+ message: string;
18705
+ created_at: string;
18706
+ error_code: "dormakaba_sites_disconnected";
18707
+ is_connected_account_error?: boolean | undefined;
18708
+ is_bridge_error?: boolean | undefined;
18709
+ }, {
18710
+ message: string;
18711
+ created_at: string;
18712
+ error_code: "dormakaba_sites_disconnected";
18713
+ is_connected_account_error?: boolean | undefined;
18714
+ is_bridge_error?: boolean | undefined;
18550
18715
  }>)[]]>, "many">;
18551
18716
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
18552
18717
  message: z.ZodString;
@@ -18977,6 +19142,12 @@ declare const device: z.ZodObject<{
18977
19142
  };
18978
19143
  is_connected_account_error?: boolean | undefined;
18979
19144
  is_bridge_error?: boolean | undefined;
19145
+ } | {
19146
+ message: string;
19147
+ created_at: string;
19148
+ error_code: "dormakaba_sites_disconnected";
19149
+ is_connected_account_error?: boolean | undefined;
19150
+ is_bridge_error?: boolean | undefined;
18980
19151
  } | {
18981
19152
  message: string;
18982
19153
  created_at: string;
@@ -19720,6 +19891,12 @@ declare const device: z.ZodObject<{
19720
19891
  };
19721
19892
  is_connected_account_error?: boolean | undefined;
19722
19893
  is_bridge_error?: boolean | undefined;
19894
+ } | {
19895
+ message: string;
19896
+ created_at: string;
19897
+ error_code: "dormakaba_sites_disconnected";
19898
+ is_connected_account_error?: boolean | undefined;
19899
+ is_bridge_error?: boolean | undefined;
19723
19900
  } | {
19724
19901
  message: string;
19725
19902
  created_at: string;
@@ -20488,6 +20665,7 @@ declare const DEVICE_PROVIDERS: {
20488
20665
  readonly ULTRALOQ: "ultraloq";
20489
20666
  readonly DUSAW: "dusaw";
20490
20667
  readonly SIFELY: "sifely";
20668
+ readonly THIRTY_THREE_LOCK: "thirty_three_lock";
20491
20669
  readonly RING: "ring";
20492
20670
  readonly ICAL: "ical";
20493
20671
  readonly LODGIFY: "lodgify";
@@ -23327,6 +23505,25 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23327
23505
  };
23328
23506
  is_connected_account_error?: boolean | undefined;
23329
23507
  is_bridge_error?: boolean | undefined;
23508
+ }> | z.ZodObject<{
23509
+ created_at: z.ZodString;
23510
+ message: z.ZodString;
23511
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
23512
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
23513
+ } & {
23514
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
23515
+ }, "strip", z.ZodTypeAny, {
23516
+ message: string;
23517
+ created_at: string;
23518
+ error_code: "dormakaba_sites_disconnected";
23519
+ is_connected_account_error?: boolean | undefined;
23520
+ is_bridge_error?: boolean | undefined;
23521
+ }, {
23522
+ message: string;
23523
+ created_at: string;
23524
+ error_code: "dormakaba_sites_disconnected";
23525
+ is_connected_account_error?: boolean | undefined;
23526
+ is_bridge_error?: boolean | undefined;
23330
23527
  }>)[]]>, "many">;
23331
23528
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
23332
23529
  message: z.ZodString;
@@ -23913,6 +24110,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23913
24110
  };
23914
24111
  is_connected_account_error?: boolean | undefined;
23915
24112
  is_bridge_error?: boolean | undefined;
24113
+ } | {
24114
+ message: string;
24115
+ created_at: string;
24116
+ error_code: "dormakaba_sites_disconnected";
24117
+ is_connected_account_error?: boolean | undefined;
24118
+ is_bridge_error?: boolean | undefined;
23916
24119
  } | {
23917
24120
  message: string;
23918
24121
  created_at: string;
@@ -24182,6 +24385,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
24182
24385
  };
24183
24386
  is_connected_account_error?: boolean | undefined;
24184
24387
  is_bridge_error?: boolean | undefined;
24388
+ } | {
24389
+ message: string;
24390
+ created_at: string;
24391
+ error_code: "dormakaba_sites_disconnected";
24392
+ is_connected_account_error?: boolean | undefined;
24393
+ is_bridge_error?: boolean | undefined;
24185
24394
  } | {
24186
24395
  message: string;
24187
24396
  created_at: string;
@@ -32052,6 +32261,17 @@ type Routes = {
32052
32261
  is_bridge_error?: boolean | undefined;
32053
32262
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32054
32263
  error_code: 'bridge_disconnected';
32264
+ } | {
32265
+ /** Date and time at which Seam created the error. */
32266
+ created_at: string;
32267
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32268
+ message: string;
32269
+ /** Indicates whether the error is related specifically to the connected account. */
32270
+ is_connected_account_error?: boolean | undefined;
32271
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
32272
+ is_bridge_error?: boolean | undefined;
32273
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32274
+ error_code: 'dormakaba_sites_disconnected';
32055
32275
  })[];
32056
32276
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
32057
32277
  warnings: ({
@@ -32731,6 +32951,17 @@ type Routes = {
32731
32951
  is_bridge_error?: boolean | undefined;
32732
32952
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32733
32953
  error_code: 'bridge_disconnected';
32954
+ } | {
32955
+ /** Date and time at which Seam created the error. */
32956
+ created_at: string;
32957
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32958
+ message: string;
32959
+ /** Indicates whether the error is related specifically to the connected account. */
32960
+ is_connected_account_error?: boolean | undefined;
32961
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
32962
+ is_bridge_error?: boolean | undefined;
32963
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32964
+ error_code: 'dormakaba_sites_disconnected';
32734
32965
  })[];
32735
32966
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
32736
32967
  warnings: ({
@@ -35089,6 +35320,17 @@ type Routes = {
35089
35320
  is_bridge_error?: boolean | undefined;
35090
35321
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35091
35322
  error_code: 'bridge_disconnected';
35323
+ } | {
35324
+ /** Date and time at which Seam created the error. */
35325
+ created_at: string;
35326
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
35327
+ message: string;
35328
+ /** Indicates whether the error is related specifically to the connected account. */
35329
+ is_connected_account_error?: boolean | undefined;
35330
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
35331
+ is_bridge_error?: boolean | undefined;
35332
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35333
+ error_code: 'dormakaba_sites_disconnected';
35092
35334
  })[];
35093
35335
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
35094
35336
  warnings: ({
@@ -35814,6 +36056,17 @@ type Routes = {
35814
36056
  is_bridge_error?: boolean | undefined;
35815
36057
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35816
36058
  error_code: 'bridge_disconnected';
36059
+ } | {
36060
+ /** Date and time at which Seam created the error. */
36061
+ created_at: string;
36062
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
36063
+ message: string;
36064
+ /** Indicates whether the error is related specifically to the connected account. */
36065
+ is_connected_account_error?: boolean | undefined;
36066
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
36067
+ is_bridge_error?: boolean | undefined;
36068
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36069
+ error_code: 'dormakaba_sites_disconnected';
35817
36070
  })[];
35818
36071
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
35819
36072
  warnings: ({
@@ -36484,6 +36737,17 @@ type Routes = {
36484
36737
  is_bridge_error?: boolean | undefined;
36485
36738
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36486
36739
  error_code: 'bridge_disconnected';
36740
+ } | {
36741
+ /** Date and time at which Seam created the error. */
36742
+ created_at: string;
36743
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
36744
+ message: string;
36745
+ /** Indicates whether the error is related specifically to the connected account. */
36746
+ is_connected_account_error?: boolean | undefined;
36747
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
36748
+ is_bridge_error?: boolean | undefined;
36749
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36750
+ error_code: 'dormakaba_sites_disconnected';
36487
36751
  })[];
36488
36752
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
36489
36753
  warnings: ({
@@ -37131,6 +37395,17 @@ type Routes = {
37131
37395
  is_bridge_error?: boolean | undefined;
37132
37396
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37133
37397
  error_code: 'bridge_disconnected';
37398
+ } | {
37399
+ /** Date and time at which Seam created the error. */
37400
+ created_at: string;
37401
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
37402
+ message: string;
37403
+ /** Indicates whether the error is related specifically to the connected account. */
37404
+ is_connected_account_error?: boolean | undefined;
37405
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
37406
+ is_bridge_error?: boolean | undefined;
37407
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37408
+ error_code: 'dormakaba_sites_disconnected';
37134
37409
  })[];
37135
37410
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
37136
37411
  warnings: ({
@@ -37811,6 +38086,17 @@ type Routes = {
37811
38086
  is_bridge_error?: boolean | undefined;
37812
38087
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37813
38088
  error_code: 'bridge_disconnected';
38089
+ } | {
38090
+ /** Date and time at which Seam created the error. */
38091
+ created_at: string;
38092
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
38093
+ message: string;
38094
+ /** Indicates whether the error is related specifically to the connected account. */
38095
+ is_connected_account_error?: boolean | undefined;
38096
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
38097
+ is_bridge_error?: boolean | undefined;
38098
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
38099
+ error_code: 'dormakaba_sites_disconnected';
37814
38100
  })[];
37815
38101
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
37816
38102
  warnings: ({
@@ -40078,6 +40364,17 @@ type Routes = {
40078
40364
  is_bridge_error?: boolean | undefined;
40079
40365
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40080
40366
  error_code: 'bridge_disconnected';
40367
+ } | {
40368
+ /** Date and time at which Seam created the error. */
40369
+ created_at: string;
40370
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
40371
+ message: string;
40372
+ /** Indicates whether the error is related specifically to the connected account. */
40373
+ is_connected_account_error?: boolean | undefined;
40374
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
40375
+ is_bridge_error?: boolean | undefined;
40376
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40377
+ error_code: 'dormakaba_sites_disconnected';
40081
40378
  })[];
40082
40379
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
40083
40380
  warnings: ({
@@ -40644,6 +40941,17 @@ type Routes = {
40644
40941
  is_bridge_error?: boolean | undefined;
40645
40942
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40646
40943
  error_code: 'bridge_disconnected';
40944
+ } | {
40945
+ /** Date and time at which Seam created the error. */
40946
+ created_at: string;
40947
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
40948
+ message: string;
40949
+ /** Indicates whether the error is related specifically to the connected account. */
40950
+ is_connected_account_error?: boolean | undefined;
40951
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
40952
+ is_bridge_error?: boolean | undefined;
40953
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40954
+ error_code: 'dormakaba_sites_disconnected';
40647
40955
  })[];
40648
40956
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
40649
40957
  warnings: ({
@@ -44210,6 +44518,17 @@ type Routes = {
44210
44518
  is_bridge_error?: boolean | undefined;
44211
44519
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44212
44520
  error_code: 'bridge_disconnected';
44521
+ } | {
44522
+ /** Date and time at which Seam created the error. */
44523
+ created_at: string;
44524
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44525
+ message: string;
44526
+ /** Indicates whether the error is related specifically to the connected account. */
44527
+ is_connected_account_error?: boolean | undefined;
44528
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
44529
+ is_bridge_error?: boolean | undefined;
44530
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44531
+ error_code: 'dormakaba_sites_disconnected';
44213
44532
  })[];
44214
44533
  /** 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. */
44215
44534
  warnings: ({
@@ -44703,6 +45022,17 @@ type Routes = {
44703
45022
  site_user_subscription_limit: number;
44704
45023
  }[];
44705
45024
  };
45025
+ } | {
45026
+ /** Date and time at which Seam created the error. */
45027
+ created_at: string;
45028
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
45029
+ message: string;
45030
+ /** Indicates whether the error is related specifically to the connected account. */
45031
+ is_connected_account_error?: boolean | undefined;
45032
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
45033
+ is_bridge_error?: boolean | undefined;
45034
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
45035
+ error_code: 'dormakaba_sites_disconnected';
44706
45036
  })[];
44707
45037
  /** Warnings associated with the connected account. */
44708
45038
  warnings: ({
@@ -44768,6 +45098,13 @@ type Routes = {
44768
45098
  message: string;
44769
45099
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
44770
45100
  warning_code: 'setup_required';
45101
+ } | {
45102
+ /** Date and time at which Seam created the warning. */
45103
+ created_at: string;
45104
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
45105
+ message: string;
45106
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
45107
+ warning_code: 'dormakaba_sites_unapproved';
44771
45108
  })[];
44772
45109
  /** 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. */
44773
45110
  custom_metadata: {
@@ -50771,6 +51108,17 @@ type Routes = {
50771
51108
  is_bridge_error?: boolean | undefined;
50772
51109
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
50773
51110
  error_code: 'bridge_disconnected';
51111
+ } | {
51112
+ /** Date and time at which Seam created the error. */
51113
+ created_at: string;
51114
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
51115
+ message: string;
51116
+ /** Indicates whether the error is related specifically to the connected account. */
51117
+ is_connected_account_error?: boolean | undefined;
51118
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
51119
+ is_bridge_error?: boolean | undefined;
51120
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
51121
+ error_code: 'dormakaba_sites_disconnected';
50774
51122
  })[];
50775
51123
  /** 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. */
50776
51124
  warnings: ({
@@ -70106,7 +70454,7 @@ type Routes = {
70106
70454
  /** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
70107
70455
  customer_key?: string | undefined;
70108
70456
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
70109
- accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
70457
+ accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
70110
70458
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
70111
70459
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
70112
70460
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -70458,6 +70806,17 @@ type Routes = {
70458
70806
  site_user_subscription_limit: number;
70459
70807
  }[];
70460
70808
  };
70809
+ } | {
70810
+ /** Date and time at which Seam created the error. */
70811
+ created_at: string;
70812
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70813
+ message: string;
70814
+ /** Indicates whether the error is related specifically to the connected account. */
70815
+ is_connected_account_error?: boolean | undefined;
70816
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
70817
+ is_bridge_error?: boolean | undefined;
70818
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
70819
+ error_code: 'dormakaba_sites_disconnected';
70461
70820
  })[];
70462
70821
  /** Warnings associated with the connected account. */
70463
70822
  warnings: ({
@@ -70523,6 +70882,13 @@ type Routes = {
70523
70882
  message: string;
70524
70883
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70525
70884
  warning_code: 'setup_required';
70885
+ } | {
70886
+ /** Date and time at which Seam created the warning. */
70887
+ created_at: string;
70888
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
70889
+ message: string;
70890
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70891
+ warning_code: 'dormakaba_sites_unapproved';
70526
70892
  })[];
70527
70893
  /** 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. */
70528
70894
  custom_metadata: {
@@ -70648,6 +71014,17 @@ type Routes = {
70648
71014
  site_user_subscription_limit: number;
70649
71015
  }[];
70650
71016
  };
71017
+ } | {
71018
+ /** Date and time at which Seam created the error. */
71019
+ created_at: string;
71020
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71021
+ message: string;
71022
+ /** Indicates whether the error is related specifically to the connected account. */
71023
+ is_connected_account_error?: boolean | undefined;
71024
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
71025
+ is_bridge_error?: boolean | undefined;
71026
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
71027
+ error_code: 'dormakaba_sites_disconnected';
70651
71028
  })[];
70652
71029
  /** Warnings associated with the connected account. */
70653
71030
  warnings: ({
@@ -70713,6 +71090,13 @@ type Routes = {
70713
71090
  message: string;
70714
71091
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70715
71092
  warning_code: 'setup_required';
71093
+ } | {
71094
+ /** Date and time at which Seam created the warning. */
71095
+ created_at: string;
71096
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71097
+ message: string;
71098
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71099
+ warning_code: 'dormakaba_sites_unapproved';
70716
71100
  })[];
70717
71101
  /** 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. */
70718
71102
  custom_metadata: {
@@ -70872,6 +71256,17 @@ type Routes = {
70872
71256
  site_user_subscription_limit: number;
70873
71257
  }[];
70874
71258
  };
71259
+ } | {
71260
+ /** Date and time at which Seam created the error. */
71261
+ created_at: string;
71262
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71263
+ message: string;
71264
+ /** Indicates whether the error is related specifically to the connected account. */
71265
+ is_connected_account_error?: boolean | undefined;
71266
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
71267
+ is_bridge_error?: boolean | undefined;
71268
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
71269
+ error_code: 'dormakaba_sites_disconnected';
70875
71270
  })[];
70876
71271
  /** Warnings associated with the connected account. */
70877
71272
  warnings: ({
@@ -70937,6 +71332,13 @@ type Routes = {
70937
71332
  message: string;
70938
71333
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70939
71334
  warning_code: 'setup_required';
71335
+ } | {
71336
+ /** Date and time at which Seam created the warning. */
71337
+ created_at: string;
71338
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71339
+ message: string;
71340
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71341
+ warning_code: 'dormakaba_sites_unapproved';
70940
71342
  })[];
70941
71343
  /** 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. */
70942
71344
  custom_metadata: {
@@ -72939,6 +73341,17 @@ type Routes = {
72939
73341
  is_bridge_error?: boolean | undefined;
72940
73342
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
72941
73343
  error_code: 'bridge_disconnected';
73344
+ } | {
73345
+ /** Date and time at which Seam created the error. */
73346
+ created_at: string;
73347
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73348
+ message: string;
73349
+ /** Indicates whether the error is related specifically to the connected account. */
73350
+ is_connected_account_error?: boolean | undefined;
73351
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
73352
+ is_bridge_error?: boolean | undefined;
73353
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
73354
+ error_code: 'dormakaba_sites_disconnected';
72942
73355
  })[];
72943
73356
  /** 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. */
72944
73357
  warnings: ({
@@ -74350,6 +74763,17 @@ type Routes = {
74350
74763
  is_bridge_error?: boolean | undefined;
74351
74764
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74352
74765
  error_code: 'bridge_disconnected';
74766
+ } | {
74767
+ /** Date and time at which Seam created the error. */
74768
+ created_at: string;
74769
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
74770
+ message: string;
74771
+ /** Indicates whether the error is related specifically to the connected account. */
74772
+ is_connected_account_error?: boolean | undefined;
74773
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
74774
+ is_bridge_error?: boolean | undefined;
74775
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74776
+ error_code: 'dormakaba_sites_disconnected';
74353
74777
  })[];
74354
74778
  /** 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. */
74355
74779
  warnings: ({
@@ -74612,7 +75036,7 @@ type Routes = {
74612
75036
  formData: {};
74613
75037
  jsonResponse: {
74614
75038
  device_providers: {
74615
- device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
75039
+ device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
74616
75040
  display_name: string;
74617
75041
  image_url: string;
74618
75042
  provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
@@ -74930,6 +75354,17 @@ type Routes = {
74930
75354
  is_bridge_error?: boolean | undefined;
74931
75355
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74932
75356
  error_code: 'bridge_disconnected';
75357
+ } | {
75358
+ /** Date and time at which Seam created the error. */
75359
+ created_at: string;
75360
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75361
+ message: string;
75362
+ /** Indicates whether the error is related specifically to the connected account. */
75363
+ is_connected_account_error?: boolean | undefined;
75364
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
75365
+ is_bridge_error?: boolean | undefined;
75366
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75367
+ error_code: 'dormakaba_sites_disconnected';
74933
75368
  })[];
74934
75369
  /** 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. */
74935
75370
  warnings: ({
@@ -75435,6 +75870,17 @@ type Routes = {
75435
75870
  is_bridge_error?: boolean | undefined;
75436
75871
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75437
75872
  error_code: 'bridge_disconnected';
75873
+ } | {
75874
+ /** Date and time at which Seam created the error. */
75875
+ created_at: string;
75876
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75877
+ message: string;
75878
+ /** Indicates whether the error is related specifically to the connected account. */
75879
+ is_connected_account_error?: boolean | undefined;
75880
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
75881
+ is_bridge_error?: boolean | undefined;
75882
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75883
+ error_code: 'dormakaba_sites_disconnected';
75438
75884
  })[];
75439
75885
  /** 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. */
75440
75886
  warnings: ({
@@ -84333,6 +84779,17 @@ type Routes = {
84333
84779
  is_bridge_error?: boolean | undefined;
84334
84780
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
84335
84781
  error_code: 'bridge_disconnected';
84782
+ } | {
84783
+ /** Date and time at which Seam created the error. */
84784
+ created_at: string;
84785
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84786
+ message: string;
84787
+ /** Indicates whether the error is related specifically to the connected account. */
84788
+ is_connected_account_error?: boolean | undefined;
84789
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
84790
+ is_bridge_error?: boolean | undefined;
84791
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
84792
+ error_code: 'dormakaba_sites_disconnected';
84336
84793
  })[];
84337
84794
  /** 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. */
84338
84795
  warnings: ({
@@ -85694,6 +86151,17 @@ type Routes = {
85694
86151
  is_bridge_error?: boolean | undefined;
85695
86152
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
85696
86153
  error_code: 'bridge_disconnected';
86154
+ } | {
86155
+ /** Date and time at which Seam created the error. */
86156
+ created_at: string;
86157
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86158
+ message: string;
86159
+ /** Indicates whether the error is related specifically to the connected account. */
86160
+ is_connected_account_error?: boolean | undefined;
86161
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
86162
+ is_bridge_error?: boolean | undefined;
86163
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
86164
+ error_code: 'dormakaba_sites_disconnected';
85697
86165
  })[];
85698
86166
  /** 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. */
85699
86167
  warnings: ({
@@ -87105,6 +87573,17 @@ type Routes = {
87105
87573
  is_bridge_error?: boolean | undefined;
87106
87574
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87107
87575
  error_code: 'bridge_disconnected';
87576
+ } | {
87577
+ /** Date and time at which Seam created the error. */
87578
+ created_at: string;
87579
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
87580
+ message: string;
87581
+ /** Indicates whether the error is related specifically to the connected account. */
87582
+ is_connected_account_error?: boolean | undefined;
87583
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
87584
+ is_bridge_error?: boolean | undefined;
87585
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87586
+ error_code: 'dormakaba_sites_disconnected';
87108
87587
  })[];
87109
87588
  /** 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. */
87110
87589
  warnings: ({
@@ -88465,6 +88944,17 @@ type Routes = {
88465
88944
  is_bridge_error?: boolean | undefined;
88466
88945
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
88467
88946
  error_code: 'bridge_disconnected';
88947
+ } | {
88948
+ /** Date and time at which Seam created the error. */
88949
+ created_at: string;
88950
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88951
+ message: string;
88952
+ /** Indicates whether the error is related specifically to the connected account. */
88953
+ is_connected_account_error?: boolean | undefined;
88954
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
88955
+ is_bridge_error?: boolean | undefined;
88956
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
88957
+ error_code: 'dormakaba_sites_disconnected';
88468
88958
  })[];
88469
88959
  /** 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. */
88470
88960
  warnings: ({
@@ -96566,6 +97056,17 @@ type Routes = {
96566
97056
  is_bridge_error?: boolean | undefined;
96567
97057
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
96568
97058
  error_code: 'bridge_disconnected';
97059
+ } | {
97060
+ /** Date and time at which Seam created the error. */
97061
+ created_at: string;
97062
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97063
+ message: string;
97064
+ /** Indicates whether the error is related specifically to the connected account. */
97065
+ is_connected_account_error?: boolean | undefined;
97066
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
97067
+ is_bridge_error?: boolean | undefined;
97068
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97069
+ error_code: 'dormakaba_sites_disconnected';
96569
97070
  })[];
96570
97071
  /** 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. */
96571
97072
  warnings: ({
@@ -97926,6 +98427,17 @@ type Routes = {
97926
98427
  is_bridge_error?: boolean | undefined;
97927
98428
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97928
98429
  error_code: 'bridge_disconnected';
98430
+ } | {
98431
+ /** Date and time at which Seam created the error. */
98432
+ created_at: string;
98433
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98434
+ message: string;
98435
+ /** Indicates whether the error is related specifically to the connected account. */
98436
+ is_connected_account_error?: boolean | undefined;
98437
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
98438
+ is_bridge_error?: boolean | undefined;
98439
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
98440
+ error_code: 'dormakaba_sites_disconnected';
97929
98441
  })[];
97930
98442
  /** 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. */
97931
98443
  warnings: ({
@@ -112844,6 +113356,17 @@ type Routes = {
112844
113356
  is_bridge_error?: boolean | undefined;
112845
113357
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
112846
113358
  error_code: 'bridge_disconnected';
113359
+ } | {
113360
+ /** Date and time at which Seam created the error. */
113361
+ created_at: string;
113362
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113363
+ message: string;
113364
+ /** Indicates whether the error is related specifically to the connected account. */
113365
+ is_connected_account_error?: boolean | undefined;
113366
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
113367
+ is_bridge_error?: boolean | undefined;
113368
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113369
+ error_code: 'dormakaba_sites_disconnected';
112847
113370
  })[];
112848
113371
  /** 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. */
112849
113372
  warnings: ({
@@ -113337,6 +113860,17 @@ type Routes = {
113337
113860
  site_user_subscription_limit: number;
113338
113861
  }[];
113339
113862
  };
113863
+ } | {
113864
+ /** Date and time at which Seam created the error. */
113865
+ created_at: string;
113866
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113867
+ message: string;
113868
+ /** Indicates whether the error is related specifically to the connected account. */
113869
+ is_connected_account_error?: boolean | undefined;
113870
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
113871
+ is_bridge_error?: boolean | undefined;
113872
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113873
+ error_code: 'dormakaba_sites_disconnected';
113340
113874
  })[];
113341
113875
  /** Warnings associated with the connected account. */
113342
113876
  warnings: ({
@@ -113402,6 +113936,13 @@ type Routes = {
113402
113936
  message: string;
113403
113937
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113404
113938
  warning_code: 'setup_required';
113939
+ } | {
113940
+ /** Date and time at which Seam created the warning. */
113941
+ created_at: string;
113942
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113943
+ message: string;
113944
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113945
+ warning_code: 'dormakaba_sites_unapproved';
113405
113946
  })[];
113406
113947
  /** 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. */
113407
113948
  custom_metadata: {
@@ -120138,6 +120679,17 @@ type Routes = {
120138
120679
  is_bridge_error?: boolean | undefined;
120139
120680
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
120140
120681
  error_code: 'bridge_disconnected';
120682
+ } | {
120683
+ /** Date and time at which Seam created the error. */
120684
+ created_at: string;
120685
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
120686
+ message: string;
120687
+ /** Indicates whether the error is related specifically to the connected account. */
120688
+ is_connected_account_error?: boolean | undefined;
120689
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
120690
+ is_bridge_error?: boolean | undefined;
120691
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
120692
+ error_code: 'dormakaba_sites_disconnected';
120141
120693
  })[];
120142
120694
  /** 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. */
120143
120695
  warnings: ({
@@ -124907,6 +125459,17 @@ type Routes = {
124907
125459
  is_bridge_error?: boolean | undefined;
124908
125460
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
124909
125461
  error_code: 'bridge_disconnected';
125462
+ } | {
125463
+ /** Date and time at which Seam created the error. */
125464
+ created_at: string;
125465
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
125466
+ message: string;
125467
+ /** Indicates whether the error is related specifically to the connected account. */
125468
+ is_connected_account_error?: boolean | undefined;
125469
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
125470
+ is_bridge_error?: boolean | undefined;
125471
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
125472
+ error_code: 'dormakaba_sites_disconnected';
124910
125473
  })[];
124911
125474
  /** 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. */
124912
125475
  warnings: ({
@@ -126267,6 +126830,17 @@ type Routes = {
126267
126830
  is_bridge_error?: boolean | undefined;
126268
126831
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
126269
126832
  error_code: 'bridge_disconnected';
126833
+ } | {
126834
+ /** Date and time at which Seam created the error. */
126835
+ created_at: string;
126836
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
126837
+ message: string;
126838
+ /** Indicates whether the error is related specifically to the connected account. */
126839
+ is_connected_account_error?: boolean | undefined;
126840
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
126841
+ is_bridge_error?: boolean | undefined;
126842
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
126843
+ error_code: 'dormakaba_sites_disconnected';
126270
126844
  })[];
126271
126845
  /** 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. */
126272
126846
  warnings: ({
@@ -135265,6 +135839,17 @@ type Routes = {
135265
135839
  is_bridge_error?: boolean | undefined;
135266
135840
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
135267
135841
  error_code: 'bridge_disconnected';
135842
+ } | {
135843
+ /** Date and time at which Seam created the error. */
135844
+ created_at: string;
135845
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
135846
+ message: string;
135847
+ /** Indicates whether the error is related specifically to the connected account. */
135848
+ is_connected_account_error?: boolean | undefined;
135849
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
135850
+ is_bridge_error?: boolean | undefined;
135851
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
135852
+ error_code: 'dormakaba_sites_disconnected';
135268
135853
  })[];
135269
135854
  /** 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. */
135270
135855
  warnings: ({
@@ -136627,6 +137212,17 @@ type Routes = {
136627
137212
  is_bridge_error?: boolean | undefined;
136628
137213
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
136629
137214
  error_code: 'bridge_disconnected';
137215
+ } | {
137216
+ /** Date and time at which Seam created the error. */
137217
+ created_at: string;
137218
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
137219
+ message: string;
137220
+ /** Indicates whether the error is related specifically to the connected account. */
137221
+ is_connected_account_error?: boolean | undefined;
137222
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
137223
+ is_bridge_error?: boolean | undefined;
137224
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
137225
+ error_code: 'dormakaba_sites_disconnected';
136630
137226
  })[];
136631
137227
  /** 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. */
136632
137228
  warnings: ({
@@ -139192,6 +139788,17 @@ type Routes = {
139192
139788
  is_bridge_error?: boolean | undefined;
139193
139789
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
139194
139790
  error_code: 'bridge_disconnected';
139791
+ } | {
139792
+ /** Date and time at which Seam created the error. */
139793
+ created_at: string;
139794
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
139795
+ message: string;
139796
+ /** Indicates whether the error is related specifically to the connected account. */
139797
+ is_connected_account_error?: boolean | undefined;
139798
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
139799
+ is_bridge_error?: boolean | undefined;
139800
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
139801
+ error_code: 'dormakaba_sites_disconnected';
139195
139802
  })[];
139196
139803
  /** 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. */
139197
139804
  warnings: ({
@@ -142443,6 +143050,17 @@ type Routes = {
142443
143050
  is_bridge_error?: boolean | undefined;
142444
143051
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
142445
143052
  error_code: 'bridge_disconnected';
143053
+ } | {
143054
+ /** Date and time at which Seam created the error. */
143055
+ created_at: string;
143056
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143057
+ message: string;
143058
+ /** Indicates whether the error is related specifically to the connected account. */
143059
+ is_connected_account_error?: boolean | undefined;
143060
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
143061
+ is_bridge_error?: boolean | undefined;
143062
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
143063
+ error_code: 'dormakaba_sites_disconnected';
142446
143064
  })[];
142447
143065
  /** 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. */
142448
143066
  warnings: ({
@@ -143178,6 +143796,17 @@ type Routes = {
143178
143796
  site_user_subscription_limit: number;
143179
143797
  }[];
143180
143798
  };
143799
+ } | {
143800
+ /** Date and time at which Seam created the error. */
143801
+ created_at: string;
143802
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143803
+ message: string;
143804
+ /** Indicates whether the error is related specifically to the connected account. */
143805
+ is_connected_account_error?: boolean | undefined;
143806
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
143807
+ is_bridge_error?: boolean | undefined;
143808
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
143809
+ error_code: 'dormakaba_sites_disconnected';
143181
143810
  })[];
143182
143811
  /** Warnings associated with the connected account. */
143183
143812
  warnings: ({
@@ -143243,6 +143872,13 @@ type Routes = {
143243
143872
  message: string;
143244
143873
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143245
143874
  warning_code: 'setup_required';
143875
+ } | {
143876
+ /** Date and time at which Seam created the warning. */
143877
+ created_at: string;
143878
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143879
+ message: string;
143880
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143881
+ warning_code: 'dormakaba_sites_unapproved';
143246
143882
  })[];
143247
143883
  /** 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. */
143248
143884
  custom_metadata: {
@@ -146710,6 +147346,17 @@ type Routes = {
146710
147346
  is_bridge_error?: boolean | undefined;
146711
147347
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
146712
147348
  error_code: 'bridge_disconnected';
147349
+ } | {
147350
+ /** Date and time at which Seam created the error. */
147351
+ created_at: string;
147352
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147353
+ message: string;
147354
+ /** Indicates whether the error is related specifically to the connected account. */
147355
+ is_connected_account_error?: boolean | undefined;
147356
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
147357
+ is_bridge_error?: boolean | undefined;
147358
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147359
+ error_code: 'dormakaba_sites_disconnected';
146713
147360
  })[];
146714
147361
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
146715
147362
  warnings: ({
@@ -147260,6 +147907,17 @@ type Routes = {
147260
147907
  is_bridge_error?: boolean | undefined;
147261
147908
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147262
147909
  error_code: 'bridge_disconnected';
147910
+ } | {
147911
+ /** Date and time at which Seam created the error. */
147912
+ created_at: string;
147913
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147914
+ message: string;
147915
+ /** Indicates whether the error is related specifically to the connected account. */
147916
+ is_connected_account_error?: boolean | undefined;
147917
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
147918
+ is_bridge_error?: boolean | undefined;
147919
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147920
+ error_code: 'dormakaba_sites_disconnected';
147263
147921
  })[];
147264
147922
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
147265
147923
  warnings: ({