@seamapi/types 1.891.0 → 1.893.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist/connect.cjs +191 -6
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +660 -2
  4. package/dist/index.cjs +191 -6
  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;
@@ -20486,6 +20663,7 @@ declare const DEVICE_PROVIDERS: {
20486
20663
  readonly KEYINCODE: "keyincode";
20487
20664
  readonly DORMAKABA_AMBIANCE: "dormakaba_ambiance";
20488
20665
  readonly ULTRALOQ: "ultraloq";
20666
+ readonly DUSAW: "dusaw";
20489
20667
  readonly SIFELY: "sifely";
20490
20668
  readonly RING: "ring";
20491
20669
  readonly ICAL: "ical";
@@ -23326,6 +23504,25 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23326
23504
  };
23327
23505
  is_connected_account_error?: boolean | undefined;
23328
23506
  is_bridge_error?: boolean | undefined;
23507
+ }> | z.ZodObject<{
23508
+ created_at: z.ZodString;
23509
+ message: z.ZodString;
23510
+ is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
23511
+ is_bridge_error: z.ZodOptional<z.ZodBoolean>;
23512
+ } & {
23513
+ error_code: z.ZodLiteral<"dormakaba_sites_disconnected">;
23514
+ }, "strip", z.ZodTypeAny, {
23515
+ message: string;
23516
+ created_at: string;
23517
+ error_code: "dormakaba_sites_disconnected";
23518
+ is_connected_account_error?: boolean | undefined;
23519
+ is_bridge_error?: boolean | undefined;
23520
+ }, {
23521
+ message: string;
23522
+ created_at: string;
23523
+ error_code: "dormakaba_sites_disconnected";
23524
+ is_connected_account_error?: boolean | undefined;
23525
+ is_bridge_error?: boolean | undefined;
23329
23526
  }>)[]]>, "many">;
23330
23527
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
23331
23528
  message: z.ZodString;
@@ -23912,6 +24109,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23912
24109
  };
23913
24110
  is_connected_account_error?: boolean | undefined;
23914
24111
  is_bridge_error?: boolean | undefined;
24112
+ } | {
24113
+ message: string;
24114
+ created_at: string;
24115
+ error_code: "dormakaba_sites_disconnected";
24116
+ is_connected_account_error?: boolean | undefined;
24117
+ is_bridge_error?: boolean | undefined;
23915
24118
  } | {
23916
24119
  message: string;
23917
24120
  created_at: string;
@@ -24181,6 +24384,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
24181
24384
  };
24182
24385
  is_connected_account_error?: boolean | undefined;
24183
24386
  is_bridge_error?: boolean | undefined;
24387
+ } | {
24388
+ message: string;
24389
+ created_at: string;
24390
+ error_code: "dormakaba_sites_disconnected";
24391
+ is_connected_account_error?: boolean | undefined;
24392
+ is_bridge_error?: boolean | undefined;
24184
24393
  } | {
24185
24394
  message: string;
24186
24395
  created_at: string;
@@ -32051,6 +32260,17 @@ type Routes = {
32051
32260
  is_bridge_error?: boolean | undefined;
32052
32261
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32053
32262
  error_code: 'bridge_disconnected';
32263
+ } | {
32264
+ /** Date and time at which Seam created the error. */
32265
+ created_at: string;
32266
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32267
+ message: string;
32268
+ /** Indicates whether the error is related specifically to the connected account. */
32269
+ is_connected_account_error?: boolean | undefined;
32270
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
32271
+ is_bridge_error?: boolean | undefined;
32272
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32273
+ error_code: 'dormakaba_sites_disconnected';
32054
32274
  })[];
32055
32275
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
32056
32276
  warnings: ({
@@ -32730,6 +32950,17 @@ type Routes = {
32730
32950
  is_bridge_error?: boolean | undefined;
32731
32951
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32732
32952
  error_code: 'bridge_disconnected';
32953
+ } | {
32954
+ /** Date and time at which Seam created the error. */
32955
+ created_at: string;
32956
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32957
+ message: string;
32958
+ /** Indicates whether the error is related specifically to the connected account. */
32959
+ is_connected_account_error?: boolean | undefined;
32960
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
32961
+ is_bridge_error?: boolean | undefined;
32962
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
32963
+ error_code: 'dormakaba_sites_disconnected';
32733
32964
  })[];
32734
32965
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
32735
32966
  warnings: ({
@@ -35088,6 +35319,17 @@ type Routes = {
35088
35319
  is_bridge_error?: boolean | undefined;
35089
35320
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35090
35321
  error_code: 'bridge_disconnected';
35322
+ } | {
35323
+ /** Date and time at which Seam created the error. */
35324
+ created_at: string;
35325
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
35326
+ message: string;
35327
+ /** Indicates whether the error is related specifically to the connected account. */
35328
+ is_connected_account_error?: boolean | undefined;
35329
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
35330
+ is_bridge_error?: boolean | undefined;
35331
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35332
+ error_code: 'dormakaba_sites_disconnected';
35091
35333
  })[];
35092
35334
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
35093
35335
  warnings: ({
@@ -35813,6 +36055,17 @@ type Routes = {
35813
36055
  is_bridge_error?: boolean | undefined;
35814
36056
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35815
36057
  error_code: 'bridge_disconnected';
36058
+ } | {
36059
+ /** Date and time at which Seam created the error. */
36060
+ created_at: string;
36061
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
36062
+ message: string;
36063
+ /** Indicates whether the error is related specifically to the connected account. */
36064
+ is_connected_account_error?: boolean | undefined;
36065
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
36066
+ is_bridge_error?: boolean | undefined;
36067
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36068
+ error_code: 'dormakaba_sites_disconnected';
35816
36069
  })[];
35817
36070
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
35818
36071
  warnings: ({
@@ -36483,6 +36736,17 @@ type Routes = {
36483
36736
  is_bridge_error?: boolean | undefined;
36484
36737
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36485
36738
  error_code: 'bridge_disconnected';
36739
+ } | {
36740
+ /** Date and time at which Seam created the error. */
36741
+ created_at: string;
36742
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
36743
+ message: string;
36744
+ /** Indicates whether the error is related specifically to the connected account. */
36745
+ is_connected_account_error?: boolean | undefined;
36746
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
36747
+ is_bridge_error?: boolean | undefined;
36748
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36749
+ error_code: 'dormakaba_sites_disconnected';
36486
36750
  })[];
36487
36751
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
36488
36752
  warnings: ({
@@ -37130,6 +37394,17 @@ type Routes = {
37130
37394
  is_bridge_error?: boolean | undefined;
37131
37395
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37132
37396
  error_code: 'bridge_disconnected';
37397
+ } | {
37398
+ /** Date and time at which Seam created the error. */
37399
+ created_at: string;
37400
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
37401
+ message: string;
37402
+ /** Indicates whether the error is related specifically to the connected account. */
37403
+ is_connected_account_error?: boolean | undefined;
37404
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
37405
+ is_bridge_error?: boolean | undefined;
37406
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37407
+ error_code: 'dormakaba_sites_disconnected';
37133
37408
  })[];
37134
37409
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
37135
37410
  warnings: ({
@@ -37810,6 +38085,17 @@ type Routes = {
37810
38085
  is_bridge_error?: boolean | undefined;
37811
38086
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
37812
38087
  error_code: 'bridge_disconnected';
38088
+ } | {
38089
+ /** Date and time at which Seam created the error. */
38090
+ created_at: string;
38091
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
38092
+ message: string;
38093
+ /** Indicates whether the error is related specifically to the connected account. */
38094
+ is_connected_account_error?: boolean | undefined;
38095
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
38096
+ is_bridge_error?: boolean | undefined;
38097
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
38098
+ error_code: 'dormakaba_sites_disconnected';
37813
38099
  })[];
37814
38100
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
37815
38101
  warnings: ({
@@ -40077,6 +40363,17 @@ type Routes = {
40077
40363
  is_bridge_error?: boolean | undefined;
40078
40364
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40079
40365
  error_code: 'bridge_disconnected';
40366
+ } | {
40367
+ /** Date and time at which Seam created the error. */
40368
+ created_at: string;
40369
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
40370
+ message: string;
40371
+ /** Indicates whether the error is related specifically to the connected account. */
40372
+ is_connected_account_error?: boolean | undefined;
40373
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
40374
+ is_bridge_error?: boolean | undefined;
40375
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40376
+ error_code: 'dormakaba_sites_disconnected';
40080
40377
  })[];
40081
40378
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
40082
40379
  warnings: ({
@@ -40643,6 +40940,17 @@ type Routes = {
40643
40940
  is_bridge_error?: boolean | undefined;
40644
40941
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40645
40942
  error_code: 'bridge_disconnected';
40943
+ } | {
40944
+ /** Date and time at which Seam created the error. */
40945
+ created_at: string;
40946
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
40947
+ message: string;
40948
+ /** Indicates whether the error is related specifically to the connected account. */
40949
+ is_connected_account_error?: boolean | undefined;
40950
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
40951
+ is_bridge_error?: boolean | undefined;
40952
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
40953
+ error_code: 'dormakaba_sites_disconnected';
40646
40954
  })[];
40647
40955
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
40648
40956
  warnings: ({
@@ -44209,6 +44517,17 @@ type Routes = {
44209
44517
  is_bridge_error?: boolean | undefined;
44210
44518
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44211
44519
  error_code: 'bridge_disconnected';
44520
+ } | {
44521
+ /** Date and time at which Seam created the error. */
44522
+ created_at: string;
44523
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44524
+ message: string;
44525
+ /** Indicates whether the error is related specifically to the connected account. */
44526
+ is_connected_account_error?: boolean | undefined;
44527
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
44528
+ is_bridge_error?: boolean | undefined;
44529
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44530
+ error_code: 'dormakaba_sites_disconnected';
44212
44531
  })[];
44213
44532
  /** 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. */
44214
44533
  warnings: ({
@@ -44702,6 +45021,17 @@ type Routes = {
44702
45021
  site_user_subscription_limit: number;
44703
45022
  }[];
44704
45023
  };
45024
+ } | {
45025
+ /** Date and time at which Seam created the error. */
45026
+ created_at: string;
45027
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
45028
+ message: string;
45029
+ /** Indicates whether the error is related specifically to the connected account. */
45030
+ is_connected_account_error?: boolean | undefined;
45031
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
45032
+ is_bridge_error?: boolean | undefined;
45033
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
45034
+ error_code: 'dormakaba_sites_disconnected';
44705
45035
  })[];
44706
45036
  /** Warnings associated with the connected account. */
44707
45037
  warnings: ({
@@ -44767,6 +45097,13 @@ type Routes = {
44767
45097
  message: string;
44768
45098
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
44769
45099
  warning_code: 'setup_required';
45100
+ } | {
45101
+ /** Date and time at which Seam created the warning. */
45102
+ created_at: string;
45103
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
45104
+ message: string;
45105
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
45106
+ warning_code: 'dormakaba_sites_unapproved';
44770
45107
  })[];
44771
45108
  /** 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. */
44772
45109
  custom_metadata: {
@@ -50770,6 +51107,17 @@ type Routes = {
50770
51107
  is_bridge_error?: boolean | undefined;
50771
51108
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
50772
51109
  error_code: 'bridge_disconnected';
51110
+ } | {
51111
+ /** Date and time at which Seam created the error. */
51112
+ created_at: string;
51113
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
51114
+ message: string;
51115
+ /** Indicates whether the error is related specifically to the connected account. */
51116
+ is_connected_account_error?: boolean | undefined;
51117
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
51118
+ is_bridge_error?: boolean | undefined;
51119
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
51120
+ error_code: 'dormakaba_sites_disconnected';
50773
51121
  })[];
50774
51122
  /** 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. */
50775
51123
  warnings: ({
@@ -70105,7 +70453,7 @@ type Routes = {
70105
70453
  /** 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. */
70106
70454
  customer_key?: string | undefined;
70107
70455
  /** 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. */
70108
- 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' | 'sifely' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
70456
+ 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;
70109
70457
  /** 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. */
70110
70458
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
70111
70459
  /** 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). */
@@ -70457,6 +70805,17 @@ type Routes = {
70457
70805
  site_user_subscription_limit: number;
70458
70806
  }[];
70459
70807
  };
70808
+ } | {
70809
+ /** Date and time at which Seam created the error. */
70810
+ created_at: string;
70811
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70812
+ message: string;
70813
+ /** Indicates whether the error is related specifically to the connected account. */
70814
+ is_connected_account_error?: boolean | undefined;
70815
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
70816
+ is_bridge_error?: boolean | undefined;
70817
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
70818
+ error_code: 'dormakaba_sites_disconnected';
70460
70819
  })[];
70461
70820
  /** Warnings associated with the connected account. */
70462
70821
  warnings: ({
@@ -70522,6 +70881,13 @@ type Routes = {
70522
70881
  message: string;
70523
70882
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70524
70883
  warning_code: 'setup_required';
70884
+ } | {
70885
+ /** Date and time at which Seam created the warning. */
70886
+ created_at: string;
70887
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
70888
+ message: string;
70889
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70890
+ warning_code: 'dormakaba_sites_unapproved';
70525
70891
  })[];
70526
70892
  /** 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. */
70527
70893
  custom_metadata: {
@@ -70647,6 +71013,17 @@ type Routes = {
70647
71013
  site_user_subscription_limit: number;
70648
71014
  }[];
70649
71015
  };
71016
+ } | {
71017
+ /** Date and time at which Seam created the error. */
71018
+ created_at: string;
71019
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71020
+ message: string;
71021
+ /** Indicates whether the error is related specifically to the connected account. */
71022
+ is_connected_account_error?: boolean | undefined;
71023
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
71024
+ is_bridge_error?: boolean | undefined;
71025
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
71026
+ error_code: 'dormakaba_sites_disconnected';
70650
71027
  })[];
70651
71028
  /** Warnings associated with the connected account. */
70652
71029
  warnings: ({
@@ -70712,6 +71089,13 @@ type Routes = {
70712
71089
  message: string;
70713
71090
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70714
71091
  warning_code: 'setup_required';
71092
+ } | {
71093
+ /** Date and time at which Seam created the warning. */
71094
+ created_at: string;
71095
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71096
+ message: string;
71097
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71098
+ warning_code: 'dormakaba_sites_unapproved';
70715
71099
  })[];
70716
71100
  /** 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. */
70717
71101
  custom_metadata: {
@@ -70871,6 +71255,17 @@ type Routes = {
70871
71255
  site_user_subscription_limit: number;
70872
71256
  }[];
70873
71257
  };
71258
+ } | {
71259
+ /** Date and time at which Seam created the error. */
71260
+ created_at: string;
71261
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71262
+ message: string;
71263
+ /** Indicates whether the error is related specifically to the connected account. */
71264
+ is_connected_account_error?: boolean | undefined;
71265
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
71266
+ is_bridge_error?: boolean | undefined;
71267
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
71268
+ error_code: 'dormakaba_sites_disconnected';
70874
71269
  })[];
70875
71270
  /** Warnings associated with the connected account. */
70876
71271
  warnings: ({
@@ -70936,6 +71331,13 @@ type Routes = {
70936
71331
  message: string;
70937
71332
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
70938
71333
  warning_code: 'setup_required';
71334
+ } | {
71335
+ /** Date and time at which Seam created the warning. */
71336
+ created_at: string;
71337
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
71338
+ message: string;
71339
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
71340
+ warning_code: 'dormakaba_sites_unapproved';
70939
71341
  })[];
70940
71342
  /** 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. */
70941
71343
  custom_metadata: {
@@ -72938,6 +73340,17 @@ type Routes = {
72938
73340
  is_bridge_error?: boolean | undefined;
72939
73341
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
72940
73342
  error_code: 'bridge_disconnected';
73343
+ } | {
73344
+ /** Date and time at which Seam created the error. */
73345
+ created_at: string;
73346
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73347
+ message: string;
73348
+ /** Indicates whether the error is related specifically to the connected account. */
73349
+ is_connected_account_error?: boolean | undefined;
73350
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
73351
+ is_bridge_error?: boolean | undefined;
73352
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
73353
+ error_code: 'dormakaba_sites_disconnected';
72941
73354
  })[];
72942
73355
  /** 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. */
72943
73356
  warnings: ({
@@ -74349,6 +74762,17 @@ type Routes = {
74349
74762
  is_bridge_error?: boolean | undefined;
74350
74763
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74351
74764
  error_code: 'bridge_disconnected';
74765
+ } | {
74766
+ /** Date and time at which Seam created the error. */
74767
+ created_at: string;
74768
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
74769
+ message: string;
74770
+ /** Indicates whether the error is related specifically to the connected account. */
74771
+ is_connected_account_error?: boolean | undefined;
74772
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
74773
+ is_bridge_error?: boolean | undefined;
74774
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74775
+ error_code: 'dormakaba_sites_disconnected';
74352
74776
  })[];
74353
74777
  /** 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. */
74354
74778
  warnings: ({
@@ -74611,7 +75035,7 @@ type Routes = {
74611
75035
  formData: {};
74612
75036
  jsonResponse: {
74613
75037
  device_providers: {
74614
- 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' | 'sifely' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
75038
+ 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';
74615
75039
  display_name: string;
74616
75040
  image_url: string;
74617
75041
  provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
@@ -74929,6 +75353,17 @@ type Routes = {
74929
75353
  is_bridge_error?: boolean | undefined;
74930
75354
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74931
75355
  error_code: 'bridge_disconnected';
75356
+ } | {
75357
+ /** Date and time at which Seam created the error. */
75358
+ created_at: string;
75359
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75360
+ message: string;
75361
+ /** Indicates whether the error is related specifically to the connected account. */
75362
+ is_connected_account_error?: boolean | undefined;
75363
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
75364
+ is_bridge_error?: boolean | undefined;
75365
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75366
+ error_code: 'dormakaba_sites_disconnected';
74932
75367
  })[];
74933
75368
  /** 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. */
74934
75369
  warnings: ({
@@ -75434,6 +75869,17 @@ type Routes = {
75434
75869
  is_bridge_error?: boolean | undefined;
75435
75870
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75436
75871
  error_code: 'bridge_disconnected';
75872
+ } | {
75873
+ /** Date and time at which Seam created the error. */
75874
+ created_at: string;
75875
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75876
+ message: string;
75877
+ /** Indicates whether the error is related specifically to the connected account. */
75878
+ is_connected_account_error?: boolean | undefined;
75879
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
75880
+ is_bridge_error?: boolean | undefined;
75881
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75882
+ error_code: 'dormakaba_sites_disconnected';
75437
75883
  })[];
75438
75884
  /** 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. */
75439
75885
  warnings: ({
@@ -84332,6 +84778,17 @@ type Routes = {
84332
84778
  is_bridge_error?: boolean | undefined;
84333
84779
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
84334
84780
  error_code: 'bridge_disconnected';
84781
+ } | {
84782
+ /** Date and time at which Seam created the error. */
84783
+ created_at: string;
84784
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84785
+ message: string;
84786
+ /** Indicates whether the error is related specifically to the connected account. */
84787
+ is_connected_account_error?: boolean | undefined;
84788
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
84789
+ is_bridge_error?: boolean | undefined;
84790
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
84791
+ error_code: 'dormakaba_sites_disconnected';
84335
84792
  })[];
84336
84793
  /** 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. */
84337
84794
  warnings: ({
@@ -85693,6 +86150,17 @@ type Routes = {
85693
86150
  is_bridge_error?: boolean | undefined;
85694
86151
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
85695
86152
  error_code: 'bridge_disconnected';
86153
+ } | {
86154
+ /** Date and time at which Seam created the error. */
86155
+ created_at: string;
86156
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86157
+ message: string;
86158
+ /** Indicates whether the error is related specifically to the connected account. */
86159
+ is_connected_account_error?: boolean | undefined;
86160
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
86161
+ is_bridge_error?: boolean | undefined;
86162
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
86163
+ error_code: 'dormakaba_sites_disconnected';
85696
86164
  })[];
85697
86165
  /** 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. */
85698
86166
  warnings: ({
@@ -87104,6 +87572,17 @@ type Routes = {
87104
87572
  is_bridge_error?: boolean | undefined;
87105
87573
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87106
87574
  error_code: 'bridge_disconnected';
87575
+ } | {
87576
+ /** Date and time at which Seam created the error. */
87577
+ created_at: string;
87578
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
87579
+ message: string;
87580
+ /** Indicates whether the error is related specifically to the connected account. */
87581
+ is_connected_account_error?: boolean | undefined;
87582
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
87583
+ is_bridge_error?: boolean | undefined;
87584
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87585
+ error_code: 'dormakaba_sites_disconnected';
87107
87586
  })[];
87108
87587
  /** 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. */
87109
87588
  warnings: ({
@@ -88464,6 +88943,17 @@ type Routes = {
88464
88943
  is_bridge_error?: boolean | undefined;
88465
88944
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
88466
88945
  error_code: 'bridge_disconnected';
88946
+ } | {
88947
+ /** Date and time at which Seam created the error. */
88948
+ created_at: string;
88949
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88950
+ message: string;
88951
+ /** Indicates whether the error is related specifically to the connected account. */
88952
+ is_connected_account_error?: boolean | undefined;
88953
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
88954
+ is_bridge_error?: boolean | undefined;
88955
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
88956
+ error_code: 'dormakaba_sites_disconnected';
88467
88957
  })[];
88468
88958
  /** 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. */
88469
88959
  warnings: ({
@@ -96565,6 +97055,17 @@ type Routes = {
96565
97055
  is_bridge_error?: boolean | undefined;
96566
97056
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
96567
97057
  error_code: 'bridge_disconnected';
97058
+ } | {
97059
+ /** Date and time at which Seam created the error. */
97060
+ created_at: string;
97061
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97062
+ message: string;
97063
+ /** Indicates whether the error is related specifically to the connected account. */
97064
+ is_connected_account_error?: boolean | undefined;
97065
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
97066
+ is_bridge_error?: boolean | undefined;
97067
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97068
+ error_code: 'dormakaba_sites_disconnected';
96568
97069
  })[];
96569
97070
  /** 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. */
96570
97071
  warnings: ({
@@ -97925,6 +98426,17 @@ type Routes = {
97925
98426
  is_bridge_error?: boolean | undefined;
97926
98427
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97927
98428
  error_code: 'bridge_disconnected';
98429
+ } | {
98430
+ /** Date and time at which Seam created the error. */
98431
+ created_at: string;
98432
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98433
+ message: string;
98434
+ /** Indicates whether the error is related specifically to the connected account. */
98435
+ is_connected_account_error?: boolean | undefined;
98436
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
98437
+ is_bridge_error?: boolean | undefined;
98438
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
98439
+ error_code: 'dormakaba_sites_disconnected';
97928
98440
  })[];
97929
98441
  /** 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. */
97930
98442
  warnings: ({
@@ -112843,6 +113355,17 @@ type Routes = {
112843
113355
  is_bridge_error?: boolean | undefined;
112844
113356
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
112845
113357
  error_code: 'bridge_disconnected';
113358
+ } | {
113359
+ /** Date and time at which Seam created the error. */
113360
+ created_at: string;
113361
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113362
+ message: string;
113363
+ /** Indicates whether the error is related specifically to the connected account. */
113364
+ is_connected_account_error?: boolean | undefined;
113365
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
113366
+ is_bridge_error?: boolean | undefined;
113367
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113368
+ error_code: 'dormakaba_sites_disconnected';
112846
113369
  })[];
112847
113370
  /** 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. */
112848
113371
  warnings: ({
@@ -113336,6 +113859,17 @@ type Routes = {
113336
113859
  site_user_subscription_limit: number;
113337
113860
  }[];
113338
113861
  };
113862
+ } | {
113863
+ /** Date and time at which Seam created the error. */
113864
+ created_at: string;
113865
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113866
+ message: string;
113867
+ /** Indicates whether the error is related specifically to the connected account. */
113868
+ is_connected_account_error?: boolean | undefined;
113869
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
113870
+ is_bridge_error?: boolean | undefined;
113871
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113872
+ error_code: 'dormakaba_sites_disconnected';
113339
113873
  })[];
113340
113874
  /** Warnings associated with the connected account. */
113341
113875
  warnings: ({
@@ -113401,6 +113935,13 @@ type Routes = {
113401
113935
  message: string;
113402
113936
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113403
113937
  warning_code: 'setup_required';
113938
+ } | {
113939
+ /** Date and time at which Seam created the warning. */
113940
+ created_at: string;
113941
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113942
+ message: string;
113943
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113944
+ warning_code: 'dormakaba_sites_unapproved';
113404
113945
  })[];
113405
113946
  /** 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. */
113406
113947
  custom_metadata: {
@@ -120137,6 +120678,17 @@ type Routes = {
120137
120678
  is_bridge_error?: boolean | undefined;
120138
120679
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
120139
120680
  error_code: 'bridge_disconnected';
120681
+ } | {
120682
+ /** Date and time at which Seam created the error. */
120683
+ created_at: string;
120684
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
120685
+ message: string;
120686
+ /** Indicates whether the error is related specifically to the connected account. */
120687
+ is_connected_account_error?: boolean | undefined;
120688
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
120689
+ is_bridge_error?: boolean | undefined;
120690
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
120691
+ error_code: 'dormakaba_sites_disconnected';
120140
120692
  })[];
120141
120693
  /** 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. */
120142
120694
  warnings: ({
@@ -124906,6 +125458,17 @@ type Routes = {
124906
125458
  is_bridge_error?: boolean | undefined;
124907
125459
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
124908
125460
  error_code: 'bridge_disconnected';
125461
+ } | {
125462
+ /** Date and time at which Seam created the error. */
125463
+ created_at: string;
125464
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
125465
+ message: string;
125466
+ /** Indicates whether the error is related specifically to the connected account. */
125467
+ is_connected_account_error?: boolean | undefined;
125468
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
125469
+ is_bridge_error?: boolean | undefined;
125470
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
125471
+ error_code: 'dormakaba_sites_disconnected';
124909
125472
  })[];
124910
125473
  /** 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. */
124911
125474
  warnings: ({
@@ -126266,6 +126829,17 @@ type Routes = {
126266
126829
  is_bridge_error?: boolean | undefined;
126267
126830
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
126268
126831
  error_code: 'bridge_disconnected';
126832
+ } | {
126833
+ /** Date and time at which Seam created the error. */
126834
+ created_at: string;
126835
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
126836
+ message: string;
126837
+ /** Indicates whether the error is related specifically to the connected account. */
126838
+ is_connected_account_error?: boolean | undefined;
126839
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
126840
+ is_bridge_error?: boolean | undefined;
126841
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
126842
+ error_code: 'dormakaba_sites_disconnected';
126269
126843
  })[];
126270
126844
  /** 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. */
126271
126845
  warnings: ({
@@ -135264,6 +135838,17 @@ type Routes = {
135264
135838
  is_bridge_error?: boolean | undefined;
135265
135839
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
135266
135840
  error_code: 'bridge_disconnected';
135841
+ } | {
135842
+ /** Date and time at which Seam created the error. */
135843
+ created_at: string;
135844
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
135845
+ message: string;
135846
+ /** Indicates whether the error is related specifically to the connected account. */
135847
+ is_connected_account_error?: boolean | undefined;
135848
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
135849
+ is_bridge_error?: boolean | undefined;
135850
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
135851
+ error_code: 'dormakaba_sites_disconnected';
135267
135852
  })[];
135268
135853
  /** 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. */
135269
135854
  warnings: ({
@@ -136626,6 +137211,17 @@ type Routes = {
136626
137211
  is_bridge_error?: boolean | undefined;
136627
137212
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
136628
137213
  error_code: 'bridge_disconnected';
137214
+ } | {
137215
+ /** Date and time at which Seam created the error. */
137216
+ created_at: string;
137217
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
137218
+ message: string;
137219
+ /** Indicates whether the error is related specifically to the connected account. */
137220
+ is_connected_account_error?: boolean | undefined;
137221
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
137222
+ is_bridge_error?: boolean | undefined;
137223
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
137224
+ error_code: 'dormakaba_sites_disconnected';
136629
137225
  })[];
136630
137226
  /** 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. */
136631
137227
  warnings: ({
@@ -139191,6 +139787,17 @@ type Routes = {
139191
139787
  is_bridge_error?: boolean | undefined;
139192
139788
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
139193
139789
  error_code: 'bridge_disconnected';
139790
+ } | {
139791
+ /** Date and time at which Seam created the error. */
139792
+ created_at: string;
139793
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
139794
+ message: string;
139795
+ /** Indicates whether the error is related specifically to the connected account. */
139796
+ is_connected_account_error?: boolean | undefined;
139797
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
139798
+ is_bridge_error?: boolean | undefined;
139799
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
139800
+ error_code: 'dormakaba_sites_disconnected';
139194
139801
  })[];
139195
139802
  /** 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. */
139196
139803
  warnings: ({
@@ -142442,6 +143049,17 @@ type Routes = {
142442
143049
  is_bridge_error?: boolean | undefined;
142443
143050
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
142444
143051
  error_code: 'bridge_disconnected';
143052
+ } | {
143053
+ /** Date and time at which Seam created the error. */
143054
+ created_at: string;
143055
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143056
+ message: string;
143057
+ /** Indicates whether the error is related specifically to the connected account. */
143058
+ is_connected_account_error?: boolean | undefined;
143059
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
143060
+ is_bridge_error?: boolean | undefined;
143061
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
143062
+ error_code: 'dormakaba_sites_disconnected';
142445
143063
  })[];
142446
143064
  /** 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. */
142447
143065
  warnings: ({
@@ -143177,6 +143795,17 @@ type Routes = {
143177
143795
  site_user_subscription_limit: number;
143178
143796
  }[];
143179
143797
  };
143798
+ } | {
143799
+ /** Date and time at which Seam created the error. */
143800
+ created_at: string;
143801
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143802
+ message: string;
143803
+ /** Indicates whether the error is related specifically to the connected account. */
143804
+ is_connected_account_error?: boolean | undefined;
143805
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
143806
+ is_bridge_error?: boolean | undefined;
143807
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
143808
+ error_code: 'dormakaba_sites_disconnected';
143180
143809
  })[];
143181
143810
  /** Warnings associated with the connected account. */
143182
143811
  warnings: ({
@@ -143242,6 +143871,13 @@ type Routes = {
143242
143871
  message: string;
143243
143872
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143244
143873
  warning_code: 'setup_required';
143874
+ } | {
143875
+ /** Date and time at which Seam created the warning. */
143876
+ created_at: string;
143877
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
143878
+ message: string;
143879
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
143880
+ warning_code: 'dormakaba_sites_unapproved';
143245
143881
  })[];
143246
143882
  /** 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. */
143247
143883
  custom_metadata: {
@@ -146709,6 +147345,17 @@ type Routes = {
146709
147345
  is_bridge_error?: boolean | undefined;
146710
147346
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
146711
147347
  error_code: 'bridge_disconnected';
147348
+ } | {
147349
+ /** Date and time at which Seam created the error. */
147350
+ created_at: string;
147351
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147352
+ message: string;
147353
+ /** Indicates whether the error is related specifically to the connected account. */
147354
+ is_connected_account_error?: boolean | undefined;
147355
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
147356
+ is_bridge_error?: boolean | undefined;
147357
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147358
+ error_code: 'dormakaba_sites_disconnected';
146712
147359
  })[];
146713
147360
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
146714
147361
  warnings: ({
@@ -147259,6 +147906,17 @@ type Routes = {
147259
147906
  is_bridge_error?: boolean | undefined;
147260
147907
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147261
147908
  error_code: 'bridge_disconnected';
147909
+ } | {
147910
+ /** Date and time at which Seam created the error. */
147911
+ created_at: string;
147912
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147913
+ message: string;
147914
+ /** Indicates whether the error is related specifically to the connected account. */
147915
+ is_connected_account_error?: boolean | undefined;
147916
+ /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
147917
+ is_bridge_error?: boolean | undefined;
147918
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
147919
+ error_code: 'dormakaba_sites_disconnected';
147262
147920
  })[];
147263
147921
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
147264
147922
  warnings: ({