@seamapi/types 1.406.6 → 1.406.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +485 -223
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +472 -192
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +5 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-encoder.js +4 -0
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/noise-sensors/noise-threshold.js +23 -7
- package/lib/seam/connect/models/noise-sensors/noise-threshold.js.map +1 -1
- package/lib/seam/connect/models/partner/index.d.ts +1 -0
- package/lib/seam/connect/models/partner/index.js +1 -0
- package/lib/seam/connect/models/partner/index.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +24 -0
- package/lib/seam/connect/models/partner/magic-link.js +19 -0
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -0
- package/lib/seam/connect/models/partner/resources.d.ts +18 -2
- package/lib/seam/connect/models/partner/resources.js +17 -1
- package/lib/seam/connect/models/partner/resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +351 -145
- package/lib/seam/connect/openapi.js +450 -201
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +112 -47
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +3 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +7 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +6 -0
- package/src/lib/seam/connect/models/noise-sensors/noise-threshold.ts +29 -7
- package/src/lib/seam/connect/models/partner/index.ts +1 -0
- package/src/lib/seam/connect/models/partner/magic-link.ts +21 -0
- package/src/lib/seam/connect/models/partner/resources.ts +19 -1
- package/src/lib/seam/connect/openapi.ts +503 -211
- package/src/lib/seam/connect/route-types.ts +119 -51
package/dist/connect.d.cts
CHANGED
|
@@ -3567,6 +3567,7 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3567
3567
|
acs_access_group_id: z.ZodString;
|
|
3568
3568
|
acs_system_id: z.ZodString;
|
|
3569
3569
|
workspace_id: z.ZodString;
|
|
3570
|
+
connected_account_id: z.ZodString;
|
|
3570
3571
|
name: z.ZodString;
|
|
3571
3572
|
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
3572
3573
|
access_group_type_display_name: z.ZodString;
|
|
@@ -3595,6 +3596,7 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3595
3596
|
display_name: string;
|
|
3596
3597
|
workspace_id: string;
|
|
3597
3598
|
created_at: string;
|
|
3599
|
+
connected_account_id: string;
|
|
3598
3600
|
warnings: {
|
|
3599
3601
|
message: string;
|
|
3600
3602
|
created_at: string;
|
|
@@ -3612,6 +3614,7 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3612
3614
|
display_name: string;
|
|
3613
3615
|
workspace_id: string;
|
|
3614
3616
|
created_at: string;
|
|
3617
|
+
connected_account_id: string;
|
|
3615
3618
|
warnings: {
|
|
3616
3619
|
message: string;
|
|
3617
3620
|
created_at: string;
|
|
@@ -3629,6 +3632,7 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3629
3632
|
acs_access_group_id: z.ZodString;
|
|
3630
3633
|
acs_system_id: z.ZodString;
|
|
3631
3634
|
workspace_id: z.ZodString;
|
|
3635
|
+
connected_account_id: z.ZodString;
|
|
3632
3636
|
name: z.ZodString;
|
|
3633
3637
|
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
3634
3638
|
access_group_type_display_name: z.ZodString;
|
|
@@ -3657,6 +3661,7 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3657
3661
|
display_name: string;
|
|
3658
3662
|
workspace_id: string;
|
|
3659
3663
|
created_at: string;
|
|
3664
|
+
connected_account_id: string;
|
|
3660
3665
|
warnings: {
|
|
3661
3666
|
message: string;
|
|
3662
3667
|
created_at: string;
|
|
@@ -3674,6 +3679,7 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3674
3679
|
display_name: string;
|
|
3675
3680
|
workspace_id: string;
|
|
3676
3681
|
created_at: string;
|
|
3682
|
+
connected_account_id: string;
|
|
3677
3683
|
warnings: {
|
|
3678
3684
|
message: string;
|
|
3679
3685
|
created_at: string;
|
|
@@ -4302,6 +4308,7 @@ type AcsCredential = z.output<typeof acs_credential>;
|
|
|
4302
4308
|
declare const acs_encoder: z.ZodObject<{
|
|
4303
4309
|
acs_encoder_id: z.ZodString;
|
|
4304
4310
|
acs_system_id: z.ZodString;
|
|
4311
|
+
connected_account_id: z.ZodString;
|
|
4305
4312
|
workspace_id: z.ZodString;
|
|
4306
4313
|
errors: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
4307
4314
|
created_at: z.ZodString;
|
|
@@ -4328,6 +4335,7 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
4328
4335
|
created_at: string;
|
|
4329
4336
|
error_code: "acs_encoder_removed";
|
|
4330
4337
|
}[];
|
|
4338
|
+
connected_account_id: string;
|
|
4331
4339
|
acs_system_id: string;
|
|
4332
4340
|
acs_encoder_id: string;
|
|
4333
4341
|
}, {
|
|
@@ -4339,6 +4347,7 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
4339
4347
|
created_at: string;
|
|
4340
4348
|
error_code: "acs_encoder_removed";
|
|
4341
4349
|
}[];
|
|
4350
|
+
connected_account_id: string;
|
|
4342
4351
|
acs_system_id: string;
|
|
4343
4352
|
acs_encoder_id: string;
|
|
4344
4353
|
}>;
|
|
@@ -21623,6 +21632,11 @@ declare const _default: {
|
|
|
21623
21632
|
format: string;
|
|
21624
21633
|
type: string;
|
|
21625
21634
|
};
|
|
21635
|
+
connected_account_id: {
|
|
21636
|
+
description: string;
|
|
21637
|
+
format: string;
|
|
21638
|
+
type: string;
|
|
21639
|
+
};
|
|
21626
21640
|
created_at: {
|
|
21627
21641
|
description: string;
|
|
21628
21642
|
format: string;
|
|
@@ -21990,6 +22004,11 @@ declare const _default: {
|
|
|
21990
22004
|
format: string;
|
|
21991
22005
|
type: string;
|
|
21992
22006
|
};
|
|
22007
|
+
connected_account_id: {
|
|
22008
|
+
description: string;
|
|
22009
|
+
format: string;
|
|
22010
|
+
type: string;
|
|
22011
|
+
};
|
|
21993
22012
|
created_at: {
|
|
21994
22013
|
description: string;
|
|
21995
22014
|
format: string;
|
|
@@ -30003,6 +30022,37 @@ declare const _default: {
|
|
|
30003
30022
|
'x-route-path': string;
|
|
30004
30023
|
'x-undocumented': string;
|
|
30005
30024
|
};
|
|
30025
|
+
magic_link: {
|
|
30026
|
+
properties: {
|
|
30027
|
+
building_block_type: {
|
|
30028
|
+
enum: string[];
|
|
30029
|
+
type: string;
|
|
30030
|
+
};
|
|
30031
|
+
created_at: {
|
|
30032
|
+
format: string;
|
|
30033
|
+
type: string;
|
|
30034
|
+
};
|
|
30035
|
+
customer_key: {
|
|
30036
|
+
type: string;
|
|
30037
|
+
};
|
|
30038
|
+
expires_at: {
|
|
30039
|
+
format: string;
|
|
30040
|
+
type: string;
|
|
30041
|
+
};
|
|
30042
|
+
url: {
|
|
30043
|
+
format: string;
|
|
30044
|
+
type: string;
|
|
30045
|
+
};
|
|
30046
|
+
workspace_id: {
|
|
30047
|
+
format: string;
|
|
30048
|
+
type: string;
|
|
30049
|
+
};
|
|
30050
|
+
};
|
|
30051
|
+
required: string[];
|
|
30052
|
+
type: string;
|
|
30053
|
+
'x-route-path': string;
|
|
30054
|
+
'x-undocumented': string;
|
|
30055
|
+
};
|
|
30006
30056
|
network: {
|
|
30007
30057
|
properties: {
|
|
30008
30058
|
created_at: {
|
|
@@ -30026,30 +30076,38 @@ declare const _default: {
|
|
|
30026
30076
|
'x-route-path': string;
|
|
30027
30077
|
};
|
|
30028
30078
|
noise_threshold: {
|
|
30079
|
+
description: string;
|
|
30029
30080
|
properties: {
|
|
30030
30081
|
device_id: {
|
|
30082
|
+
description: string;
|
|
30031
30083
|
format: string;
|
|
30032
30084
|
type: string;
|
|
30033
30085
|
};
|
|
30034
30086
|
ends_daily_at: {
|
|
30087
|
+
description: string;
|
|
30035
30088
|
type: string;
|
|
30036
30089
|
};
|
|
30037
30090
|
name: {
|
|
30091
|
+
description: string;
|
|
30038
30092
|
type: string;
|
|
30039
30093
|
};
|
|
30040
30094
|
noise_threshold_decibels: {
|
|
30095
|
+
description: string;
|
|
30041
30096
|
format: string;
|
|
30042
30097
|
type: string;
|
|
30043
30098
|
};
|
|
30044
30099
|
noise_threshold_id: {
|
|
30100
|
+
description: string;
|
|
30045
30101
|
format: string;
|
|
30046
30102
|
type: string;
|
|
30047
30103
|
};
|
|
30048
30104
|
noise_threshold_nrs: {
|
|
30105
|
+
description: string;
|
|
30049
30106
|
format: string;
|
|
30050
30107
|
type: string;
|
|
30051
30108
|
};
|
|
30052
30109
|
starts_daily_at: {
|
|
30110
|
+
description: string;
|
|
30053
30111
|
type: string;
|
|
30054
30112
|
};
|
|
30055
30113
|
};
|
|
@@ -30993,6 +31051,11 @@ declare const _default: {
|
|
|
30993
31051
|
format: string;
|
|
30994
31052
|
type: string;
|
|
30995
31053
|
};
|
|
31054
|
+
connected_account_id: {
|
|
31055
|
+
description: string;
|
|
31056
|
+
format: string;
|
|
31057
|
+
type: string;
|
|
31058
|
+
};
|
|
30996
31059
|
created_at: {
|
|
30997
31060
|
description: string;
|
|
30998
31061
|
format: string;
|
|
@@ -32464,22 +32527,32 @@ declare const _default: {
|
|
|
32464
32527
|
};
|
|
32465
32528
|
};
|
|
32466
32529
|
security: ({
|
|
32530
|
+
client_session_with_customer: never[];
|
|
32531
|
+
client_session?: never;
|
|
32532
|
+
pat_with_workspace?: never;
|
|
32533
|
+
console_session_with_workspace?: never;
|
|
32534
|
+
api_key?: never;
|
|
32535
|
+
} | {
|
|
32467
32536
|
client_session: never[];
|
|
32537
|
+
client_session_with_customer?: never;
|
|
32468
32538
|
pat_with_workspace?: never;
|
|
32469
32539
|
console_session_with_workspace?: never;
|
|
32470
32540
|
api_key?: never;
|
|
32471
32541
|
} | {
|
|
32472
32542
|
pat_with_workspace: never[];
|
|
32543
|
+
client_session_with_customer?: never;
|
|
32473
32544
|
client_session?: never;
|
|
32474
32545
|
console_session_with_workspace?: never;
|
|
32475
32546
|
api_key?: never;
|
|
32476
32547
|
} | {
|
|
32477
32548
|
console_session_with_workspace: never[];
|
|
32549
|
+
client_session_with_customer?: never;
|
|
32478
32550
|
client_session?: never;
|
|
32479
32551
|
pat_with_workspace?: never;
|
|
32480
32552
|
api_key?: never;
|
|
32481
32553
|
} | {
|
|
32482
32554
|
api_key: never[];
|
|
32555
|
+
client_session_with_customer?: never;
|
|
32483
32556
|
client_session?: never;
|
|
32484
32557
|
pat_with_workspace?: never;
|
|
32485
32558
|
console_session_with_workspace?: never;
|
|
@@ -32852,22 +32925,32 @@ declare const _default: {
|
|
|
32852
32925
|
};
|
|
32853
32926
|
security: ({
|
|
32854
32927
|
client_session: never[];
|
|
32928
|
+
client_session_with_customer?: never;
|
|
32929
|
+
pat_with_workspace?: never;
|
|
32930
|
+
console_session_with_workspace?: never;
|
|
32931
|
+
api_key?: never;
|
|
32932
|
+
} | {
|
|
32933
|
+
client_session_with_customer: never[];
|
|
32934
|
+
client_session?: never;
|
|
32855
32935
|
pat_with_workspace?: never;
|
|
32856
32936
|
console_session_with_workspace?: never;
|
|
32857
32937
|
api_key?: never;
|
|
32858
32938
|
} | {
|
|
32859
32939
|
pat_with_workspace: never[];
|
|
32860
32940
|
client_session?: never;
|
|
32941
|
+
client_session_with_customer?: never;
|
|
32861
32942
|
console_session_with_workspace?: never;
|
|
32862
32943
|
api_key?: never;
|
|
32863
32944
|
} | {
|
|
32864
32945
|
console_session_with_workspace: never[];
|
|
32865
32946
|
client_session?: never;
|
|
32947
|
+
client_session_with_customer?: never;
|
|
32866
32948
|
pat_with_workspace?: never;
|
|
32867
32949
|
api_key?: never;
|
|
32868
32950
|
} | {
|
|
32869
32951
|
api_key: never[];
|
|
32870
32952
|
client_session?: never;
|
|
32953
|
+
client_session_with_customer?: never;
|
|
32871
32954
|
pat_with_workspace?: never;
|
|
32872
32955
|
console_session_with_workspace?: never;
|
|
32873
32956
|
})[];
|
|
@@ -33019,21 +33102,31 @@ declare const _default: {
|
|
|
33019
33102
|
access_token?: never;
|
|
33020
33103
|
console_session_with_workspace?: never;
|
|
33021
33104
|
client_session?: never;
|
|
33105
|
+
client_session_with_customer?: never;
|
|
33022
33106
|
} | {
|
|
33023
33107
|
access_token: never[];
|
|
33024
33108
|
api_key?: never;
|
|
33025
33109
|
console_session_with_workspace?: never;
|
|
33026
33110
|
client_session?: never;
|
|
33111
|
+
client_session_with_customer?: never;
|
|
33027
33112
|
} | {
|
|
33028
33113
|
console_session_with_workspace: never[];
|
|
33029
33114
|
api_key?: never;
|
|
33030
33115
|
access_token?: never;
|
|
33031
33116
|
client_session?: never;
|
|
33117
|
+
client_session_with_customer?: never;
|
|
33032
33118
|
} | {
|
|
33033
33119
|
client_session: never[];
|
|
33034
33120
|
api_key?: never;
|
|
33035
33121
|
access_token?: never;
|
|
33036
33122
|
console_session_with_workspace?: never;
|
|
33123
|
+
client_session_with_customer?: never;
|
|
33124
|
+
} | {
|
|
33125
|
+
client_session_with_customer: never[];
|
|
33126
|
+
api_key?: never;
|
|
33127
|
+
access_token?: never;
|
|
33128
|
+
console_session_with_workspace?: never;
|
|
33129
|
+
client_session?: never;
|
|
33037
33130
|
})[];
|
|
33038
33131
|
summary: string;
|
|
33039
33132
|
tags: string[];
|
|
@@ -33061,6 +33154,13 @@ declare const _default: {
|
|
|
33061
33154
|
};
|
|
33062
33155
|
type: string;
|
|
33063
33156
|
};
|
|
33157
|
+
customer_ids: {
|
|
33158
|
+
items: {
|
|
33159
|
+
format: string;
|
|
33160
|
+
type: string;
|
|
33161
|
+
};
|
|
33162
|
+
type: string;
|
|
33163
|
+
};
|
|
33064
33164
|
device_id: {
|
|
33065
33165
|
description: string;
|
|
33066
33166
|
format: string;
|
|
@@ -33122,22 +33222,32 @@ declare const _default: {
|
|
|
33122
33222
|
};
|
|
33123
33223
|
security: ({
|
|
33124
33224
|
client_session: never[];
|
|
33225
|
+
client_session_with_customer?: never;
|
|
33226
|
+
pat_with_workspace?: never;
|
|
33227
|
+
console_session_with_workspace?: never;
|
|
33228
|
+
api_key?: never;
|
|
33229
|
+
} | {
|
|
33230
|
+
client_session_with_customer: never[];
|
|
33231
|
+
client_session?: never;
|
|
33125
33232
|
pat_with_workspace?: never;
|
|
33126
33233
|
console_session_with_workspace?: never;
|
|
33127
33234
|
api_key?: never;
|
|
33128
33235
|
} | {
|
|
33129
33236
|
pat_with_workspace: never[];
|
|
33130
33237
|
client_session?: never;
|
|
33238
|
+
client_session_with_customer?: never;
|
|
33131
33239
|
console_session_with_workspace?: never;
|
|
33132
33240
|
api_key?: never;
|
|
33133
33241
|
} | {
|
|
33134
33242
|
console_session_with_workspace: never[];
|
|
33135
33243
|
client_session?: never;
|
|
33244
|
+
client_session_with_customer?: never;
|
|
33136
33245
|
pat_with_workspace?: never;
|
|
33137
33246
|
api_key?: never;
|
|
33138
33247
|
} | {
|
|
33139
33248
|
api_key: never[];
|
|
33140
33249
|
client_session?: never;
|
|
33250
|
+
client_session_with_customer?: never;
|
|
33141
33251
|
pat_with_workspace?: never;
|
|
33142
33252
|
console_session_with_workspace?: never;
|
|
33143
33253
|
})[];
|
|
@@ -43272,22 +43382,32 @@ declare const _default: {
|
|
|
43272
43382
|
};
|
|
43273
43383
|
security: ({
|
|
43274
43384
|
client_session: never[];
|
|
43385
|
+
client_session_with_customer?: never;
|
|
43386
|
+
pat_with_workspace?: never;
|
|
43387
|
+
console_session_with_workspace?: never;
|
|
43388
|
+
api_key?: never;
|
|
43389
|
+
} | {
|
|
43390
|
+
client_session_with_customer: never[];
|
|
43391
|
+
client_session?: never;
|
|
43275
43392
|
pat_with_workspace?: never;
|
|
43276
43393
|
console_session_with_workspace?: never;
|
|
43277
43394
|
api_key?: never;
|
|
43278
43395
|
} | {
|
|
43279
43396
|
pat_with_workspace: never[];
|
|
43280
43397
|
client_session?: never;
|
|
43398
|
+
client_session_with_customer?: never;
|
|
43281
43399
|
console_session_with_workspace?: never;
|
|
43282
43400
|
api_key?: never;
|
|
43283
43401
|
} | {
|
|
43284
43402
|
console_session_with_workspace: never[];
|
|
43285
43403
|
client_session?: never;
|
|
43404
|
+
client_session_with_customer?: never;
|
|
43286
43405
|
pat_with_workspace?: never;
|
|
43287
43406
|
api_key?: never;
|
|
43288
43407
|
} | {
|
|
43289
43408
|
api_key: never[];
|
|
43290
43409
|
client_session?: never;
|
|
43410
|
+
client_session_with_customer?: never;
|
|
43291
43411
|
pat_with_workspace?: never;
|
|
43292
43412
|
console_session_with_workspace?: never;
|
|
43293
43413
|
})[];
|
|
@@ -43502,22 +43622,32 @@ declare const _default: {
|
|
|
43502
43622
|
};
|
|
43503
43623
|
security: ({
|
|
43504
43624
|
client_session: never[];
|
|
43625
|
+
client_session_with_customer?: never;
|
|
43626
|
+
pat_with_workspace?: never;
|
|
43627
|
+
console_session_with_workspace?: never;
|
|
43628
|
+
api_key?: never;
|
|
43629
|
+
} | {
|
|
43630
|
+
client_session_with_customer: never[];
|
|
43631
|
+
client_session?: never;
|
|
43505
43632
|
pat_with_workspace?: never;
|
|
43506
43633
|
console_session_with_workspace?: never;
|
|
43507
43634
|
api_key?: never;
|
|
43508
43635
|
} | {
|
|
43509
43636
|
pat_with_workspace: never[];
|
|
43510
43637
|
client_session?: never;
|
|
43638
|
+
client_session_with_customer?: never;
|
|
43511
43639
|
console_session_with_workspace?: never;
|
|
43512
43640
|
api_key?: never;
|
|
43513
43641
|
} | {
|
|
43514
43642
|
console_session_with_workspace: never[];
|
|
43515
43643
|
client_session?: never;
|
|
43644
|
+
client_session_with_customer?: never;
|
|
43516
43645
|
pat_with_workspace?: never;
|
|
43517
43646
|
api_key?: never;
|
|
43518
43647
|
} | {
|
|
43519
43648
|
api_key: never[];
|
|
43520
43649
|
client_session?: never;
|
|
43650
|
+
client_session_with_customer?: never;
|
|
43521
43651
|
pat_with_workspace?: never;
|
|
43522
43652
|
console_session_with_workspace?: never;
|
|
43523
43653
|
})[];
|
|
@@ -43668,6 +43798,7 @@ declare const _default: {
|
|
|
43668
43798
|
};
|
|
43669
43799
|
'/noise_sensors/list': {
|
|
43670
43800
|
post: {
|
|
43801
|
+
description: string;
|
|
43671
43802
|
operationId: string;
|
|
43672
43803
|
requestBody: {
|
|
43673
43804
|
content: {
|
|
@@ -43847,10 +43978,12 @@ declare const _default: {
|
|
|
43847
43978
|
'x-fern-sdk-method-name': string;
|
|
43848
43979
|
'x-fern-sdk-return-value': string;
|
|
43849
43980
|
'x-response-key': string;
|
|
43981
|
+
'x-title': string;
|
|
43850
43982
|
};
|
|
43851
43983
|
};
|
|
43852
43984
|
'/noise_sensors/noise_thresholds/create': {
|
|
43853
43985
|
post: {
|
|
43986
|
+
description: string;
|
|
43854
43987
|
operationId: string;
|
|
43855
43988
|
requestBody: {
|
|
43856
43989
|
content: {
|
|
@@ -43858,29 +43991,36 @@ declare const _default: {
|
|
|
43858
43991
|
schema: {
|
|
43859
43992
|
properties: {
|
|
43860
43993
|
device_id: {
|
|
43994
|
+
description: string;
|
|
43861
43995
|
format: string;
|
|
43862
43996
|
type: string;
|
|
43863
43997
|
};
|
|
43864
43998
|
ends_daily_at: {
|
|
43999
|
+
description: string;
|
|
43865
44000
|
type: string;
|
|
43866
44001
|
};
|
|
43867
44002
|
name: {
|
|
44003
|
+
description: string;
|
|
43868
44004
|
type: string;
|
|
43869
44005
|
};
|
|
43870
44006
|
noise_threshold_decibels: {
|
|
44007
|
+
description: string;
|
|
43871
44008
|
format: string;
|
|
43872
44009
|
type: string;
|
|
43873
44010
|
};
|
|
43874
44011
|
noise_threshold_nrs: {
|
|
44012
|
+
description: string;
|
|
43875
44013
|
format: string;
|
|
43876
44014
|
type: string;
|
|
43877
44015
|
};
|
|
43878
44016
|
starts_daily_at: {
|
|
44017
|
+
description: string;
|
|
43879
44018
|
type: string;
|
|
43880
44019
|
};
|
|
43881
44020
|
sync: {
|
|
43882
44021
|
default: boolean;
|
|
43883
44022
|
type: string;
|
|
44023
|
+
'x-undocumented': string;
|
|
43884
44024
|
};
|
|
43885
44025
|
};
|
|
43886
44026
|
required: string[];
|
|
@@ -43939,10 +44079,12 @@ declare const _default: {
|
|
|
43939
44079
|
'x-fern-sdk-method-name': string;
|
|
43940
44080
|
'x-fern-sdk-return-value': string;
|
|
43941
44081
|
'x-response-key': string;
|
|
44082
|
+
'x-title': string;
|
|
43942
44083
|
};
|
|
43943
44084
|
};
|
|
43944
44085
|
'/noise_sensors/noise_thresholds/delete': {
|
|
43945
44086
|
post: {
|
|
44087
|
+
description: string;
|
|
43946
44088
|
operationId: string;
|
|
43947
44089
|
requestBody: {
|
|
43948
44090
|
content: {
|
|
@@ -43950,16 +44092,19 @@ declare const _default: {
|
|
|
43950
44092
|
schema: {
|
|
43951
44093
|
properties: {
|
|
43952
44094
|
device_id: {
|
|
44095
|
+
description: string;
|
|
43953
44096
|
format: string;
|
|
43954
44097
|
type: string;
|
|
43955
44098
|
};
|
|
43956
44099
|
noise_threshold_id: {
|
|
44100
|
+
description: string;
|
|
43957
44101
|
format: string;
|
|
43958
44102
|
type: string;
|
|
43959
44103
|
};
|
|
43960
44104
|
sync: {
|
|
43961
44105
|
default: boolean;
|
|
43962
44106
|
type: string;
|
|
44107
|
+
'x-undocumented': string;
|
|
43963
44108
|
};
|
|
43964
44109
|
};
|
|
43965
44110
|
required: string[];
|
|
@@ -44014,10 +44159,12 @@ declare const _default: {
|
|
|
44014
44159
|
'x-fern-sdk-group-name': string[];
|
|
44015
44160
|
'x-fern-sdk-method-name': string;
|
|
44016
44161
|
'x-response-key': null;
|
|
44162
|
+
'x-title': string;
|
|
44017
44163
|
};
|
|
44018
44164
|
};
|
|
44019
44165
|
'/noise_sensors/noise_thresholds/get': {
|
|
44020
44166
|
post: {
|
|
44167
|
+
description: string;
|
|
44021
44168
|
operationId: string;
|
|
44022
44169
|
requestBody: {
|
|
44023
44170
|
content: {
|
|
@@ -44025,6 +44172,7 @@ declare const _default: {
|
|
|
44025
44172
|
schema: {
|
|
44026
44173
|
properties: {
|
|
44027
44174
|
noise_threshold_id: {
|
|
44175
|
+
description: string;
|
|
44028
44176
|
format: string;
|
|
44029
44177
|
type: string;
|
|
44030
44178
|
};
|
|
@@ -44081,10 +44229,12 @@ declare const _default: {
|
|
|
44081
44229
|
'x-fern-sdk-method-name': string;
|
|
44082
44230
|
'x-fern-sdk-return-value': string;
|
|
44083
44231
|
'x-response-key': string;
|
|
44232
|
+
'x-title': string;
|
|
44084
44233
|
};
|
|
44085
44234
|
};
|
|
44086
44235
|
'/noise_sensors/noise_thresholds/list': {
|
|
44087
44236
|
post: {
|
|
44237
|
+
description: string;
|
|
44088
44238
|
operationId: string;
|
|
44089
44239
|
requestBody: {
|
|
44090
44240
|
content: {
|
|
@@ -44092,11 +44242,14 @@ declare const _default: {
|
|
|
44092
44242
|
schema: {
|
|
44093
44243
|
properties: {
|
|
44094
44244
|
device_id: {
|
|
44245
|
+
description: string;
|
|
44095
44246
|
format: string;
|
|
44096
44247
|
type: string;
|
|
44097
44248
|
};
|
|
44098
44249
|
is_programmed: {
|
|
44250
|
+
description: string;
|
|
44099
44251
|
type: string;
|
|
44252
|
+
'x-undocumented': string;
|
|
44100
44253
|
};
|
|
44101
44254
|
};
|
|
44102
44255
|
required: string[];
|
|
@@ -44162,10 +44315,12 @@ declare const _default: {
|
|
|
44162
44315
|
'x-fern-sdk-method-name': string;
|
|
44163
44316
|
'x-fern-sdk-return-value': string;
|
|
44164
44317
|
'x-response-key': string;
|
|
44318
|
+
'x-title': string;
|
|
44165
44319
|
};
|
|
44166
44320
|
};
|
|
44167
44321
|
'/noise_sensors/noise_thresholds/update': {
|
|
44168
44322
|
patch: {
|
|
44323
|
+
description: string;
|
|
44169
44324
|
operationId: string;
|
|
44170
44325
|
requestBody: {
|
|
44171
44326
|
content: {
|
|
@@ -44173,33 +44328,41 @@ declare const _default: {
|
|
|
44173
44328
|
schema: {
|
|
44174
44329
|
properties: {
|
|
44175
44330
|
device_id: {
|
|
44331
|
+
description: string;
|
|
44176
44332
|
format: string;
|
|
44177
44333
|
type: string;
|
|
44178
44334
|
};
|
|
44179
44335
|
ends_daily_at: {
|
|
44336
|
+
description: string;
|
|
44180
44337
|
type: string;
|
|
44181
44338
|
};
|
|
44182
44339
|
name: {
|
|
44340
|
+
description: string;
|
|
44183
44341
|
type: string;
|
|
44184
44342
|
};
|
|
44185
44343
|
noise_threshold_decibels: {
|
|
44344
|
+
description: string;
|
|
44186
44345
|
format: string;
|
|
44187
44346
|
type: string;
|
|
44188
44347
|
};
|
|
44189
44348
|
noise_threshold_id: {
|
|
44349
|
+
description: string;
|
|
44190
44350
|
format: string;
|
|
44191
44351
|
type: string;
|
|
44192
44352
|
};
|
|
44193
44353
|
noise_threshold_nrs: {
|
|
44354
|
+
description: string;
|
|
44194
44355
|
format: string;
|
|
44195
44356
|
type: string;
|
|
44196
44357
|
};
|
|
44197
44358
|
starts_daily_at: {
|
|
44359
|
+
description: string;
|
|
44198
44360
|
type: string;
|
|
44199
44361
|
};
|
|
44200
44362
|
sync: {
|
|
44201
44363
|
default: boolean;
|
|
44202
44364
|
type: string;
|
|
44365
|
+
'x-undocumented': string;
|
|
44203
44366
|
};
|
|
44204
44367
|
};
|
|
44205
44368
|
required: string[];
|
|
@@ -44253,8 +44416,10 @@ declare const _default: {
|
|
|
44253
44416
|
'x-action-attempt-type': string;
|
|
44254
44417
|
'x-fern-ignore': boolean;
|
|
44255
44418
|
'x-response-key': null;
|
|
44419
|
+
'x-title': string;
|
|
44256
44420
|
};
|
|
44257
44421
|
post: {
|
|
44422
|
+
description: string;
|
|
44258
44423
|
operationId: string;
|
|
44259
44424
|
requestBody: {
|
|
44260
44425
|
content: {
|
|
@@ -44262,33 +44427,41 @@ declare const _default: {
|
|
|
44262
44427
|
schema: {
|
|
44263
44428
|
properties: {
|
|
44264
44429
|
device_id: {
|
|
44430
|
+
description: string;
|
|
44265
44431
|
format: string;
|
|
44266
44432
|
type: string;
|
|
44267
44433
|
};
|
|
44268
44434
|
ends_daily_at: {
|
|
44435
|
+
description: string;
|
|
44269
44436
|
type: string;
|
|
44270
44437
|
};
|
|
44271
44438
|
name: {
|
|
44439
|
+
description: string;
|
|
44272
44440
|
type: string;
|
|
44273
44441
|
};
|
|
44274
44442
|
noise_threshold_decibels: {
|
|
44443
|
+
description: string;
|
|
44275
44444
|
format: string;
|
|
44276
44445
|
type: string;
|
|
44277
44446
|
};
|
|
44278
44447
|
noise_threshold_id: {
|
|
44448
|
+
description: string;
|
|
44279
44449
|
format: string;
|
|
44280
44450
|
type: string;
|
|
44281
44451
|
};
|
|
44282
44452
|
noise_threshold_nrs: {
|
|
44453
|
+
description: string;
|
|
44283
44454
|
format: string;
|
|
44284
44455
|
type: string;
|
|
44285
44456
|
};
|
|
44286
44457
|
starts_daily_at: {
|
|
44458
|
+
description: string;
|
|
44287
44459
|
type: string;
|
|
44288
44460
|
};
|
|
44289
44461
|
sync: {
|
|
44290
44462
|
default: boolean;
|
|
44291
44463
|
type: string;
|
|
44464
|
+
'x-undocumented': string;
|
|
44292
44465
|
};
|
|
44293
44466
|
};
|
|
44294
44467
|
required: string[];
|
|
@@ -44343,8 +44516,10 @@ declare const _default: {
|
|
|
44343
44516
|
'x-fern-sdk-group-name': string[];
|
|
44344
44517
|
'x-fern-sdk-method-name': string;
|
|
44345
44518
|
'x-response-key': null;
|
|
44519
|
+
'x-title': string;
|
|
44346
44520
|
};
|
|
44347
44521
|
put: {
|
|
44522
|
+
description: string;
|
|
44348
44523
|
operationId: string;
|
|
44349
44524
|
requestBody: {
|
|
44350
44525
|
content: {
|
|
@@ -44352,33 +44527,41 @@ declare const _default: {
|
|
|
44352
44527
|
schema: {
|
|
44353
44528
|
properties: {
|
|
44354
44529
|
device_id: {
|
|
44530
|
+
description: string;
|
|
44355
44531
|
format: string;
|
|
44356
44532
|
type: string;
|
|
44357
44533
|
};
|
|
44358
44534
|
ends_daily_at: {
|
|
44535
|
+
description: string;
|
|
44359
44536
|
type: string;
|
|
44360
44537
|
};
|
|
44361
44538
|
name: {
|
|
44539
|
+
description: string;
|
|
44362
44540
|
type: string;
|
|
44363
44541
|
};
|
|
44364
44542
|
noise_threshold_decibels: {
|
|
44543
|
+
description: string;
|
|
44365
44544
|
format: string;
|
|
44366
44545
|
type: string;
|
|
44367
44546
|
};
|
|
44368
44547
|
noise_threshold_id: {
|
|
44548
|
+
description: string;
|
|
44369
44549
|
format: string;
|
|
44370
44550
|
type: string;
|
|
44371
44551
|
};
|
|
44372
44552
|
noise_threshold_nrs: {
|
|
44553
|
+
description: string;
|
|
44373
44554
|
format: string;
|
|
44374
44555
|
type: string;
|
|
44375
44556
|
};
|
|
44376
44557
|
starts_daily_at: {
|
|
44558
|
+
description: string;
|
|
44377
44559
|
type: string;
|
|
44378
44560
|
};
|
|
44379
44561
|
sync: {
|
|
44380
44562
|
default: boolean;
|
|
44381
44563
|
type: string;
|
|
44564
|
+
'x-undocumented': string;
|
|
44382
44565
|
};
|
|
44383
44566
|
};
|
|
44384
44567
|
required: string[];
|
|
@@ -44432,10 +44615,12 @@ declare const _default: {
|
|
|
44432
44615
|
'x-action-attempt-type': string;
|
|
44433
44616
|
'x-fern-ignore': boolean;
|
|
44434
44617
|
'x-response-key': null;
|
|
44618
|
+
'x-title': string;
|
|
44435
44619
|
};
|
|
44436
44620
|
};
|
|
44437
44621
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
44438
44622
|
post: {
|
|
44623
|
+
description: string;
|
|
44439
44624
|
operationId: string;
|
|
44440
44625
|
requestBody: {
|
|
44441
44626
|
content: {
|
|
@@ -44443,6 +44628,7 @@ declare const _default: {
|
|
|
44443
44628
|
schema: {
|
|
44444
44629
|
properties: {
|
|
44445
44630
|
device_id: {
|
|
44631
|
+
description: string;
|
|
44446
44632
|
format: string;
|
|
44447
44633
|
type: string;
|
|
44448
44634
|
};
|
|
@@ -44495,6 +44681,7 @@ declare const _default: {
|
|
|
44495
44681
|
'x-fern-sdk-group-name': string[];
|
|
44496
44682
|
'x-fern-sdk-method-name': string;
|
|
44497
44683
|
'x-response-key': null;
|
|
44684
|
+
'x-title': string;
|
|
44498
44685
|
};
|
|
44499
44686
|
};
|
|
44500
44687
|
'/phones/deactivate': {
|
|
@@ -46158,6 +46345,114 @@ declare const _default: {
|
|
|
46158
46345
|
'x-undocumented': string;
|
|
46159
46346
|
};
|
|
46160
46347
|
};
|
|
46348
|
+
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
46349
|
+
post: {
|
|
46350
|
+
description: string;
|
|
46351
|
+
operationId: string;
|
|
46352
|
+
requestBody: {
|
|
46353
|
+
content: {
|
|
46354
|
+
'application/json': {
|
|
46355
|
+
schema: {
|
|
46356
|
+
properties: {
|
|
46357
|
+
collection_key: {
|
|
46358
|
+
type: string;
|
|
46359
|
+
};
|
|
46360
|
+
};
|
|
46361
|
+
required: string[];
|
|
46362
|
+
type: string;
|
|
46363
|
+
};
|
|
46364
|
+
};
|
|
46365
|
+
};
|
|
46366
|
+
};
|
|
46367
|
+
responses: {
|
|
46368
|
+
200: {
|
|
46369
|
+
content: {
|
|
46370
|
+
'application/json': {
|
|
46371
|
+
schema: {
|
|
46372
|
+
properties: {
|
|
46373
|
+
ok: {
|
|
46374
|
+
type: string;
|
|
46375
|
+
};
|
|
46376
|
+
spaces: {
|
|
46377
|
+
items: {
|
|
46378
|
+
properties: {
|
|
46379
|
+
acs_entrances: {
|
|
46380
|
+
items: {
|
|
46381
|
+
properties: {
|
|
46382
|
+
acs_entrance_id: {
|
|
46383
|
+
type: string;
|
|
46384
|
+
};
|
|
46385
|
+
name: {
|
|
46386
|
+
type: string;
|
|
46387
|
+
};
|
|
46388
|
+
};
|
|
46389
|
+
required: string[];
|
|
46390
|
+
type: string;
|
|
46391
|
+
};
|
|
46392
|
+
type: string;
|
|
46393
|
+
};
|
|
46394
|
+
devices: {
|
|
46395
|
+
items: {
|
|
46396
|
+
properties: {
|
|
46397
|
+
device_id: {
|
|
46398
|
+
type: string;
|
|
46399
|
+
};
|
|
46400
|
+
device_type: {
|
|
46401
|
+
enum: string[];
|
|
46402
|
+
type: string;
|
|
46403
|
+
};
|
|
46404
|
+
name: {
|
|
46405
|
+
type: string;
|
|
46406
|
+
};
|
|
46407
|
+
};
|
|
46408
|
+
required: string[];
|
|
46409
|
+
type: string;
|
|
46410
|
+
};
|
|
46411
|
+
type: string;
|
|
46412
|
+
};
|
|
46413
|
+
name: {
|
|
46414
|
+
type: string;
|
|
46415
|
+
};
|
|
46416
|
+
needs_review: {
|
|
46417
|
+
type: string;
|
|
46418
|
+
};
|
|
46419
|
+
partner_resource_key: {
|
|
46420
|
+
type: string;
|
|
46421
|
+
};
|
|
46422
|
+
};
|
|
46423
|
+
required: string[];
|
|
46424
|
+
type: string;
|
|
46425
|
+
};
|
|
46426
|
+
type: string;
|
|
46427
|
+
};
|
|
46428
|
+
};
|
|
46429
|
+
required: string[];
|
|
46430
|
+
type: string;
|
|
46431
|
+
};
|
|
46432
|
+
};
|
|
46433
|
+
};
|
|
46434
|
+
description: string;
|
|
46435
|
+
};
|
|
46436
|
+
400: {
|
|
46437
|
+
description: string;
|
|
46438
|
+
};
|
|
46439
|
+
401: {
|
|
46440
|
+
description: string;
|
|
46441
|
+
};
|
|
46442
|
+
};
|
|
46443
|
+
security: {
|
|
46444
|
+
client_session_with_customer: never[];
|
|
46445
|
+
}[];
|
|
46446
|
+
summary: string;
|
|
46447
|
+
tags: never[];
|
|
46448
|
+
'x-fern-sdk-group-name': string[];
|
|
46449
|
+
'x-fern-sdk-method-name': string;
|
|
46450
|
+
'x-fern-sdk-return-value': string;
|
|
46451
|
+
'x-response-key': string;
|
|
46452
|
+
'x-title': string;
|
|
46453
|
+
'x-undocumented': string;
|
|
46454
|
+
};
|
|
46455
|
+
};
|
|
46161
46456
|
'/seam/partner/v1/resources/list': {
|
|
46162
46457
|
post: {
|
|
46163
46458
|
description: string;
|
|
@@ -46234,6 +46529,8 @@ declare const _default: {
|
|
|
46234
46529
|
};
|
|
46235
46530
|
required: string[];
|
|
46236
46531
|
type: string;
|
|
46532
|
+
'x-route-path': string;
|
|
46533
|
+
'x-undocumented': string;
|
|
46237
46534
|
};
|
|
46238
46535
|
type: string;
|
|
46239
46536
|
};
|
|
@@ -51466,7 +51763,7 @@ declare const _default: {
|
|
|
51466
51763
|
'x-undocumented': string;
|
|
51467
51764
|
};
|
|
51468
51765
|
};
|
|
51469
|
-
'/unstable_partner/building_blocks/
|
|
51766
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
51470
51767
|
post: {
|
|
51471
51768
|
description: string;
|
|
51472
51769
|
operationId: string;
|
|
@@ -51474,19 +51771,61 @@ declare const _default: {
|
|
|
51474
51771
|
content: {
|
|
51475
51772
|
'application/json': {
|
|
51476
51773
|
schema: {
|
|
51477
|
-
|
|
51478
|
-
|
|
51479
|
-
|
|
51480
|
-
|
|
51481
|
-
|
|
51482
|
-
|
|
51774
|
+
discriminator: {
|
|
51775
|
+
propertyName: string;
|
|
51776
|
+
};
|
|
51777
|
+
oneOf: ({
|
|
51778
|
+
properties: {
|
|
51779
|
+
building_block_type: {
|
|
51780
|
+
enum: string[];
|
|
51781
|
+
type: string;
|
|
51782
|
+
};
|
|
51783
|
+
customer_key: {
|
|
51784
|
+
type: string;
|
|
51785
|
+
};
|
|
51786
|
+
partner_resources?: never;
|
|
51483
51787
|
};
|
|
51484
|
-
|
|
51485
|
-
|
|
51788
|
+
required: string[];
|
|
51789
|
+
type: string;
|
|
51790
|
+
} | {
|
|
51791
|
+
properties: {
|
|
51792
|
+
building_block_type: {
|
|
51793
|
+
enum: string[];
|
|
51794
|
+
type: string;
|
|
51795
|
+
};
|
|
51796
|
+
customer_key: {
|
|
51797
|
+
type: string;
|
|
51798
|
+
};
|
|
51799
|
+
partner_resources: {
|
|
51800
|
+
items: {
|
|
51801
|
+
properties: {
|
|
51802
|
+
custom_metadata: {
|
|
51803
|
+
additionalProperties: {
|
|
51804
|
+
type: string;
|
|
51805
|
+
};
|
|
51806
|
+
type: string;
|
|
51807
|
+
};
|
|
51808
|
+
description: {
|
|
51809
|
+
type: string;
|
|
51810
|
+
};
|
|
51811
|
+
name: {
|
|
51812
|
+
type: string;
|
|
51813
|
+
};
|
|
51814
|
+
partner_resource_key: {
|
|
51815
|
+
type: string;
|
|
51816
|
+
};
|
|
51817
|
+
};
|
|
51818
|
+
required: string[];
|
|
51819
|
+
type: string;
|
|
51820
|
+
'x-route-path': string;
|
|
51821
|
+
'x-undocumented': string;
|
|
51822
|
+
};
|
|
51823
|
+
type: string;
|
|
51824
|
+
};
|
|
51486
51825
|
};
|
|
51487
|
-
|
|
51488
|
-
|
|
51489
|
-
|
|
51826
|
+
required: string[];
|
|
51827
|
+
type: string;
|
|
51828
|
+
})[];
|
|
51490
51829
|
};
|
|
51491
51830
|
};
|
|
51492
51831
|
};
|
|
@@ -51497,138 +51836,8 @@ declare const _default: {
|
|
|
51497
51836
|
'application/json': {
|
|
51498
51837
|
schema: {
|
|
51499
51838
|
properties: {
|
|
51500
|
-
|
|
51501
|
-
|
|
51502
|
-
bridge_client_machine_identifier_key: {
|
|
51503
|
-
type: string;
|
|
51504
|
-
};
|
|
51505
|
-
bridge_client_name: {
|
|
51506
|
-
type: string;
|
|
51507
|
-
};
|
|
51508
|
-
bridge_client_session_id: {
|
|
51509
|
-
format: string;
|
|
51510
|
-
type: string;
|
|
51511
|
-
};
|
|
51512
|
-
bridge_client_session_token: {
|
|
51513
|
-
type: string;
|
|
51514
|
-
};
|
|
51515
|
-
bridge_client_time_zone: {
|
|
51516
|
-
type: string;
|
|
51517
|
-
};
|
|
51518
|
-
created_at: {
|
|
51519
|
-
format: string;
|
|
51520
|
-
type: string;
|
|
51521
|
-
};
|
|
51522
|
-
errors: {
|
|
51523
|
-
items: {
|
|
51524
|
-
description: string;
|
|
51525
|
-
discriminator: {
|
|
51526
|
-
propertyName: string;
|
|
51527
|
-
};
|
|
51528
|
-
oneOf: ({
|
|
51529
|
-
description: string;
|
|
51530
|
-
properties: {
|
|
51531
|
-
can_tailscale_proxy_reach_bridge: {
|
|
51532
|
-
description: string;
|
|
51533
|
-
nullable: boolean;
|
|
51534
|
-
type: string;
|
|
51535
|
-
};
|
|
51536
|
-
can_tailscale_proxy_reach_tailscale_network: {
|
|
51537
|
-
description: string;
|
|
51538
|
-
nullable: boolean;
|
|
51539
|
-
type: string;
|
|
51540
|
-
};
|
|
51541
|
-
created_at: {
|
|
51542
|
-
format: string;
|
|
51543
|
-
type: string;
|
|
51544
|
-
};
|
|
51545
|
-
error_code: {
|
|
51546
|
-
description: string;
|
|
51547
|
-
enum: string[];
|
|
51548
|
-
type: string;
|
|
51549
|
-
};
|
|
51550
|
-
is_bridge_socks_server_healthy: {
|
|
51551
|
-
description: string;
|
|
51552
|
-
nullable: boolean;
|
|
51553
|
-
type: string;
|
|
51554
|
-
};
|
|
51555
|
-
is_tailscale_proxy_reachable: {
|
|
51556
|
-
description: string;
|
|
51557
|
-
nullable: boolean;
|
|
51558
|
-
type: string;
|
|
51559
|
-
};
|
|
51560
|
-
is_tailscale_proxy_socks_server_healthy: {
|
|
51561
|
-
description: string;
|
|
51562
|
-
nullable: boolean;
|
|
51563
|
-
type: string;
|
|
51564
|
-
};
|
|
51565
|
-
message: {
|
|
51566
|
-
type: string;
|
|
51567
|
-
};
|
|
51568
|
-
};
|
|
51569
|
-
required: string[];
|
|
51570
|
-
type: string;
|
|
51571
|
-
} | {
|
|
51572
|
-
description: string;
|
|
51573
|
-
properties: {
|
|
51574
|
-
created_at: {
|
|
51575
|
-
format: string;
|
|
51576
|
-
type: string;
|
|
51577
|
-
};
|
|
51578
|
-
error_code: {
|
|
51579
|
-
description: string;
|
|
51580
|
-
enum: string[];
|
|
51581
|
-
type: string;
|
|
51582
|
-
};
|
|
51583
|
-
message: {
|
|
51584
|
-
type: string;
|
|
51585
|
-
};
|
|
51586
|
-
can_tailscale_proxy_reach_bridge?: never;
|
|
51587
|
-
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
51588
|
-
is_bridge_socks_server_healthy?: never;
|
|
51589
|
-
is_tailscale_proxy_reachable?: never;
|
|
51590
|
-
is_tailscale_proxy_socks_server_healthy?: never;
|
|
51591
|
-
};
|
|
51592
|
-
required: string[];
|
|
51593
|
-
type: string;
|
|
51594
|
-
})[];
|
|
51595
|
-
};
|
|
51596
|
-
type: string;
|
|
51597
|
-
};
|
|
51598
|
-
pairing_code: {
|
|
51599
|
-
maxLength: number;
|
|
51600
|
-
minLength: number;
|
|
51601
|
-
type: string;
|
|
51602
|
-
};
|
|
51603
|
-
pairing_code_expires_at: {
|
|
51604
|
-
format: string;
|
|
51605
|
-
type: string;
|
|
51606
|
-
};
|
|
51607
|
-
tailscale_auth_key: {
|
|
51608
|
-
nullable: boolean;
|
|
51609
|
-
type: string;
|
|
51610
|
-
};
|
|
51611
|
-
tailscale_hostname: {
|
|
51612
|
-
type: string;
|
|
51613
|
-
};
|
|
51614
|
-
telemetry_token: {
|
|
51615
|
-
nullable: boolean;
|
|
51616
|
-
type: string;
|
|
51617
|
-
};
|
|
51618
|
-
telemetry_token_expires_at: {
|
|
51619
|
-
format: string;
|
|
51620
|
-
nullable: boolean;
|
|
51621
|
-
type: string;
|
|
51622
|
-
};
|
|
51623
|
-
telemetry_url: {
|
|
51624
|
-
nullable: boolean;
|
|
51625
|
-
type: string;
|
|
51626
|
-
};
|
|
51627
|
-
};
|
|
51628
|
-
required: string[];
|
|
51629
|
-
type: string;
|
|
51630
|
-
'x-route-path': string;
|
|
51631
|
-
'x-undocumented': string;
|
|
51839
|
+
magic_link: {
|
|
51840
|
+
$ref: string;
|
|
51632
51841
|
};
|
|
51633
51842
|
ok: {
|
|
51634
51843
|
type: string;
|
|
@@ -51649,7 +51858,7 @@ declare const _default: {
|
|
|
51649
51858
|
};
|
|
51650
51859
|
};
|
|
51651
51860
|
security: {
|
|
51652
|
-
|
|
51861
|
+
api_key: never[];
|
|
51653
51862
|
}[];
|
|
51654
51863
|
summary: string;
|
|
51655
51864
|
tags: never[];
|
|
@@ -51716,9 +51925,13 @@ declare const _default: {
|
|
|
51716
51925
|
};
|
|
51717
51926
|
};
|
|
51718
51927
|
type: string;
|
|
51928
|
+
'x-route-path': string;
|
|
51929
|
+
'x-undocumented': string;
|
|
51719
51930
|
};
|
|
51720
51931
|
type: string;
|
|
51721
51932
|
properties?: never;
|
|
51933
|
+
'x-route-path'?: never;
|
|
51934
|
+
'x-undocumented'?: never;
|
|
51722
51935
|
} | {
|
|
51723
51936
|
properties: {
|
|
51724
51937
|
custom_metadata: {
|
|
@@ -51765,6 +51978,8 @@ declare const _default: {
|
|
|
51765
51978
|
};
|
|
51766
51979
|
};
|
|
51767
51980
|
type: string;
|
|
51981
|
+
'x-route-path': string;
|
|
51982
|
+
'x-undocumented': string;
|
|
51768
51983
|
items?: never;
|
|
51769
51984
|
})[];
|
|
51770
51985
|
};
|
|
@@ -58160,6 +58375,7 @@ interface Routes {
|
|
|
58160
58375
|
queryParams: {};
|
|
58161
58376
|
jsonBody: {};
|
|
58162
58377
|
commonParams: {
|
|
58378
|
+
customer_ids?: string[] | undefined;
|
|
58163
58379
|
/** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
|
|
58164
58380
|
device_id?: string | undefined;
|
|
58165
58381
|
/** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
|
|
@@ -63340,6 +63556,8 @@ interface Routes {
|
|
|
63340
63556
|
acs_system_id: string;
|
|
63341
63557
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63342
63558
|
workspace_id: string;
|
|
63559
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
63560
|
+
connected_account_id: string;
|
|
63343
63561
|
/** Name of the access group. */
|
|
63344
63562
|
name: string;
|
|
63345
63563
|
/**
|
|
@@ -63390,6 +63608,8 @@ interface Routes {
|
|
|
63390
63608
|
acs_system_id: string;
|
|
63391
63609
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63392
63610
|
workspace_id: string;
|
|
63611
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
63612
|
+
connected_account_id: string;
|
|
63393
63613
|
/** Name of the access group. */
|
|
63394
63614
|
name: string;
|
|
63395
63615
|
/**
|
|
@@ -63727,6 +63947,8 @@ interface Routes {
|
|
|
63727
63947
|
acs_system_id: string;
|
|
63728
63948
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63729
63949
|
workspace_id: string;
|
|
63950
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
63951
|
+
connected_account_id: string;
|
|
63730
63952
|
/** Name of the access group. */
|
|
63731
63953
|
name: string;
|
|
63732
63954
|
/**
|
|
@@ -63775,6 +63997,8 @@ interface Routes {
|
|
|
63775
63997
|
acs_system_id: string;
|
|
63776
63998
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63777
63999
|
workspace_id: string;
|
|
64000
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
64001
|
+
connected_account_id: string;
|
|
63778
64002
|
/** Name of the access group. */
|
|
63779
64003
|
name: string;
|
|
63780
64004
|
/**
|
|
@@ -67467,6 +67691,8 @@ interface Routes {
|
|
|
67467
67691
|
acs_encoder_id: string;
|
|
67468
67692
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67469
67693
|
acs_system_id: string;
|
|
67694
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67695
|
+
connected_account_id: string;
|
|
67470
67696
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67471
67697
|
workspace_id: string;
|
|
67472
67698
|
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
@@ -67513,6 +67739,8 @@ interface Routes {
|
|
|
67513
67739
|
acs_encoder_id: string;
|
|
67514
67740
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67515
67741
|
acs_system_id: string;
|
|
67742
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67743
|
+
connected_account_id: string;
|
|
67516
67744
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
67517
67745
|
workspace_id: string;
|
|
67518
67746
|
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
@@ -89283,11 +89511,11 @@ interface Routes {
|
|
|
89283
89511
|
connected_account_ids?: string[] | undefined;
|
|
89284
89512
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
89285
89513
|
connect_webview_id?: string | undefined;
|
|
89286
|
-
/** Device type
|
|
89514
|
+
/** Device type of the noise sensors that you want to list. */
|
|
89287
89515
|
device_type?: ('noiseaware_activity_zone' | 'minut_sensor') | undefined;
|
|
89288
|
-
/**
|
|
89516
|
+
/** Device types of the noise sensors that you want to list. */
|
|
89289
89517
|
device_types?: Array<'noiseaware_activity_zone' | 'minut_sensor'> | undefined;
|
|
89290
|
-
/**
|
|
89518
|
+
/** Manufacturers of the noise sensors that you want to list. */
|
|
89291
89519
|
manufacturer?: ('minut' | 'noiseaware') | undefined;
|
|
89292
89520
|
/** Array of device IDs for which you want to list devices. */
|
|
89293
89521
|
device_ids?: string[] | undefined;
|
|
@@ -91723,12 +91951,19 @@ interface Routes {
|
|
|
91723
91951
|
method: 'POST';
|
|
91724
91952
|
queryParams: {};
|
|
91725
91953
|
jsonBody: {
|
|
91954
|
+
/** ID of the device for which you want to create a noise threshold. */
|
|
91726
91955
|
device_id: string;
|
|
91956
|
+
/** */
|
|
91727
91957
|
sync?: boolean;
|
|
91958
|
+
/** Name of the new noise threshold. */
|
|
91728
91959
|
name?: string | undefined;
|
|
91960
|
+
/** Time at which the new noise threshold should become active daily. */
|
|
91729
91961
|
starts_daily_at: string;
|
|
91962
|
+
/** Time at which the new noise threshold should become inactive daily. */
|
|
91730
91963
|
ends_daily_at: string;
|
|
91964
|
+
/** Noise level in decibels for the new noise threshold. */
|
|
91731
91965
|
noise_threshold_decibels?: number | undefined;
|
|
91966
|
+
/** Noise level in Noiseaware Noise Risk Score (NRS) for the new noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/latest/device-and-system-integration-guides/noiseaware-sensors). */
|
|
91732
91967
|
noise_threshold_nrs?: number | undefined;
|
|
91733
91968
|
};
|
|
91734
91969
|
commonParams: {};
|
|
@@ -92837,14 +93072,21 @@ interface Routes {
|
|
|
92837
93072
|
message: string;
|
|
92838
93073
|
};
|
|
92839
93074
|
};
|
|
92840
|
-
/**
|
|
93075
|
+
/** Represents a [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors/configure-noise-threshold-settings) for a [noise sensor](https://docs.seam.co/latest/capability-guides/noise-sensors). Thresholds represent the limits of noise tolerated at a property, which can be customized for each hour of the day. Each device has its own default thresholds, but you can use the Seam API to modify them. */
|
|
92841
93076
|
noise_threshold: {
|
|
93077
|
+
/** Unique identifier for the noise threshold. */
|
|
92842
93078
|
noise_threshold_id: string;
|
|
93079
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
92843
93080
|
device_id: string;
|
|
93081
|
+
/** Name of the noise threshold. */
|
|
92844
93082
|
name: string;
|
|
93083
|
+
/** Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/latest/device-and-system-integration-guides/noiseaware-sensors). */
|
|
92845
93084
|
noise_threshold_nrs?: number | undefined;
|
|
93085
|
+
/** Time at which the noise threshold should become active daily. */
|
|
92846
93086
|
starts_daily_at: string;
|
|
93087
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
92847
93088
|
ends_daily_at: string;
|
|
93089
|
+
/** Noise level in decibels for the noise threshold. */
|
|
92848
93090
|
noise_threshold_decibels: number;
|
|
92849
93091
|
};
|
|
92850
93092
|
};
|
|
@@ -92854,8 +93096,11 @@ interface Routes {
|
|
|
92854
93096
|
method: 'DELETE' | 'POST';
|
|
92855
93097
|
queryParams: {};
|
|
92856
93098
|
jsonBody: {
|
|
93099
|
+
/** ID of the noise threshold that you want to delete. */
|
|
92857
93100
|
noise_threshold_id: string;
|
|
93101
|
+
/** ID of the device that contains the noise threshold that you want to delete. */
|
|
92858
93102
|
device_id: string;
|
|
93103
|
+
/** */
|
|
92859
93104
|
sync?: boolean;
|
|
92860
93105
|
};
|
|
92861
93106
|
commonParams: {};
|
|
@@ -93972,18 +94217,26 @@ interface Routes {
|
|
|
93972
94217
|
queryParams: {};
|
|
93973
94218
|
jsonBody: {};
|
|
93974
94219
|
commonParams: {
|
|
94220
|
+
/** ID of the noise threshold that you want to get. */
|
|
93975
94221
|
noise_threshold_id: string;
|
|
93976
94222
|
};
|
|
93977
94223
|
formData: {};
|
|
93978
94224
|
jsonResponse: {
|
|
93979
|
-
/**
|
|
94225
|
+
/** Represents a [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors/configure-noise-threshold-settings) for a [noise sensor](https://docs.seam.co/latest/capability-guides/noise-sensors). Thresholds represent the limits of noise tolerated at a property, which can be customized for each hour of the day. Each device has its own default thresholds, but you can use the Seam API to modify them. */
|
|
93980
94226
|
noise_threshold: {
|
|
94227
|
+
/** Unique identifier for the noise threshold. */
|
|
93981
94228
|
noise_threshold_id: string;
|
|
94229
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
93982
94230
|
device_id: string;
|
|
94231
|
+
/** Name of the noise threshold. */
|
|
93983
94232
|
name: string;
|
|
94233
|
+
/** Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/latest/device-and-system-integration-guides/noiseaware-sensors). */
|
|
93984
94234
|
noise_threshold_nrs?: number | undefined;
|
|
94235
|
+
/** Time at which the noise threshold should become active daily. */
|
|
93985
94236
|
starts_daily_at: string;
|
|
94237
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
93986
94238
|
ends_daily_at: string;
|
|
94239
|
+
/** Noise level in decibels for the noise threshold. */
|
|
93987
94240
|
noise_threshold_decibels: number;
|
|
93988
94241
|
};
|
|
93989
94242
|
};
|
|
@@ -93994,18 +94247,27 @@ interface Routes {
|
|
|
93994
94247
|
queryParams: {};
|
|
93995
94248
|
jsonBody: {};
|
|
93996
94249
|
commonParams: {
|
|
94250
|
+
/** ID of the device for which you want to list noise thresholds. */
|
|
93997
94251
|
device_id: string;
|
|
94252
|
+
/** Enables you to limit the returned noise thresholds by whether they are programmed on the noise sensor. To list only noise thresholds that are programmed on the noise sensor, set this parameter to `true`. To list only noise thresholds that are not programmed on the noise sensor, se this parameter to `false`. */
|
|
93998
94253
|
is_programmed?: boolean | undefined;
|
|
93999
94254
|
};
|
|
94000
94255
|
formData: {};
|
|
94001
94256
|
jsonResponse: {
|
|
94002
94257
|
noise_thresholds: Array<{
|
|
94258
|
+
/** Unique identifier for the noise threshold. */
|
|
94003
94259
|
noise_threshold_id: string;
|
|
94260
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
94004
94261
|
device_id: string;
|
|
94262
|
+
/** Name of the noise threshold. */
|
|
94005
94263
|
name: string;
|
|
94264
|
+
/** Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/latest/device-and-system-integration-guides/noiseaware-sensors). */
|
|
94006
94265
|
noise_threshold_nrs?: number | undefined;
|
|
94266
|
+
/** Time at which the noise threshold should become active daily. */
|
|
94007
94267
|
starts_daily_at: string;
|
|
94268
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
94008
94269
|
ends_daily_at: string;
|
|
94270
|
+
/** Noise level in decibels for the noise threshold. */
|
|
94009
94271
|
noise_threshold_decibels: number;
|
|
94010
94272
|
}>;
|
|
94011
94273
|
};
|
|
@@ -94015,13 +94277,21 @@ interface Routes {
|
|
|
94015
94277
|
method: 'PATCH' | 'POST' | 'PUT';
|
|
94016
94278
|
queryParams: {};
|
|
94017
94279
|
jsonBody: {
|
|
94280
|
+
/** ID of the noise threshold that you want to update. */
|
|
94018
94281
|
noise_threshold_id: string;
|
|
94282
|
+
/** ID of the device that contains the noise threshold that you want to update. */
|
|
94019
94283
|
device_id: string;
|
|
94284
|
+
/** */
|
|
94020
94285
|
sync?: boolean;
|
|
94286
|
+
/** Name of the noise threshold that you want to update. */
|
|
94021
94287
|
name?: string | undefined;
|
|
94288
|
+
/** Time at which the noise threshold should become active daily. */
|
|
94022
94289
|
starts_daily_at?: string | undefined;
|
|
94290
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
94023
94291
|
ends_daily_at?: string | undefined;
|
|
94292
|
+
/** Noise level in decibels for the noise threshold. */
|
|
94024
94293
|
noise_threshold_decibels?: number | undefined;
|
|
94294
|
+
/** Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/latest/device-and-system-integration-guides/noiseaware-sensors). */
|
|
94025
94295
|
noise_threshold_nrs?: number | undefined;
|
|
94026
94296
|
};
|
|
94027
94297
|
commonParams: {};
|
|
@@ -95137,6 +95407,7 @@ interface Routes {
|
|
|
95137
95407
|
method: 'POST';
|
|
95138
95408
|
queryParams: {};
|
|
95139
95409
|
jsonBody: {
|
|
95410
|
+
/** ID of the device for which you want to simulate the triggering of a noise threshold. */
|
|
95140
95411
|
device_id: string;
|
|
95141
95412
|
};
|
|
95142
95413
|
commonParams: {};
|
|
@@ -95978,6 +96249,32 @@ interface Routes {
|
|
|
95978
96249
|
};
|
|
95979
96250
|
};
|
|
95980
96251
|
};
|
|
96252
|
+
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
96253
|
+
route: '/seam/partner/v1/building_blocks/spaces/auto_map';
|
|
96254
|
+
method: 'GET' | 'POST';
|
|
96255
|
+
queryParams: {};
|
|
96256
|
+
jsonBody: {};
|
|
96257
|
+
commonParams: {
|
|
96258
|
+
collection_key: string;
|
|
96259
|
+
};
|
|
96260
|
+
formData: {};
|
|
96261
|
+
jsonResponse: {
|
|
96262
|
+
spaces: Array<{
|
|
96263
|
+
name: string;
|
|
96264
|
+
partner_resource_key: string;
|
|
96265
|
+
devices: Array<{
|
|
96266
|
+
device_id: string;
|
|
96267
|
+
device_type: 'lock' | 'thermostat' | 'sensor';
|
|
96268
|
+
name: string;
|
|
96269
|
+
}>;
|
|
96270
|
+
acs_entrances: Array<{
|
|
96271
|
+
acs_entrance_id: string;
|
|
96272
|
+
name: string;
|
|
96273
|
+
}>;
|
|
96274
|
+
needs_review?: boolean | undefined;
|
|
96275
|
+
}>;
|
|
96276
|
+
};
|
|
96277
|
+
};
|
|
95981
96278
|
'/seam/partner/v1/resources/list': {
|
|
95982
96279
|
route: '/seam/partner/v1/resources/list';
|
|
95983
96280
|
method: 'GET' | 'POST';
|
|
@@ -110642,54 +110939,37 @@ interface Routes {
|
|
|
110642
110939
|
};
|
|
110643
110940
|
};
|
|
110644
110941
|
};
|
|
110645
|
-
'/unstable_partner/building_blocks/
|
|
110646
|
-
route: '/unstable_partner/building_blocks/
|
|
110647
|
-
method: 'POST';
|
|
110942
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
110943
|
+
route: '/unstable_partner/building_blocks/generate_magic_link';
|
|
110944
|
+
method: 'POST' | 'GET';
|
|
110648
110945
|
queryParams: {};
|
|
110649
|
-
jsonBody: {
|
|
110650
|
-
|
|
110651
|
-
|
|
110652
|
-
|
|
110946
|
+
jsonBody: {};
|
|
110947
|
+
commonParams: {
|
|
110948
|
+
building_block_type: 'connect_account';
|
|
110949
|
+
customer_key: string;
|
|
110950
|
+
} | {
|
|
110951
|
+
building_block_type: 'manage_devices';
|
|
110952
|
+
customer_key: string;
|
|
110953
|
+
} | {
|
|
110954
|
+
building_block_type: 'organize_spaces';
|
|
110955
|
+
customer_key: string;
|
|
110956
|
+
partner_resources: Array<{
|
|
110957
|
+
partner_resource_key: string;
|
|
110958
|
+
name: string;
|
|
110959
|
+
description?: string | undefined;
|
|
110960
|
+
custom_metadata?: Record<string, string> | undefined;
|
|
110961
|
+
}>;
|
|
110653
110962
|
};
|
|
110654
|
-
commonParams: {};
|
|
110655
110963
|
formData: {};
|
|
110656
110964
|
jsonResponse: {
|
|
110657
110965
|
/** */
|
|
110658
|
-
|
|
110966
|
+
magic_link: {
|
|
110967
|
+
url: string;
|
|
110968
|
+
building_block_type: 'connect_account' | 'manage_devices' | 'organize_spaces';
|
|
110969
|
+
customer_key: string;
|
|
110970
|
+
expires_at: string;
|
|
110971
|
+
workspace_id: string;
|
|
110659
110972
|
created_at: string;
|
|
110660
|
-
bridge_client_session_id: string;
|
|
110661
|
-
bridge_client_session_token: string;
|
|
110662
|
-
pairing_code: string;
|
|
110663
|
-
pairing_code_expires_at: string;
|
|
110664
|
-
tailscale_hostname: string;
|
|
110665
|
-
tailscale_auth_key: string | null;
|
|
110666
|
-
bridge_client_name: string;
|
|
110667
|
-
bridge_client_time_zone: string;
|
|
110668
|
-
bridge_client_machine_identifier_key: string;
|
|
110669
|
-
errors: Array<{
|
|
110670
|
-
message: string;
|
|
110671
|
-
created_at: string;
|
|
110672
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110673
|
-
error_code: 'bridge_lan_unreachable';
|
|
110674
|
-
/** Seam cannot reach the tailscale proxy */
|
|
110675
|
-
is_tailscale_proxy_reachable: boolean | null;
|
|
110676
|
-
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
110677
|
-
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
110678
|
-
/** Tailscale proxy cannot reach the Tailscale network */
|
|
110679
|
-
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
110680
|
-
/** Tailscale proxy cannot reach the bridge */
|
|
110681
|
-
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
110682
|
-
/** Bridge's SOCKS server is unhealthy */
|
|
110683
|
-
is_bridge_socks_server_healthy: boolean | null;
|
|
110684
|
-
} | {
|
|
110685
|
-
message: string;
|
|
110686
|
-
created_at: string;
|
|
110687
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110688
|
-
error_code: 'no_communication_from_bridge';
|
|
110689
|
-
}>;
|
|
110690
|
-
telemetry_token: string | null;
|
|
110691
|
-
telemetry_token_expires_at: string | null;
|
|
110692
|
-
telemetry_url: string | null;
|
|
110693
110973
|
};
|
|
110694
110974
|
};
|
|
110695
110975
|
};
|