@seamapi/types 1.406.7 → 1.406.9
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 +597 -79
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +695 -16
- 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/magic-link.d.ts +5 -6
- package/lib/seam/connect/models/partner/magic-link.js +6 -2
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -1
- package/lib/seam/connect/models/partner/resources.d.ts +16 -0
- package/lib/seam/connect/models/partner/resources.js +11 -0
- package/lib/seam/connect/models/partner/resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +521 -8
- package/lib/seam/connect/openapi.js +566 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +165 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -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/magic-link.ts +9 -2
- package/src/lib/seam/connect/models/partner/resources.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +622 -61
- package/src/lib/seam/connect/route-types.ts +180 -8
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;
|
|
@@ -30013,10 +30032,6 @@ declare const _default: {
|
|
|
30013
30032
|
format: string;
|
|
30014
30033
|
type: string;
|
|
30015
30034
|
};
|
|
30016
|
-
customer_id: {
|
|
30017
|
-
format: string;
|
|
30018
|
-
type: string;
|
|
30019
|
-
};
|
|
30020
30035
|
customer_key: {
|
|
30021
30036
|
type: string;
|
|
30022
30037
|
};
|
|
@@ -30061,30 +30076,38 @@ declare const _default: {
|
|
|
30061
30076
|
'x-route-path': string;
|
|
30062
30077
|
};
|
|
30063
30078
|
noise_threshold: {
|
|
30079
|
+
description: string;
|
|
30064
30080
|
properties: {
|
|
30065
30081
|
device_id: {
|
|
30082
|
+
description: string;
|
|
30066
30083
|
format: string;
|
|
30067
30084
|
type: string;
|
|
30068
30085
|
};
|
|
30069
30086
|
ends_daily_at: {
|
|
30087
|
+
description: string;
|
|
30070
30088
|
type: string;
|
|
30071
30089
|
};
|
|
30072
30090
|
name: {
|
|
30091
|
+
description: string;
|
|
30073
30092
|
type: string;
|
|
30074
30093
|
};
|
|
30075
30094
|
noise_threshold_decibels: {
|
|
30095
|
+
description: string;
|
|
30076
30096
|
format: string;
|
|
30077
30097
|
type: string;
|
|
30078
30098
|
};
|
|
30079
30099
|
noise_threshold_id: {
|
|
30100
|
+
description: string;
|
|
30080
30101
|
format: string;
|
|
30081
30102
|
type: string;
|
|
30082
30103
|
};
|
|
30083
30104
|
noise_threshold_nrs: {
|
|
30105
|
+
description: string;
|
|
30084
30106
|
format: string;
|
|
30085
30107
|
type: string;
|
|
30086
30108
|
};
|
|
30087
30109
|
starts_daily_at: {
|
|
30110
|
+
description: string;
|
|
30088
30111
|
type: string;
|
|
30089
30112
|
};
|
|
30090
30113
|
};
|
|
@@ -31028,6 +31051,11 @@ declare const _default: {
|
|
|
31028
31051
|
format: string;
|
|
31029
31052
|
type: string;
|
|
31030
31053
|
};
|
|
31054
|
+
connected_account_id: {
|
|
31055
|
+
description: string;
|
|
31056
|
+
format: string;
|
|
31057
|
+
type: string;
|
|
31058
|
+
};
|
|
31031
31059
|
created_at: {
|
|
31032
31060
|
description: string;
|
|
31033
31061
|
format: string;
|
|
@@ -32499,22 +32527,32 @@ declare const _default: {
|
|
|
32499
32527
|
};
|
|
32500
32528
|
};
|
|
32501
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
|
+
} | {
|
|
32502
32536
|
client_session: never[];
|
|
32537
|
+
client_session_with_customer?: never;
|
|
32503
32538
|
pat_with_workspace?: never;
|
|
32504
32539
|
console_session_with_workspace?: never;
|
|
32505
32540
|
api_key?: never;
|
|
32506
32541
|
} | {
|
|
32507
32542
|
pat_with_workspace: never[];
|
|
32543
|
+
client_session_with_customer?: never;
|
|
32508
32544
|
client_session?: never;
|
|
32509
32545
|
console_session_with_workspace?: never;
|
|
32510
32546
|
api_key?: never;
|
|
32511
32547
|
} | {
|
|
32512
32548
|
console_session_with_workspace: never[];
|
|
32549
|
+
client_session_with_customer?: never;
|
|
32513
32550
|
client_session?: never;
|
|
32514
32551
|
pat_with_workspace?: never;
|
|
32515
32552
|
api_key?: never;
|
|
32516
32553
|
} | {
|
|
32517
32554
|
api_key: never[];
|
|
32555
|
+
client_session_with_customer?: never;
|
|
32518
32556
|
client_session?: never;
|
|
32519
32557
|
pat_with_workspace?: never;
|
|
32520
32558
|
console_session_with_workspace?: never;
|
|
@@ -32887,22 +32925,32 @@ declare const _default: {
|
|
|
32887
32925
|
};
|
|
32888
32926
|
security: ({
|
|
32889
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;
|
|
32890
32935
|
pat_with_workspace?: never;
|
|
32891
32936
|
console_session_with_workspace?: never;
|
|
32892
32937
|
api_key?: never;
|
|
32893
32938
|
} | {
|
|
32894
32939
|
pat_with_workspace: never[];
|
|
32895
32940
|
client_session?: never;
|
|
32941
|
+
client_session_with_customer?: never;
|
|
32896
32942
|
console_session_with_workspace?: never;
|
|
32897
32943
|
api_key?: never;
|
|
32898
32944
|
} | {
|
|
32899
32945
|
console_session_with_workspace: never[];
|
|
32900
32946
|
client_session?: never;
|
|
32947
|
+
client_session_with_customer?: never;
|
|
32901
32948
|
pat_with_workspace?: never;
|
|
32902
32949
|
api_key?: never;
|
|
32903
32950
|
} | {
|
|
32904
32951
|
api_key: never[];
|
|
32905
32952
|
client_session?: never;
|
|
32953
|
+
client_session_with_customer?: never;
|
|
32906
32954
|
pat_with_workspace?: never;
|
|
32907
32955
|
console_session_with_workspace?: never;
|
|
32908
32956
|
})[];
|
|
@@ -33054,21 +33102,31 @@ declare const _default: {
|
|
|
33054
33102
|
access_token?: never;
|
|
33055
33103
|
console_session_with_workspace?: never;
|
|
33056
33104
|
client_session?: never;
|
|
33105
|
+
client_session_with_customer?: never;
|
|
33057
33106
|
} | {
|
|
33058
33107
|
access_token: never[];
|
|
33059
33108
|
api_key?: never;
|
|
33060
33109
|
console_session_with_workspace?: never;
|
|
33061
33110
|
client_session?: never;
|
|
33111
|
+
client_session_with_customer?: never;
|
|
33062
33112
|
} | {
|
|
33063
33113
|
console_session_with_workspace: never[];
|
|
33064
33114
|
api_key?: never;
|
|
33065
33115
|
access_token?: never;
|
|
33066
33116
|
client_session?: never;
|
|
33117
|
+
client_session_with_customer?: never;
|
|
33067
33118
|
} | {
|
|
33068
33119
|
client_session: never[];
|
|
33069
33120
|
api_key?: never;
|
|
33070
33121
|
access_token?: never;
|
|
33071
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;
|
|
33072
33130
|
})[];
|
|
33073
33131
|
summary: string;
|
|
33074
33132
|
tags: string[];
|
|
@@ -33096,6 +33154,13 @@ declare const _default: {
|
|
|
33096
33154
|
};
|
|
33097
33155
|
type: string;
|
|
33098
33156
|
};
|
|
33157
|
+
customer_ids: {
|
|
33158
|
+
items: {
|
|
33159
|
+
format: string;
|
|
33160
|
+
type: string;
|
|
33161
|
+
};
|
|
33162
|
+
type: string;
|
|
33163
|
+
};
|
|
33099
33164
|
device_id: {
|
|
33100
33165
|
description: string;
|
|
33101
33166
|
format: string;
|
|
@@ -33157,22 +33222,32 @@ declare const _default: {
|
|
|
33157
33222
|
};
|
|
33158
33223
|
security: ({
|
|
33159
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;
|
|
33160
33232
|
pat_with_workspace?: never;
|
|
33161
33233
|
console_session_with_workspace?: never;
|
|
33162
33234
|
api_key?: never;
|
|
33163
33235
|
} | {
|
|
33164
33236
|
pat_with_workspace: never[];
|
|
33165
33237
|
client_session?: never;
|
|
33238
|
+
client_session_with_customer?: never;
|
|
33166
33239
|
console_session_with_workspace?: never;
|
|
33167
33240
|
api_key?: never;
|
|
33168
33241
|
} | {
|
|
33169
33242
|
console_session_with_workspace: never[];
|
|
33170
33243
|
client_session?: never;
|
|
33244
|
+
client_session_with_customer?: never;
|
|
33171
33245
|
pat_with_workspace?: never;
|
|
33172
33246
|
api_key?: never;
|
|
33173
33247
|
} | {
|
|
33174
33248
|
api_key: never[];
|
|
33175
33249
|
client_session?: never;
|
|
33250
|
+
client_session_with_customer?: never;
|
|
33176
33251
|
pat_with_workspace?: never;
|
|
33177
33252
|
console_session_with_workspace?: never;
|
|
33178
33253
|
})[];
|
|
@@ -43307,22 +43382,32 @@ declare const _default: {
|
|
|
43307
43382
|
};
|
|
43308
43383
|
security: ({
|
|
43309
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;
|
|
43310
43392
|
pat_with_workspace?: never;
|
|
43311
43393
|
console_session_with_workspace?: never;
|
|
43312
43394
|
api_key?: never;
|
|
43313
43395
|
} | {
|
|
43314
43396
|
pat_with_workspace: never[];
|
|
43315
43397
|
client_session?: never;
|
|
43398
|
+
client_session_with_customer?: never;
|
|
43316
43399
|
console_session_with_workspace?: never;
|
|
43317
43400
|
api_key?: never;
|
|
43318
43401
|
} | {
|
|
43319
43402
|
console_session_with_workspace: never[];
|
|
43320
43403
|
client_session?: never;
|
|
43404
|
+
client_session_with_customer?: never;
|
|
43321
43405
|
pat_with_workspace?: never;
|
|
43322
43406
|
api_key?: never;
|
|
43323
43407
|
} | {
|
|
43324
43408
|
api_key: never[];
|
|
43325
43409
|
client_session?: never;
|
|
43410
|
+
client_session_with_customer?: never;
|
|
43326
43411
|
pat_with_workspace?: never;
|
|
43327
43412
|
console_session_with_workspace?: never;
|
|
43328
43413
|
})[];
|
|
@@ -43537,22 +43622,32 @@ declare const _default: {
|
|
|
43537
43622
|
};
|
|
43538
43623
|
security: ({
|
|
43539
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;
|
|
43540
43632
|
pat_with_workspace?: never;
|
|
43541
43633
|
console_session_with_workspace?: never;
|
|
43542
43634
|
api_key?: never;
|
|
43543
43635
|
} | {
|
|
43544
43636
|
pat_with_workspace: never[];
|
|
43545
43637
|
client_session?: never;
|
|
43638
|
+
client_session_with_customer?: never;
|
|
43546
43639
|
console_session_with_workspace?: never;
|
|
43547
43640
|
api_key?: never;
|
|
43548
43641
|
} | {
|
|
43549
43642
|
console_session_with_workspace: never[];
|
|
43550
43643
|
client_session?: never;
|
|
43644
|
+
client_session_with_customer?: never;
|
|
43551
43645
|
pat_with_workspace?: never;
|
|
43552
43646
|
api_key?: never;
|
|
43553
43647
|
} | {
|
|
43554
43648
|
api_key: never[];
|
|
43555
43649
|
client_session?: never;
|
|
43650
|
+
client_session_with_customer?: never;
|
|
43556
43651
|
pat_with_workspace?: never;
|
|
43557
43652
|
console_session_with_workspace?: never;
|
|
43558
43653
|
})[];
|
|
@@ -43703,6 +43798,7 @@ declare const _default: {
|
|
|
43703
43798
|
};
|
|
43704
43799
|
'/noise_sensors/list': {
|
|
43705
43800
|
post: {
|
|
43801
|
+
description: string;
|
|
43706
43802
|
operationId: string;
|
|
43707
43803
|
requestBody: {
|
|
43708
43804
|
content: {
|
|
@@ -43882,10 +43978,12 @@ declare const _default: {
|
|
|
43882
43978
|
'x-fern-sdk-method-name': string;
|
|
43883
43979
|
'x-fern-sdk-return-value': string;
|
|
43884
43980
|
'x-response-key': string;
|
|
43981
|
+
'x-title': string;
|
|
43885
43982
|
};
|
|
43886
43983
|
};
|
|
43887
43984
|
'/noise_sensors/noise_thresholds/create': {
|
|
43888
43985
|
post: {
|
|
43986
|
+
description: string;
|
|
43889
43987
|
operationId: string;
|
|
43890
43988
|
requestBody: {
|
|
43891
43989
|
content: {
|
|
@@ -43893,29 +43991,36 @@ declare const _default: {
|
|
|
43893
43991
|
schema: {
|
|
43894
43992
|
properties: {
|
|
43895
43993
|
device_id: {
|
|
43994
|
+
description: string;
|
|
43896
43995
|
format: string;
|
|
43897
43996
|
type: string;
|
|
43898
43997
|
};
|
|
43899
43998
|
ends_daily_at: {
|
|
43999
|
+
description: string;
|
|
43900
44000
|
type: string;
|
|
43901
44001
|
};
|
|
43902
44002
|
name: {
|
|
44003
|
+
description: string;
|
|
43903
44004
|
type: string;
|
|
43904
44005
|
};
|
|
43905
44006
|
noise_threshold_decibels: {
|
|
44007
|
+
description: string;
|
|
43906
44008
|
format: string;
|
|
43907
44009
|
type: string;
|
|
43908
44010
|
};
|
|
43909
44011
|
noise_threshold_nrs: {
|
|
44012
|
+
description: string;
|
|
43910
44013
|
format: string;
|
|
43911
44014
|
type: string;
|
|
43912
44015
|
};
|
|
43913
44016
|
starts_daily_at: {
|
|
44017
|
+
description: string;
|
|
43914
44018
|
type: string;
|
|
43915
44019
|
};
|
|
43916
44020
|
sync: {
|
|
43917
44021
|
default: boolean;
|
|
43918
44022
|
type: string;
|
|
44023
|
+
'x-undocumented': string;
|
|
43919
44024
|
};
|
|
43920
44025
|
};
|
|
43921
44026
|
required: string[];
|
|
@@ -43974,10 +44079,12 @@ declare const _default: {
|
|
|
43974
44079
|
'x-fern-sdk-method-name': string;
|
|
43975
44080
|
'x-fern-sdk-return-value': string;
|
|
43976
44081
|
'x-response-key': string;
|
|
44082
|
+
'x-title': string;
|
|
43977
44083
|
};
|
|
43978
44084
|
};
|
|
43979
44085
|
'/noise_sensors/noise_thresholds/delete': {
|
|
43980
44086
|
post: {
|
|
44087
|
+
description: string;
|
|
43981
44088
|
operationId: string;
|
|
43982
44089
|
requestBody: {
|
|
43983
44090
|
content: {
|
|
@@ -43985,16 +44092,19 @@ declare const _default: {
|
|
|
43985
44092
|
schema: {
|
|
43986
44093
|
properties: {
|
|
43987
44094
|
device_id: {
|
|
44095
|
+
description: string;
|
|
43988
44096
|
format: string;
|
|
43989
44097
|
type: string;
|
|
43990
44098
|
};
|
|
43991
44099
|
noise_threshold_id: {
|
|
44100
|
+
description: string;
|
|
43992
44101
|
format: string;
|
|
43993
44102
|
type: string;
|
|
43994
44103
|
};
|
|
43995
44104
|
sync: {
|
|
43996
44105
|
default: boolean;
|
|
43997
44106
|
type: string;
|
|
44107
|
+
'x-undocumented': string;
|
|
43998
44108
|
};
|
|
43999
44109
|
};
|
|
44000
44110
|
required: string[];
|
|
@@ -44049,10 +44159,12 @@ declare const _default: {
|
|
|
44049
44159
|
'x-fern-sdk-group-name': string[];
|
|
44050
44160
|
'x-fern-sdk-method-name': string;
|
|
44051
44161
|
'x-response-key': null;
|
|
44162
|
+
'x-title': string;
|
|
44052
44163
|
};
|
|
44053
44164
|
};
|
|
44054
44165
|
'/noise_sensors/noise_thresholds/get': {
|
|
44055
44166
|
post: {
|
|
44167
|
+
description: string;
|
|
44056
44168
|
operationId: string;
|
|
44057
44169
|
requestBody: {
|
|
44058
44170
|
content: {
|
|
@@ -44060,6 +44172,7 @@ declare const _default: {
|
|
|
44060
44172
|
schema: {
|
|
44061
44173
|
properties: {
|
|
44062
44174
|
noise_threshold_id: {
|
|
44175
|
+
description: string;
|
|
44063
44176
|
format: string;
|
|
44064
44177
|
type: string;
|
|
44065
44178
|
};
|
|
@@ -44116,10 +44229,12 @@ declare const _default: {
|
|
|
44116
44229
|
'x-fern-sdk-method-name': string;
|
|
44117
44230
|
'x-fern-sdk-return-value': string;
|
|
44118
44231
|
'x-response-key': string;
|
|
44232
|
+
'x-title': string;
|
|
44119
44233
|
};
|
|
44120
44234
|
};
|
|
44121
44235
|
'/noise_sensors/noise_thresholds/list': {
|
|
44122
44236
|
post: {
|
|
44237
|
+
description: string;
|
|
44123
44238
|
operationId: string;
|
|
44124
44239
|
requestBody: {
|
|
44125
44240
|
content: {
|
|
@@ -44127,11 +44242,14 @@ declare const _default: {
|
|
|
44127
44242
|
schema: {
|
|
44128
44243
|
properties: {
|
|
44129
44244
|
device_id: {
|
|
44245
|
+
description: string;
|
|
44130
44246
|
format: string;
|
|
44131
44247
|
type: string;
|
|
44132
44248
|
};
|
|
44133
44249
|
is_programmed: {
|
|
44250
|
+
description: string;
|
|
44134
44251
|
type: string;
|
|
44252
|
+
'x-undocumented': string;
|
|
44135
44253
|
};
|
|
44136
44254
|
};
|
|
44137
44255
|
required: string[];
|
|
@@ -44197,10 +44315,12 @@ declare const _default: {
|
|
|
44197
44315
|
'x-fern-sdk-method-name': string;
|
|
44198
44316
|
'x-fern-sdk-return-value': string;
|
|
44199
44317
|
'x-response-key': string;
|
|
44318
|
+
'x-title': string;
|
|
44200
44319
|
};
|
|
44201
44320
|
};
|
|
44202
44321
|
'/noise_sensors/noise_thresholds/update': {
|
|
44203
44322
|
patch: {
|
|
44323
|
+
description: string;
|
|
44204
44324
|
operationId: string;
|
|
44205
44325
|
requestBody: {
|
|
44206
44326
|
content: {
|
|
@@ -44208,33 +44328,41 @@ declare const _default: {
|
|
|
44208
44328
|
schema: {
|
|
44209
44329
|
properties: {
|
|
44210
44330
|
device_id: {
|
|
44331
|
+
description: string;
|
|
44211
44332
|
format: string;
|
|
44212
44333
|
type: string;
|
|
44213
44334
|
};
|
|
44214
44335
|
ends_daily_at: {
|
|
44336
|
+
description: string;
|
|
44215
44337
|
type: string;
|
|
44216
44338
|
};
|
|
44217
44339
|
name: {
|
|
44340
|
+
description: string;
|
|
44218
44341
|
type: string;
|
|
44219
44342
|
};
|
|
44220
44343
|
noise_threshold_decibels: {
|
|
44344
|
+
description: string;
|
|
44221
44345
|
format: string;
|
|
44222
44346
|
type: string;
|
|
44223
44347
|
};
|
|
44224
44348
|
noise_threshold_id: {
|
|
44349
|
+
description: string;
|
|
44225
44350
|
format: string;
|
|
44226
44351
|
type: string;
|
|
44227
44352
|
};
|
|
44228
44353
|
noise_threshold_nrs: {
|
|
44354
|
+
description: string;
|
|
44229
44355
|
format: string;
|
|
44230
44356
|
type: string;
|
|
44231
44357
|
};
|
|
44232
44358
|
starts_daily_at: {
|
|
44359
|
+
description: string;
|
|
44233
44360
|
type: string;
|
|
44234
44361
|
};
|
|
44235
44362
|
sync: {
|
|
44236
44363
|
default: boolean;
|
|
44237
44364
|
type: string;
|
|
44365
|
+
'x-undocumented': string;
|
|
44238
44366
|
};
|
|
44239
44367
|
};
|
|
44240
44368
|
required: string[];
|
|
@@ -44288,8 +44416,10 @@ declare const _default: {
|
|
|
44288
44416
|
'x-action-attempt-type': string;
|
|
44289
44417
|
'x-fern-ignore': boolean;
|
|
44290
44418
|
'x-response-key': null;
|
|
44419
|
+
'x-title': string;
|
|
44291
44420
|
};
|
|
44292
44421
|
post: {
|
|
44422
|
+
description: string;
|
|
44293
44423
|
operationId: string;
|
|
44294
44424
|
requestBody: {
|
|
44295
44425
|
content: {
|
|
@@ -44297,33 +44427,41 @@ declare const _default: {
|
|
|
44297
44427
|
schema: {
|
|
44298
44428
|
properties: {
|
|
44299
44429
|
device_id: {
|
|
44430
|
+
description: string;
|
|
44300
44431
|
format: string;
|
|
44301
44432
|
type: string;
|
|
44302
44433
|
};
|
|
44303
44434
|
ends_daily_at: {
|
|
44435
|
+
description: string;
|
|
44304
44436
|
type: string;
|
|
44305
44437
|
};
|
|
44306
44438
|
name: {
|
|
44439
|
+
description: string;
|
|
44307
44440
|
type: string;
|
|
44308
44441
|
};
|
|
44309
44442
|
noise_threshold_decibels: {
|
|
44443
|
+
description: string;
|
|
44310
44444
|
format: string;
|
|
44311
44445
|
type: string;
|
|
44312
44446
|
};
|
|
44313
44447
|
noise_threshold_id: {
|
|
44448
|
+
description: string;
|
|
44314
44449
|
format: string;
|
|
44315
44450
|
type: string;
|
|
44316
44451
|
};
|
|
44317
44452
|
noise_threshold_nrs: {
|
|
44453
|
+
description: string;
|
|
44318
44454
|
format: string;
|
|
44319
44455
|
type: string;
|
|
44320
44456
|
};
|
|
44321
44457
|
starts_daily_at: {
|
|
44458
|
+
description: string;
|
|
44322
44459
|
type: string;
|
|
44323
44460
|
};
|
|
44324
44461
|
sync: {
|
|
44325
44462
|
default: boolean;
|
|
44326
44463
|
type: string;
|
|
44464
|
+
'x-undocumented': string;
|
|
44327
44465
|
};
|
|
44328
44466
|
};
|
|
44329
44467
|
required: string[];
|
|
@@ -44378,8 +44516,10 @@ declare const _default: {
|
|
|
44378
44516
|
'x-fern-sdk-group-name': string[];
|
|
44379
44517
|
'x-fern-sdk-method-name': string;
|
|
44380
44518
|
'x-response-key': null;
|
|
44519
|
+
'x-title': string;
|
|
44381
44520
|
};
|
|
44382
44521
|
put: {
|
|
44522
|
+
description: string;
|
|
44383
44523
|
operationId: string;
|
|
44384
44524
|
requestBody: {
|
|
44385
44525
|
content: {
|
|
@@ -44387,33 +44527,41 @@ declare const _default: {
|
|
|
44387
44527
|
schema: {
|
|
44388
44528
|
properties: {
|
|
44389
44529
|
device_id: {
|
|
44530
|
+
description: string;
|
|
44390
44531
|
format: string;
|
|
44391
44532
|
type: string;
|
|
44392
44533
|
};
|
|
44393
44534
|
ends_daily_at: {
|
|
44535
|
+
description: string;
|
|
44394
44536
|
type: string;
|
|
44395
44537
|
};
|
|
44396
44538
|
name: {
|
|
44539
|
+
description: string;
|
|
44397
44540
|
type: string;
|
|
44398
44541
|
};
|
|
44399
44542
|
noise_threshold_decibels: {
|
|
44543
|
+
description: string;
|
|
44400
44544
|
format: string;
|
|
44401
44545
|
type: string;
|
|
44402
44546
|
};
|
|
44403
44547
|
noise_threshold_id: {
|
|
44548
|
+
description: string;
|
|
44404
44549
|
format: string;
|
|
44405
44550
|
type: string;
|
|
44406
44551
|
};
|
|
44407
44552
|
noise_threshold_nrs: {
|
|
44553
|
+
description: string;
|
|
44408
44554
|
format: string;
|
|
44409
44555
|
type: string;
|
|
44410
44556
|
};
|
|
44411
44557
|
starts_daily_at: {
|
|
44558
|
+
description: string;
|
|
44412
44559
|
type: string;
|
|
44413
44560
|
};
|
|
44414
44561
|
sync: {
|
|
44415
44562
|
default: boolean;
|
|
44416
44563
|
type: string;
|
|
44564
|
+
'x-undocumented': string;
|
|
44417
44565
|
};
|
|
44418
44566
|
};
|
|
44419
44567
|
required: string[];
|
|
@@ -44467,10 +44615,12 @@ declare const _default: {
|
|
|
44467
44615
|
'x-action-attempt-type': string;
|
|
44468
44616
|
'x-fern-ignore': boolean;
|
|
44469
44617
|
'x-response-key': null;
|
|
44618
|
+
'x-title': string;
|
|
44470
44619
|
};
|
|
44471
44620
|
};
|
|
44472
44621
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
44473
44622
|
post: {
|
|
44623
|
+
description: string;
|
|
44474
44624
|
operationId: string;
|
|
44475
44625
|
requestBody: {
|
|
44476
44626
|
content: {
|
|
@@ -44478,6 +44628,7 @@ declare const _default: {
|
|
|
44478
44628
|
schema: {
|
|
44479
44629
|
properties: {
|
|
44480
44630
|
device_id: {
|
|
44631
|
+
description: string;
|
|
44481
44632
|
format: string;
|
|
44482
44633
|
type: string;
|
|
44483
44634
|
};
|
|
@@ -44530,6 +44681,7 @@ declare const _default: {
|
|
|
44530
44681
|
'x-fern-sdk-group-name': string[];
|
|
44531
44682
|
'x-fern-sdk-method-name': string;
|
|
44532
44683
|
'x-response-key': null;
|
|
44684
|
+
'x-title': string;
|
|
44533
44685
|
};
|
|
44534
44686
|
};
|
|
44535
44687
|
'/phones/deactivate': {
|
|
@@ -46193,6 +46345,114 @@ declare const _default: {
|
|
|
46193
46345
|
'x-undocumented': string;
|
|
46194
46346
|
};
|
|
46195
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
|
+
};
|
|
46196
46456
|
'/seam/partner/v1/resources/list': {
|
|
46197
46457
|
post: {
|
|
46198
46458
|
description: string;
|
|
@@ -51503,7 +51763,167 @@ declare const _default: {
|
|
|
51503
51763
|
'x-undocumented': string;
|
|
51504
51764
|
};
|
|
51505
51765
|
};
|
|
51766
|
+
'/unstable_partner/building_blocks/connect_accounts': {
|
|
51767
|
+
post: {
|
|
51768
|
+
description: string;
|
|
51769
|
+
operationId: string;
|
|
51770
|
+
requestBody: {
|
|
51771
|
+
content: {
|
|
51772
|
+
'application/json': {
|
|
51773
|
+
schema: {
|
|
51774
|
+
properties: {
|
|
51775
|
+
customer_key: {
|
|
51776
|
+
type: string;
|
|
51777
|
+
};
|
|
51778
|
+
};
|
|
51779
|
+
required: string[];
|
|
51780
|
+
type: string;
|
|
51781
|
+
};
|
|
51782
|
+
};
|
|
51783
|
+
};
|
|
51784
|
+
};
|
|
51785
|
+
responses: {
|
|
51786
|
+
200: {
|
|
51787
|
+
content: {
|
|
51788
|
+
'application/json': {
|
|
51789
|
+
schema: {
|
|
51790
|
+
properties: {
|
|
51791
|
+
magic_link: {
|
|
51792
|
+
$ref: string;
|
|
51793
|
+
};
|
|
51794
|
+
ok: {
|
|
51795
|
+
type: string;
|
|
51796
|
+
};
|
|
51797
|
+
};
|
|
51798
|
+
required: string[];
|
|
51799
|
+
type: string;
|
|
51800
|
+
};
|
|
51801
|
+
};
|
|
51802
|
+
};
|
|
51803
|
+
description: string;
|
|
51804
|
+
};
|
|
51805
|
+
400: {
|
|
51806
|
+
description: string;
|
|
51807
|
+
};
|
|
51808
|
+
401: {
|
|
51809
|
+
description: string;
|
|
51810
|
+
};
|
|
51811
|
+
};
|
|
51812
|
+
security: ({
|
|
51813
|
+
pat_with_workspace: never[];
|
|
51814
|
+
console_session_with_workspace?: never;
|
|
51815
|
+
api_key?: never;
|
|
51816
|
+
} | {
|
|
51817
|
+
console_session_with_workspace: never[];
|
|
51818
|
+
pat_with_workspace?: never;
|
|
51819
|
+
api_key?: never;
|
|
51820
|
+
} | {
|
|
51821
|
+
api_key: never[];
|
|
51822
|
+
pat_with_workspace?: never;
|
|
51823
|
+
console_session_with_workspace?: never;
|
|
51824
|
+
})[];
|
|
51825
|
+
summary: string;
|
|
51826
|
+
tags: never[];
|
|
51827
|
+
'x-fern-sdk-group-name': string[];
|
|
51828
|
+
'x-fern-sdk-method-name': string;
|
|
51829
|
+
'x-fern-sdk-return-value': string;
|
|
51830
|
+
'x-response-key': string;
|
|
51831
|
+
'x-title': string;
|
|
51832
|
+
'x-undocumented': string;
|
|
51833
|
+
};
|
|
51834
|
+
};
|
|
51506
51835
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
51836
|
+
post: {
|
|
51837
|
+
description: string;
|
|
51838
|
+
operationId: string;
|
|
51839
|
+
requestBody: {
|
|
51840
|
+
content: {
|
|
51841
|
+
'application/json': {
|
|
51842
|
+
schema: {
|
|
51843
|
+
oneOf: ({
|
|
51844
|
+
properties: {
|
|
51845
|
+
building_block_type: {
|
|
51846
|
+
enum: string[];
|
|
51847
|
+
type: string;
|
|
51848
|
+
};
|
|
51849
|
+
customer_key: {
|
|
51850
|
+
type: string;
|
|
51851
|
+
};
|
|
51852
|
+
collection_key?: never;
|
|
51853
|
+
};
|
|
51854
|
+
required: string[];
|
|
51855
|
+
type: string;
|
|
51856
|
+
} | {
|
|
51857
|
+
properties: {
|
|
51858
|
+
building_block_type: {
|
|
51859
|
+
enum: string[];
|
|
51860
|
+
type: string;
|
|
51861
|
+
};
|
|
51862
|
+
collection_key: {
|
|
51863
|
+
type: string;
|
|
51864
|
+
};
|
|
51865
|
+
customer_key: {
|
|
51866
|
+
type: string;
|
|
51867
|
+
};
|
|
51868
|
+
};
|
|
51869
|
+
required: string[];
|
|
51870
|
+
type: string;
|
|
51871
|
+
})[];
|
|
51872
|
+
};
|
|
51873
|
+
};
|
|
51874
|
+
};
|
|
51875
|
+
};
|
|
51876
|
+
responses: {
|
|
51877
|
+
200: {
|
|
51878
|
+
content: {
|
|
51879
|
+
'application/json': {
|
|
51880
|
+
schema: {
|
|
51881
|
+
properties: {
|
|
51882
|
+
magic_link: {
|
|
51883
|
+
$ref: string;
|
|
51884
|
+
};
|
|
51885
|
+
ok: {
|
|
51886
|
+
type: string;
|
|
51887
|
+
};
|
|
51888
|
+
};
|
|
51889
|
+
required: string[];
|
|
51890
|
+
type: string;
|
|
51891
|
+
};
|
|
51892
|
+
};
|
|
51893
|
+
};
|
|
51894
|
+
description: string;
|
|
51895
|
+
};
|
|
51896
|
+
400: {
|
|
51897
|
+
description: string;
|
|
51898
|
+
};
|
|
51899
|
+
401: {
|
|
51900
|
+
description: string;
|
|
51901
|
+
};
|
|
51902
|
+
};
|
|
51903
|
+
security: ({
|
|
51904
|
+
pat_with_workspace: never[];
|
|
51905
|
+
console_session_with_workspace?: never;
|
|
51906
|
+
api_key?: never;
|
|
51907
|
+
} | {
|
|
51908
|
+
console_session_with_workspace: never[];
|
|
51909
|
+
pat_with_workspace?: never;
|
|
51910
|
+
api_key?: never;
|
|
51911
|
+
} | {
|
|
51912
|
+
api_key: never[];
|
|
51913
|
+
pat_with_workspace?: never;
|
|
51914
|
+
console_session_with_workspace?: never;
|
|
51915
|
+
})[];
|
|
51916
|
+
summary: string;
|
|
51917
|
+
tags: never[];
|
|
51918
|
+
'x-fern-sdk-group-name': string[];
|
|
51919
|
+
'x-fern-sdk-method-name': string;
|
|
51920
|
+
'x-fern-sdk-return-value': string;
|
|
51921
|
+
'x-response-key': string;
|
|
51922
|
+
'x-title': string;
|
|
51923
|
+
'x-undocumented': string;
|
|
51924
|
+
};
|
|
51925
|
+
};
|
|
51926
|
+
'/unstable_partner/building_blocks/manage_devices': {
|
|
51507
51927
|
post: {
|
|
51508
51928
|
description: string;
|
|
51509
51929
|
operationId: string;
|
|
@@ -51512,13 +51932,105 @@ declare const _default: {
|
|
|
51512
51932
|
'application/json': {
|
|
51513
51933
|
schema: {
|
|
51514
51934
|
properties: {
|
|
51515
|
-
|
|
51516
|
-
enum: string[];
|
|
51935
|
+
customer_key: {
|
|
51517
51936
|
type: string;
|
|
51518
51937
|
};
|
|
51938
|
+
};
|
|
51939
|
+
required: string[];
|
|
51940
|
+
type: string;
|
|
51941
|
+
};
|
|
51942
|
+
};
|
|
51943
|
+
};
|
|
51944
|
+
};
|
|
51945
|
+
responses: {
|
|
51946
|
+
200: {
|
|
51947
|
+
content: {
|
|
51948
|
+
'application/json': {
|
|
51949
|
+
schema: {
|
|
51950
|
+
properties: {
|
|
51951
|
+
magic_link: {
|
|
51952
|
+
$ref: string;
|
|
51953
|
+
};
|
|
51954
|
+
ok: {
|
|
51955
|
+
type: string;
|
|
51956
|
+
};
|
|
51957
|
+
};
|
|
51958
|
+
required: string[];
|
|
51959
|
+
type: string;
|
|
51960
|
+
};
|
|
51961
|
+
};
|
|
51962
|
+
};
|
|
51963
|
+
description: string;
|
|
51964
|
+
};
|
|
51965
|
+
400: {
|
|
51966
|
+
description: string;
|
|
51967
|
+
};
|
|
51968
|
+
401: {
|
|
51969
|
+
description: string;
|
|
51970
|
+
};
|
|
51971
|
+
};
|
|
51972
|
+
security: ({
|
|
51973
|
+
pat_with_workspace: never[];
|
|
51974
|
+
console_session_with_workspace?: never;
|
|
51975
|
+
api_key?: never;
|
|
51976
|
+
} | {
|
|
51977
|
+
console_session_with_workspace: never[];
|
|
51978
|
+
pat_with_workspace?: never;
|
|
51979
|
+
api_key?: never;
|
|
51980
|
+
} | {
|
|
51981
|
+
api_key: never[];
|
|
51982
|
+
pat_with_workspace?: never;
|
|
51983
|
+
console_session_with_workspace?: never;
|
|
51984
|
+
})[];
|
|
51985
|
+
summary: string;
|
|
51986
|
+
tags: never[];
|
|
51987
|
+
'x-fern-sdk-group-name': string[];
|
|
51988
|
+
'x-fern-sdk-method-name': string;
|
|
51989
|
+
'x-fern-sdk-return-value': string;
|
|
51990
|
+
'x-response-key': string;
|
|
51991
|
+
'x-title': string;
|
|
51992
|
+
'x-undocumented': string;
|
|
51993
|
+
};
|
|
51994
|
+
};
|
|
51995
|
+
'/unstable_partner/building_blocks/organize_spaces': {
|
|
51996
|
+
post: {
|
|
51997
|
+
description: string;
|
|
51998
|
+
operationId: string;
|
|
51999
|
+
requestBody: {
|
|
52000
|
+
content: {
|
|
52001
|
+
'application/json': {
|
|
52002
|
+
schema: {
|
|
52003
|
+
properties: {
|
|
51519
52004
|
customer_key: {
|
|
51520
52005
|
type: string;
|
|
51521
52006
|
};
|
|
52007
|
+
partner_resources: {
|
|
52008
|
+
items: {
|
|
52009
|
+
properties: {
|
|
52010
|
+
custom_metadata: {
|
|
52011
|
+
additionalProperties: {
|
|
52012
|
+
type: string;
|
|
52013
|
+
};
|
|
52014
|
+
type: string;
|
|
52015
|
+
};
|
|
52016
|
+
description: {
|
|
52017
|
+
type: string;
|
|
52018
|
+
};
|
|
52019
|
+
name: {
|
|
52020
|
+
type: string;
|
|
52021
|
+
};
|
|
52022
|
+
partner_resource_key: {
|
|
52023
|
+
type: string;
|
|
52024
|
+
};
|
|
52025
|
+
};
|
|
52026
|
+
required: string[];
|
|
52027
|
+
type: string;
|
|
52028
|
+
'x-route-path': string;
|
|
52029
|
+
'x-undocumented': string;
|
|
52030
|
+
};
|
|
52031
|
+
minItems: number;
|
|
52032
|
+
type: string;
|
|
52033
|
+
};
|
|
51522
52034
|
};
|
|
51523
52035
|
required: string[];
|
|
51524
52036
|
type: string;
|
|
@@ -51553,9 +52065,19 @@ declare const _default: {
|
|
|
51553
52065
|
description: string;
|
|
51554
52066
|
};
|
|
51555
52067
|
};
|
|
51556
|
-
security: {
|
|
52068
|
+
security: ({
|
|
52069
|
+
pat_with_workspace: never[];
|
|
52070
|
+
console_session_with_workspace?: never;
|
|
52071
|
+
api_key?: never;
|
|
52072
|
+
} | {
|
|
52073
|
+
console_session_with_workspace: never[];
|
|
52074
|
+
pat_with_workspace?: never;
|
|
52075
|
+
api_key?: never;
|
|
52076
|
+
} | {
|
|
51557
52077
|
api_key: never[];
|
|
51558
|
-
|
|
52078
|
+
pat_with_workspace?: never;
|
|
52079
|
+
console_session_with_workspace?: never;
|
|
52080
|
+
})[];
|
|
51559
52081
|
summary: string;
|
|
51560
52082
|
tags: never[];
|
|
51561
52083
|
'x-fern-sdk-group-name': string[];
|
|
@@ -58071,6 +58593,7 @@ interface Routes {
|
|
|
58071
58593
|
queryParams: {};
|
|
58072
58594
|
jsonBody: {};
|
|
58073
58595
|
commonParams: {
|
|
58596
|
+
customer_ids?: string[] | undefined;
|
|
58074
58597
|
/** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
|
|
58075
58598
|
device_id?: string | undefined;
|
|
58076
58599
|
/** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
|
|
@@ -63251,6 +63774,8 @@ interface Routes {
|
|
|
63251
63774
|
acs_system_id: string;
|
|
63252
63775
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63253
63776
|
workspace_id: string;
|
|
63777
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
63778
|
+
connected_account_id: string;
|
|
63254
63779
|
/** Name of the access group. */
|
|
63255
63780
|
name: string;
|
|
63256
63781
|
/**
|
|
@@ -63301,6 +63826,8 @@ interface Routes {
|
|
|
63301
63826
|
acs_system_id: string;
|
|
63302
63827
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63303
63828
|
workspace_id: string;
|
|
63829
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
63830
|
+
connected_account_id: string;
|
|
63304
63831
|
/** Name of the access group. */
|
|
63305
63832
|
name: string;
|
|
63306
63833
|
/**
|
|
@@ -63638,6 +64165,8 @@ interface Routes {
|
|
|
63638
64165
|
acs_system_id: string;
|
|
63639
64166
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63640
64167
|
workspace_id: string;
|
|
64168
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
64169
|
+
connected_account_id: string;
|
|
63641
64170
|
/** Name of the access group. */
|
|
63642
64171
|
name: string;
|
|
63643
64172
|
/**
|
|
@@ -63686,6 +64215,8 @@ interface Routes {
|
|
|
63686
64215
|
acs_system_id: string;
|
|
63687
64216
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
63688
64217
|
workspace_id: string;
|
|
64218
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that contains the access group. */
|
|
64219
|
+
connected_account_id: string;
|
|
63689
64220
|
/** Name of the access group. */
|
|
63690
64221
|
name: string;
|
|
63691
64222
|
/**
|
|
@@ -67378,6 +67909,8 @@ interface Routes {
|
|
|
67378
67909
|
acs_encoder_id: string;
|
|
67379
67910
|
/** 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). */
|
|
67380
67911
|
acs_system_id: string;
|
|
67912
|
+
/** 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). */
|
|
67913
|
+
connected_account_id: string;
|
|
67381
67914
|
/** 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). */
|
|
67382
67915
|
workspace_id: string;
|
|
67383
67916
|
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
@@ -67424,6 +67957,8 @@ interface Routes {
|
|
|
67424
67957
|
acs_encoder_id: string;
|
|
67425
67958
|
/** 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). */
|
|
67426
67959
|
acs_system_id: string;
|
|
67960
|
+
/** 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). */
|
|
67961
|
+
connected_account_id: string;
|
|
67427
67962
|
/** 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). */
|
|
67428
67963
|
workspace_id: string;
|
|
67429
67964
|
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
@@ -89194,11 +89729,11 @@ interface Routes {
|
|
|
89194
89729
|
connected_account_ids?: string[] | undefined;
|
|
89195
89730
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
89196
89731
|
connect_webview_id?: string | undefined;
|
|
89197
|
-
/** Device type
|
|
89732
|
+
/** Device type of the noise sensors that you want to list. */
|
|
89198
89733
|
device_type?: ('noiseaware_activity_zone' | 'minut_sensor') | undefined;
|
|
89199
|
-
/**
|
|
89734
|
+
/** Device types of the noise sensors that you want to list. */
|
|
89200
89735
|
device_types?: Array<'noiseaware_activity_zone' | 'minut_sensor'> | undefined;
|
|
89201
|
-
/**
|
|
89736
|
+
/** Manufacturers of the noise sensors that you want to list. */
|
|
89202
89737
|
manufacturer?: ('minut' | 'noiseaware') | undefined;
|
|
89203
89738
|
/** Array of device IDs for which you want to list devices. */
|
|
89204
89739
|
device_ids?: string[] | undefined;
|
|
@@ -91634,12 +92169,19 @@ interface Routes {
|
|
|
91634
92169
|
method: 'POST';
|
|
91635
92170
|
queryParams: {};
|
|
91636
92171
|
jsonBody: {
|
|
92172
|
+
/** ID of the device for which you want to create a noise threshold. */
|
|
91637
92173
|
device_id: string;
|
|
92174
|
+
/** */
|
|
91638
92175
|
sync?: boolean;
|
|
92176
|
+
/** Name of the new noise threshold. */
|
|
91639
92177
|
name?: string | undefined;
|
|
92178
|
+
/** Time at which the new noise threshold should become active daily. */
|
|
91640
92179
|
starts_daily_at: string;
|
|
92180
|
+
/** Time at which the new noise threshold should become inactive daily. */
|
|
91641
92181
|
ends_daily_at: string;
|
|
92182
|
+
/** Noise level in decibels for the new noise threshold. */
|
|
91642
92183
|
noise_threshold_decibels?: number | undefined;
|
|
92184
|
+
/** 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). */
|
|
91643
92185
|
noise_threshold_nrs?: number | undefined;
|
|
91644
92186
|
};
|
|
91645
92187
|
commonParams: {};
|
|
@@ -92748,14 +93290,21 @@ interface Routes {
|
|
|
92748
93290
|
message: string;
|
|
92749
93291
|
};
|
|
92750
93292
|
};
|
|
92751
|
-
/**
|
|
93293
|
+
/** 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. */
|
|
92752
93294
|
noise_threshold: {
|
|
93295
|
+
/** Unique identifier for the noise threshold. */
|
|
92753
93296
|
noise_threshold_id: string;
|
|
93297
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
92754
93298
|
device_id: string;
|
|
93299
|
+
/** Name of the noise threshold. */
|
|
92755
93300
|
name: string;
|
|
93301
|
+
/** 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). */
|
|
92756
93302
|
noise_threshold_nrs?: number | undefined;
|
|
93303
|
+
/** Time at which the noise threshold should become active daily. */
|
|
92757
93304
|
starts_daily_at: string;
|
|
93305
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
92758
93306
|
ends_daily_at: string;
|
|
93307
|
+
/** Noise level in decibels for the noise threshold. */
|
|
92759
93308
|
noise_threshold_decibels: number;
|
|
92760
93309
|
};
|
|
92761
93310
|
};
|
|
@@ -92765,8 +93314,11 @@ interface Routes {
|
|
|
92765
93314
|
method: 'DELETE' | 'POST';
|
|
92766
93315
|
queryParams: {};
|
|
92767
93316
|
jsonBody: {
|
|
93317
|
+
/** ID of the noise threshold that you want to delete. */
|
|
92768
93318
|
noise_threshold_id: string;
|
|
93319
|
+
/** ID of the device that contains the noise threshold that you want to delete. */
|
|
92769
93320
|
device_id: string;
|
|
93321
|
+
/** */
|
|
92770
93322
|
sync?: boolean;
|
|
92771
93323
|
};
|
|
92772
93324
|
commonParams: {};
|
|
@@ -93883,18 +94435,26 @@ interface Routes {
|
|
|
93883
94435
|
queryParams: {};
|
|
93884
94436
|
jsonBody: {};
|
|
93885
94437
|
commonParams: {
|
|
94438
|
+
/** ID of the noise threshold that you want to get. */
|
|
93886
94439
|
noise_threshold_id: string;
|
|
93887
94440
|
};
|
|
93888
94441
|
formData: {};
|
|
93889
94442
|
jsonResponse: {
|
|
93890
|
-
/**
|
|
94443
|
+
/** 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. */
|
|
93891
94444
|
noise_threshold: {
|
|
94445
|
+
/** Unique identifier for the noise threshold. */
|
|
93892
94446
|
noise_threshold_id: string;
|
|
94447
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
93893
94448
|
device_id: string;
|
|
94449
|
+
/** Name of the noise threshold. */
|
|
93894
94450
|
name: string;
|
|
94451
|
+
/** 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). */
|
|
93895
94452
|
noise_threshold_nrs?: number | undefined;
|
|
94453
|
+
/** Time at which the noise threshold should become active daily. */
|
|
93896
94454
|
starts_daily_at: string;
|
|
94455
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
93897
94456
|
ends_daily_at: string;
|
|
94457
|
+
/** Noise level in decibels for the noise threshold. */
|
|
93898
94458
|
noise_threshold_decibels: number;
|
|
93899
94459
|
};
|
|
93900
94460
|
};
|
|
@@ -93905,18 +94465,27 @@ interface Routes {
|
|
|
93905
94465
|
queryParams: {};
|
|
93906
94466
|
jsonBody: {};
|
|
93907
94467
|
commonParams: {
|
|
94468
|
+
/** ID of the device for which you want to list noise thresholds. */
|
|
93908
94469
|
device_id: string;
|
|
94470
|
+
/** 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`. */
|
|
93909
94471
|
is_programmed?: boolean | undefined;
|
|
93910
94472
|
};
|
|
93911
94473
|
formData: {};
|
|
93912
94474
|
jsonResponse: {
|
|
93913
94475
|
noise_thresholds: Array<{
|
|
94476
|
+
/** Unique identifier for the noise threshold. */
|
|
93914
94477
|
noise_threshold_id: string;
|
|
94478
|
+
/** Unique identifier for the device that contains the noise threshold. */
|
|
93915
94479
|
device_id: string;
|
|
94480
|
+
/** Name of the noise threshold. */
|
|
93916
94481
|
name: string;
|
|
94482
|
+
/** 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). */
|
|
93917
94483
|
noise_threshold_nrs?: number | undefined;
|
|
94484
|
+
/** Time at which the noise threshold should become active daily. */
|
|
93918
94485
|
starts_daily_at: string;
|
|
94486
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
93919
94487
|
ends_daily_at: string;
|
|
94488
|
+
/** Noise level in decibels for the noise threshold. */
|
|
93920
94489
|
noise_threshold_decibels: number;
|
|
93921
94490
|
}>;
|
|
93922
94491
|
};
|
|
@@ -93926,13 +94495,21 @@ interface Routes {
|
|
|
93926
94495
|
method: 'PATCH' | 'POST' | 'PUT';
|
|
93927
94496
|
queryParams: {};
|
|
93928
94497
|
jsonBody: {
|
|
94498
|
+
/** ID of the noise threshold that you want to update. */
|
|
93929
94499
|
noise_threshold_id: string;
|
|
94500
|
+
/** ID of the device that contains the noise threshold that you want to update. */
|
|
93930
94501
|
device_id: string;
|
|
94502
|
+
/** */
|
|
93931
94503
|
sync?: boolean;
|
|
94504
|
+
/** Name of the noise threshold that you want to update. */
|
|
93932
94505
|
name?: string | undefined;
|
|
94506
|
+
/** Time at which the noise threshold should become active daily. */
|
|
93933
94507
|
starts_daily_at?: string | undefined;
|
|
94508
|
+
/** Time at which the noise threshold should become inactive daily. */
|
|
93934
94509
|
ends_daily_at?: string | undefined;
|
|
94510
|
+
/** Noise level in decibels for the noise threshold. */
|
|
93935
94511
|
noise_threshold_decibels?: number | undefined;
|
|
94512
|
+
/** 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). */
|
|
93936
94513
|
noise_threshold_nrs?: number | undefined;
|
|
93937
94514
|
};
|
|
93938
94515
|
commonParams: {};
|
|
@@ -95048,6 +95625,7 @@ interface Routes {
|
|
|
95048
95625
|
method: 'POST';
|
|
95049
95626
|
queryParams: {};
|
|
95050
95627
|
jsonBody: {
|
|
95628
|
+
/** ID of the device for which you want to simulate the triggering of a noise threshold. */
|
|
95051
95629
|
device_id: string;
|
|
95052
95630
|
};
|
|
95053
95631
|
commonParams: {};
|
|
@@ -95889,6 +96467,32 @@ interface Routes {
|
|
|
95889
96467
|
};
|
|
95890
96468
|
};
|
|
95891
96469
|
};
|
|
96470
|
+
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
96471
|
+
route: '/seam/partner/v1/building_blocks/spaces/auto_map';
|
|
96472
|
+
method: 'GET' | 'POST';
|
|
96473
|
+
queryParams: {};
|
|
96474
|
+
jsonBody: {};
|
|
96475
|
+
commonParams: {
|
|
96476
|
+
collection_key: string;
|
|
96477
|
+
};
|
|
96478
|
+
formData: {};
|
|
96479
|
+
jsonResponse: {
|
|
96480
|
+
spaces: Array<{
|
|
96481
|
+
name: string;
|
|
96482
|
+
partner_resource_key: string;
|
|
96483
|
+
devices: Array<{
|
|
96484
|
+
device_id: string;
|
|
96485
|
+
device_type: 'lock' | 'thermostat' | 'sensor';
|
|
96486
|
+
name: string;
|
|
96487
|
+
}>;
|
|
96488
|
+
acs_entrances: Array<{
|
|
96489
|
+
acs_entrance_id: string;
|
|
96490
|
+
name: string;
|
|
96491
|
+
}>;
|
|
96492
|
+
needs_review?: boolean | undefined;
|
|
96493
|
+
}>;
|
|
96494
|
+
};
|
|
96495
|
+
};
|
|
95892
96496
|
'/seam/partner/v1/resources/list': {
|
|
95893
96497
|
route: '/seam/partner/v1/resources/list';
|
|
95894
96498
|
method: 'GET' | 'POST';
|
|
@@ -110553,22 +111157,97 @@ interface Routes {
|
|
|
110553
111157
|
};
|
|
110554
111158
|
};
|
|
110555
111159
|
};
|
|
111160
|
+
'/unstable_partner/building_blocks/connect_accounts': {
|
|
111161
|
+
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
111162
|
+
method: 'POST';
|
|
111163
|
+
queryParams: {};
|
|
111164
|
+
jsonBody: {};
|
|
111165
|
+
commonParams: {
|
|
111166
|
+
customer_key: string;
|
|
111167
|
+
};
|
|
111168
|
+
formData: {};
|
|
111169
|
+
jsonResponse: {
|
|
111170
|
+
/** */
|
|
111171
|
+
magic_link: {
|
|
111172
|
+
url: string;
|
|
111173
|
+
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces';
|
|
111174
|
+
customer_key: string;
|
|
111175
|
+
expires_at: string;
|
|
111176
|
+
workspace_id: string;
|
|
111177
|
+
created_at: string;
|
|
111178
|
+
};
|
|
111179
|
+
};
|
|
111180
|
+
};
|
|
110556
111181
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
110557
111182
|
route: '/unstable_partner/building_blocks/generate_magic_link';
|
|
110558
111183
|
method: 'POST' | 'GET';
|
|
110559
111184
|
queryParams: {};
|
|
110560
111185
|
jsonBody: {};
|
|
110561
111186
|
commonParams: {
|
|
110562
|
-
building_block_type: '
|
|
111187
|
+
building_block_type: 'connect_accounts';
|
|
110563
111188
|
customer_key: string;
|
|
111189
|
+
} | {
|
|
111190
|
+
building_block_type: 'manage_devices';
|
|
111191
|
+
customer_key: string;
|
|
111192
|
+
} | {
|
|
111193
|
+
building_block_type: 'organize_spaces';
|
|
111194
|
+
customer_key: string;
|
|
111195
|
+
collection_key: string;
|
|
111196
|
+
};
|
|
111197
|
+
formData: {};
|
|
111198
|
+
jsonResponse: {
|
|
111199
|
+
/** */
|
|
111200
|
+
magic_link: {
|
|
111201
|
+
url: string;
|
|
111202
|
+
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces';
|
|
111203
|
+
customer_key: string;
|
|
111204
|
+
expires_at: string;
|
|
111205
|
+
workspace_id: string;
|
|
111206
|
+
created_at: string;
|
|
111207
|
+
};
|
|
111208
|
+
};
|
|
111209
|
+
};
|
|
111210
|
+
'/unstable_partner/building_blocks/manage_devices': {
|
|
111211
|
+
route: '/unstable_partner/building_blocks/manage_devices';
|
|
111212
|
+
method: 'POST';
|
|
111213
|
+
queryParams: {};
|
|
111214
|
+
jsonBody: {};
|
|
111215
|
+
commonParams: {
|
|
111216
|
+
customer_key: string;
|
|
111217
|
+
};
|
|
111218
|
+
formData: {};
|
|
111219
|
+
jsonResponse: {
|
|
111220
|
+
/** */
|
|
111221
|
+
magic_link: {
|
|
111222
|
+
url: string;
|
|
111223
|
+
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces';
|
|
111224
|
+
customer_key: string;
|
|
111225
|
+
expires_at: string;
|
|
111226
|
+
workspace_id: string;
|
|
111227
|
+
created_at: string;
|
|
111228
|
+
};
|
|
111229
|
+
};
|
|
111230
|
+
};
|
|
111231
|
+
'/unstable_partner/building_blocks/organize_spaces': {
|
|
111232
|
+
route: '/unstable_partner/building_blocks/organize_spaces';
|
|
111233
|
+
method: 'POST';
|
|
111234
|
+
queryParams: {};
|
|
111235
|
+
jsonBody: {};
|
|
111236
|
+
commonParams: {
|
|
111237
|
+
customer_key: string;
|
|
111238
|
+
partner_resources: Array<{
|
|
111239
|
+
partner_resource_key: string;
|
|
111240
|
+
name: string;
|
|
111241
|
+
description?: string | undefined;
|
|
111242
|
+
custom_metadata?: Record<string, string> | undefined;
|
|
111243
|
+
}>;
|
|
110564
111244
|
};
|
|
110565
111245
|
formData: {};
|
|
110566
111246
|
jsonResponse: {
|
|
110567
111247
|
/** */
|
|
110568
111248
|
magic_link: {
|
|
110569
111249
|
url: string;
|
|
110570
|
-
building_block_type: '
|
|
110571
|
-
customer_id: string;
|
|
111250
|
+
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces';
|
|
110572
111251
|
customer_key: string;
|
|
110573
111252
|
expires_at: string;
|
|
110574
111253
|
workspace_id: string;
|