@seamapi/types 1.406.4 → 1.406.6
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 +110 -58
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +120 -72
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +4 -3
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +89 -59
- package/lib/seam/connect/openapi.js +100 -49
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +28 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +4 -3
- package/src/lib/seam/connect/openapi.ts +111 -49
- package/src/lib/seam/connect/route-types.ts +28 -13
package/dist/connect.d.cts
CHANGED
|
@@ -10277,6 +10277,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10277
10277
|
token: z.ZodString;
|
|
10278
10278
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
10279
10279
|
device_count: z.ZodNumber;
|
|
10280
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
10280
10281
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
10281
10282
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
10282
10283
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -10291,6 +10292,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10291
10292
|
device_count: number;
|
|
10292
10293
|
connect_webview_ids: string[];
|
|
10293
10294
|
user_identity_ids: string[];
|
|
10295
|
+
customer_id?: string | undefined;
|
|
10294
10296
|
}, {
|
|
10295
10297
|
workspace_id: string;
|
|
10296
10298
|
created_at: string;
|
|
@@ -10302,6 +10304,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10302
10304
|
device_count: number;
|
|
10303
10305
|
connect_webview_ids: string[];
|
|
10304
10306
|
user_identity_ids: string[];
|
|
10307
|
+
customer_id?: string | undefined;
|
|
10305
10308
|
}>;
|
|
10306
10309
|
type ClientSession = z.infer<typeof client_session>;
|
|
10307
10310
|
|
|
@@ -24193,6 +24196,10 @@ declare const _default: {
|
|
|
24193
24196
|
format: string;
|
|
24194
24197
|
type: string;
|
|
24195
24198
|
};
|
|
24199
|
+
customer_id: {
|
|
24200
|
+
format: string;
|
|
24201
|
+
type: string;
|
|
24202
|
+
};
|
|
24196
24203
|
device_count: {
|
|
24197
24204
|
format: string;
|
|
24198
24205
|
type: string;
|
|
@@ -32287,17 +32294,17 @@ declare const _default: {
|
|
|
32287
32294
|
name: string;
|
|
32288
32295
|
type: string;
|
|
32289
32296
|
};
|
|
32290
|
-
|
|
32297
|
+
client_session_with_customer: {
|
|
32291
32298
|
bearerFormat: string;
|
|
32292
32299
|
scheme: string;
|
|
32293
32300
|
type: string;
|
|
32294
32301
|
};
|
|
32295
|
-
|
|
32302
|
+
console_session_with_workspace: {
|
|
32296
32303
|
bearerFormat: string;
|
|
32297
32304
|
scheme: string;
|
|
32298
32305
|
type: string;
|
|
32299
32306
|
};
|
|
32300
|
-
|
|
32307
|
+
console_session_without_workspace: {
|
|
32301
32308
|
bearerFormat: string;
|
|
32302
32309
|
scheme: string;
|
|
32303
32310
|
type: string;
|
|
@@ -40679,12 +40686,12 @@ declare const _default: {
|
|
|
40679
40686
|
};
|
|
40680
40687
|
security: ({
|
|
40681
40688
|
client_session: never[];
|
|
40682
|
-
|
|
40689
|
+
client_session_with_customer?: never;
|
|
40683
40690
|
pat_with_workspace?: never;
|
|
40684
40691
|
console_session_with_workspace?: never;
|
|
40685
40692
|
api_key?: never;
|
|
40686
40693
|
} | {
|
|
40687
|
-
|
|
40694
|
+
client_session_with_customer: never[];
|
|
40688
40695
|
client_session?: never;
|
|
40689
40696
|
pat_with_workspace?: never;
|
|
40690
40697
|
console_session_with_workspace?: never;
|
|
@@ -40692,19 +40699,19 @@ declare const _default: {
|
|
|
40692
40699
|
} | {
|
|
40693
40700
|
pat_with_workspace: never[];
|
|
40694
40701
|
client_session?: never;
|
|
40695
|
-
|
|
40702
|
+
client_session_with_customer?: never;
|
|
40696
40703
|
console_session_with_workspace?: never;
|
|
40697
40704
|
api_key?: never;
|
|
40698
40705
|
} | {
|
|
40699
40706
|
console_session_with_workspace: never[];
|
|
40700
40707
|
client_session?: never;
|
|
40701
|
-
|
|
40708
|
+
client_session_with_customer?: never;
|
|
40702
40709
|
pat_with_workspace?: never;
|
|
40703
40710
|
api_key?: never;
|
|
40704
40711
|
} | {
|
|
40705
40712
|
api_key: never[];
|
|
40706
40713
|
client_session?: never;
|
|
40707
|
-
|
|
40714
|
+
client_session_with_customer?: never;
|
|
40708
40715
|
pat_with_workspace?: never;
|
|
40709
40716
|
console_session_with_workspace?: never;
|
|
40710
40717
|
})[];
|
|
@@ -40833,12 +40840,12 @@ declare const _default: {
|
|
|
40833
40840
|
};
|
|
40834
40841
|
security: ({
|
|
40835
40842
|
client_session: never[];
|
|
40836
|
-
|
|
40843
|
+
client_session_with_customer?: never;
|
|
40837
40844
|
pat_with_workspace?: never;
|
|
40838
40845
|
console_session_with_workspace?: never;
|
|
40839
40846
|
api_key?: never;
|
|
40840
40847
|
} | {
|
|
40841
|
-
|
|
40848
|
+
client_session_with_customer: never[];
|
|
40842
40849
|
client_session?: never;
|
|
40843
40850
|
pat_with_workspace?: never;
|
|
40844
40851
|
console_session_with_workspace?: never;
|
|
@@ -40846,19 +40853,19 @@ declare const _default: {
|
|
|
40846
40853
|
} | {
|
|
40847
40854
|
pat_with_workspace: never[];
|
|
40848
40855
|
client_session?: never;
|
|
40849
|
-
|
|
40856
|
+
client_session_with_customer?: never;
|
|
40850
40857
|
console_session_with_workspace?: never;
|
|
40851
40858
|
api_key?: never;
|
|
40852
40859
|
} | {
|
|
40853
40860
|
console_session_with_workspace: never[];
|
|
40854
40861
|
client_session?: never;
|
|
40855
|
-
|
|
40862
|
+
client_session_with_customer?: never;
|
|
40856
40863
|
pat_with_workspace?: never;
|
|
40857
40864
|
api_key?: never;
|
|
40858
40865
|
} | {
|
|
40859
40866
|
api_key: never[];
|
|
40860
40867
|
client_session?: never;
|
|
40861
|
-
|
|
40868
|
+
client_session_with_customer?: never;
|
|
40862
40869
|
pat_with_workspace?: never;
|
|
40863
40870
|
console_session_with_workspace?: never;
|
|
40864
40871
|
})[];
|
|
@@ -40889,7 +40896,10 @@ declare const _default: {
|
|
|
40889
40896
|
description: string;
|
|
40890
40897
|
type: string;
|
|
40891
40898
|
};
|
|
40892
|
-
|
|
40899
|
+
customer_ids: {
|
|
40900
|
+
items: {
|
|
40901
|
+
type: string;
|
|
40902
|
+
};
|
|
40893
40903
|
type: string;
|
|
40894
40904
|
};
|
|
40895
40905
|
limit: {
|
|
@@ -40940,12 +40950,12 @@ declare const _default: {
|
|
|
40940
40950
|
};
|
|
40941
40951
|
security: ({
|
|
40942
40952
|
client_session: never[];
|
|
40943
|
-
|
|
40953
|
+
client_session_with_customer?: never;
|
|
40944
40954
|
pat_with_workspace?: never;
|
|
40945
40955
|
console_session_with_workspace?: never;
|
|
40946
40956
|
api_key?: never;
|
|
40947
40957
|
} | {
|
|
40948
|
-
|
|
40958
|
+
client_session_with_customer: never[];
|
|
40949
40959
|
client_session?: never;
|
|
40950
40960
|
pat_with_workspace?: never;
|
|
40951
40961
|
console_session_with_workspace?: never;
|
|
@@ -40953,19 +40963,19 @@ declare const _default: {
|
|
|
40953
40963
|
} | {
|
|
40954
40964
|
pat_with_workspace: never[];
|
|
40955
40965
|
client_session?: never;
|
|
40956
|
-
|
|
40966
|
+
client_session_with_customer?: never;
|
|
40957
40967
|
console_session_with_workspace?: never;
|
|
40958
40968
|
api_key?: never;
|
|
40959
40969
|
} | {
|
|
40960
40970
|
console_session_with_workspace: never[];
|
|
40961
40971
|
client_session?: never;
|
|
40962
|
-
|
|
40972
|
+
client_session_with_customer?: never;
|
|
40963
40973
|
pat_with_workspace?: never;
|
|
40964
40974
|
api_key?: never;
|
|
40965
40975
|
} | {
|
|
40966
40976
|
api_key: never[];
|
|
40967
40977
|
client_session?: never;
|
|
40968
|
-
|
|
40978
|
+
client_session_with_customer?: never;
|
|
40969
40979
|
pat_with_workspace?: never;
|
|
40970
40980
|
console_session_with_workspace?: never;
|
|
40971
40981
|
})[];
|
|
@@ -41032,19 +41042,19 @@ declare const _default: {
|
|
|
41032
41042
|
api_key: never[];
|
|
41033
41043
|
pat_with_workspace?: never;
|
|
41034
41044
|
console_session_with_workspace?: never;
|
|
41035
|
-
|
|
41045
|
+
client_session_with_customer?: never;
|
|
41036
41046
|
} | {
|
|
41037
41047
|
pat_with_workspace: never[];
|
|
41038
41048
|
api_key?: never;
|
|
41039
41049
|
console_session_with_workspace?: never;
|
|
41040
|
-
|
|
41050
|
+
client_session_with_customer?: never;
|
|
41041
41051
|
} | {
|
|
41042
41052
|
console_session_with_workspace: never[];
|
|
41043
41053
|
api_key?: never;
|
|
41044
41054
|
pat_with_workspace?: never;
|
|
41045
|
-
|
|
41055
|
+
client_session_with_customer?: never;
|
|
41046
41056
|
} | {
|
|
41047
|
-
|
|
41057
|
+
client_session_with_customer: never[];
|
|
41048
41058
|
api_key?: never;
|
|
41049
41059
|
pat_with_workspace?: never;
|
|
41050
41060
|
console_session_with_workspace?: never;
|
|
@@ -41233,19 +41243,19 @@ declare const _default: {
|
|
|
41233
41243
|
api_key: never[];
|
|
41234
41244
|
pat_with_workspace?: never;
|
|
41235
41245
|
console_session_with_workspace?: never;
|
|
41236
|
-
|
|
41246
|
+
client_session_with_customer?: never;
|
|
41237
41247
|
} | {
|
|
41238
41248
|
pat_with_workspace: never[];
|
|
41239
41249
|
api_key?: never;
|
|
41240
41250
|
console_session_with_workspace?: never;
|
|
41241
|
-
|
|
41251
|
+
client_session_with_customer?: never;
|
|
41242
41252
|
} | {
|
|
41243
41253
|
console_session_with_workspace: never[];
|
|
41244
41254
|
api_key?: never;
|
|
41245
41255
|
pat_with_workspace?: never;
|
|
41246
|
-
|
|
41256
|
+
client_session_with_customer?: never;
|
|
41247
41257
|
} | {
|
|
41248
|
-
|
|
41258
|
+
client_session_with_customer: never[];
|
|
41249
41259
|
api_key?: never;
|
|
41250
41260
|
pat_with_workspace?: never;
|
|
41251
41261
|
console_session_with_workspace?: never;
|
|
@@ -41533,12 +41543,12 @@ declare const _default: {
|
|
|
41533
41543
|
};
|
|
41534
41544
|
security: ({
|
|
41535
41545
|
client_session: never[];
|
|
41536
|
-
|
|
41546
|
+
client_session_with_customer?: never;
|
|
41537
41547
|
pat_with_workspace?: never;
|
|
41538
41548
|
console_session_with_workspace?: never;
|
|
41539
41549
|
api_key?: never;
|
|
41540
41550
|
} | {
|
|
41541
|
-
|
|
41551
|
+
client_session_with_customer: never[];
|
|
41542
41552
|
client_session?: never;
|
|
41543
41553
|
pat_with_workspace?: never;
|
|
41544
41554
|
console_session_with_workspace?: never;
|
|
@@ -41546,19 +41556,19 @@ declare const _default: {
|
|
|
41546
41556
|
} | {
|
|
41547
41557
|
pat_with_workspace: never[];
|
|
41548
41558
|
client_session?: never;
|
|
41549
|
-
|
|
41559
|
+
client_session_with_customer?: never;
|
|
41550
41560
|
console_session_with_workspace?: never;
|
|
41551
41561
|
api_key?: never;
|
|
41552
41562
|
} | {
|
|
41553
41563
|
console_session_with_workspace: never[];
|
|
41554
41564
|
client_session?: never;
|
|
41555
|
-
|
|
41565
|
+
client_session_with_customer?: never;
|
|
41556
41566
|
pat_with_workspace?: never;
|
|
41557
41567
|
api_key?: never;
|
|
41558
41568
|
} | {
|
|
41559
41569
|
api_key: never[];
|
|
41560
41570
|
client_session?: never;
|
|
41561
|
-
|
|
41571
|
+
client_session_with_customer?: never;
|
|
41562
41572
|
pat_with_workspace?: never;
|
|
41563
41573
|
console_session_with_workspace?: never;
|
|
41564
41574
|
})[];
|
|
@@ -41729,32 +41739,32 @@ declare const _default: {
|
|
|
41729
41739
|
};
|
|
41730
41740
|
};
|
|
41731
41741
|
security: ({
|
|
41732
|
-
|
|
41742
|
+
client_session_with_customer: never[];
|
|
41733
41743
|
client_session?: never;
|
|
41734
41744
|
pat_with_workspace?: never;
|
|
41735
41745
|
console_session_with_workspace?: never;
|
|
41736
41746
|
api_key?: never;
|
|
41737
41747
|
} | {
|
|
41738
41748
|
client_session: never[];
|
|
41739
|
-
|
|
41749
|
+
client_session_with_customer?: never;
|
|
41740
41750
|
pat_with_workspace?: never;
|
|
41741
41751
|
console_session_with_workspace?: never;
|
|
41742
41752
|
api_key?: never;
|
|
41743
41753
|
} | {
|
|
41744
41754
|
pat_with_workspace: never[];
|
|
41745
|
-
|
|
41755
|
+
client_session_with_customer?: never;
|
|
41746
41756
|
client_session?: never;
|
|
41747
41757
|
console_session_with_workspace?: never;
|
|
41748
41758
|
api_key?: never;
|
|
41749
41759
|
} | {
|
|
41750
41760
|
console_session_with_workspace: never[];
|
|
41751
|
-
|
|
41761
|
+
client_session_with_customer?: never;
|
|
41752
41762
|
client_session?: never;
|
|
41753
41763
|
pat_with_workspace?: never;
|
|
41754
41764
|
api_key?: never;
|
|
41755
41765
|
} | {
|
|
41756
41766
|
api_key: never[];
|
|
41757
|
-
|
|
41767
|
+
client_session_with_customer?: never;
|
|
41758
41768
|
client_session?: never;
|
|
41759
41769
|
pat_with_workspace?: never;
|
|
41760
41770
|
console_session_with_workspace?: never;
|
|
@@ -42902,27 +42912,27 @@ declare const _default: {
|
|
|
42902
42912
|
api_key?: never;
|
|
42903
42913
|
pat_with_workspace?: never;
|
|
42904
42914
|
console_session_with_workspace?: never;
|
|
42905
|
-
|
|
42915
|
+
client_session_with_customer?: never;
|
|
42906
42916
|
} | {
|
|
42907
42917
|
api_key: never[];
|
|
42908
42918
|
client_session?: never;
|
|
42909
42919
|
pat_with_workspace?: never;
|
|
42910
42920
|
console_session_with_workspace?: never;
|
|
42911
|
-
|
|
42921
|
+
client_session_with_customer?: never;
|
|
42912
42922
|
} | {
|
|
42913
42923
|
pat_with_workspace: never[];
|
|
42914
42924
|
client_session?: never;
|
|
42915
42925
|
api_key?: never;
|
|
42916
42926
|
console_session_with_workspace?: never;
|
|
42917
|
-
|
|
42927
|
+
client_session_with_customer?: never;
|
|
42918
42928
|
} | {
|
|
42919
42929
|
console_session_with_workspace: never[];
|
|
42920
42930
|
client_session?: never;
|
|
42921
42931
|
api_key?: never;
|
|
42922
42932
|
pat_with_workspace?: never;
|
|
42923
|
-
|
|
42933
|
+
client_session_with_customer?: never;
|
|
42924
42934
|
} | {
|
|
42925
|
-
|
|
42935
|
+
client_session_with_customer: never[];
|
|
42926
42936
|
client_session?: never;
|
|
42927
42937
|
api_key?: never;
|
|
42928
42938
|
pat_with_workspace?: never;
|
|
@@ -42939,6 +42949,7 @@ declare const _default: {
|
|
|
42939
42949
|
};
|
|
42940
42950
|
'/locks/get': {
|
|
42941
42951
|
post: {
|
|
42952
|
+
description: string;
|
|
42942
42953
|
operationId: string;
|
|
42943
42954
|
requestBody: {
|
|
42944
42955
|
content: {
|
|
@@ -42946,10 +42957,12 @@ declare const _default: {
|
|
|
42946
42957
|
schema: {
|
|
42947
42958
|
properties: {
|
|
42948
42959
|
device_id: {
|
|
42960
|
+
description: string;
|
|
42949
42961
|
format: string;
|
|
42950
42962
|
type: string;
|
|
42951
42963
|
};
|
|
42952
42964
|
name: {
|
|
42965
|
+
description: string;
|
|
42953
42966
|
type: string;
|
|
42954
42967
|
};
|
|
42955
42968
|
};
|
|
@@ -43016,10 +43029,12 @@ declare const _default: {
|
|
|
43016
43029
|
'x-fern-sdk-method-name': string;
|
|
43017
43030
|
'x-fern-sdk-return-value': string;
|
|
43018
43031
|
'x-response-key': string;
|
|
43032
|
+
'x-title': string;
|
|
43019
43033
|
};
|
|
43020
43034
|
};
|
|
43021
43035
|
'/locks/list': {
|
|
43022
43036
|
post: {
|
|
43037
|
+
description: string;
|
|
43023
43038
|
operationId: string;
|
|
43024
43039
|
requestBody: {
|
|
43025
43040
|
content: {
|
|
@@ -43199,10 +43214,12 @@ declare const _default: {
|
|
|
43199
43214
|
'x-fern-sdk-method-name': string;
|
|
43200
43215
|
'x-fern-sdk-return-value': string;
|
|
43201
43216
|
'x-response-key': string;
|
|
43217
|
+
'x-title': string;
|
|
43202
43218
|
};
|
|
43203
43219
|
};
|
|
43204
43220
|
'/locks/lock_door': {
|
|
43205
43221
|
post: {
|
|
43222
|
+
description: string;
|
|
43206
43223
|
operationId: string;
|
|
43207
43224
|
requestBody: {
|
|
43208
43225
|
content: {
|
|
@@ -43210,12 +43227,14 @@ declare const _default: {
|
|
|
43210
43227
|
schema: {
|
|
43211
43228
|
properties: {
|
|
43212
43229
|
device_id: {
|
|
43230
|
+
description: string;
|
|
43213
43231
|
format: string;
|
|
43214
43232
|
type: string;
|
|
43215
43233
|
};
|
|
43216
43234
|
sync: {
|
|
43217
43235
|
default: boolean;
|
|
43218
43236
|
type: string;
|
|
43237
|
+
'x-undocumented': string;
|
|
43219
43238
|
};
|
|
43220
43239
|
};
|
|
43221
43240
|
required: string[];
|
|
@@ -43279,10 +43298,12 @@ declare const _default: {
|
|
|
43279
43298
|
'x-fern-sdk-method-name': string;
|
|
43280
43299
|
'x-fern-sdk-return-value': string;
|
|
43281
43300
|
'x-response-key': string;
|
|
43301
|
+
'x-title': string;
|
|
43282
43302
|
};
|
|
43283
43303
|
};
|
|
43284
43304
|
'/locks/simulate/keypad_code_entry': {
|
|
43285
43305
|
post: {
|
|
43306
|
+
description: string;
|
|
43286
43307
|
operationId: string;
|
|
43287
43308
|
requestBody: {
|
|
43288
43309
|
content: {
|
|
@@ -43290,9 +43311,11 @@ declare const _default: {
|
|
|
43290
43311
|
schema: {
|
|
43291
43312
|
properties: {
|
|
43292
43313
|
code: {
|
|
43314
|
+
description: string;
|
|
43293
43315
|
type: string;
|
|
43294
43316
|
};
|
|
43295
43317
|
device_id: {
|
|
43318
|
+
description: string;
|
|
43296
43319
|
format: string;
|
|
43297
43320
|
type: string;
|
|
43298
43321
|
};
|
|
@@ -43355,6 +43378,7 @@ declare const _default: {
|
|
|
43355
43378
|
};
|
|
43356
43379
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
43357
43380
|
post: {
|
|
43381
|
+
description: string;
|
|
43358
43382
|
operationId: string;
|
|
43359
43383
|
requestBody: {
|
|
43360
43384
|
content: {
|
|
@@ -43362,6 +43386,7 @@ declare const _default: {
|
|
|
43362
43386
|
schema: {
|
|
43363
43387
|
properties: {
|
|
43364
43388
|
device_id: {
|
|
43389
|
+
description: string;
|
|
43365
43390
|
format: string;
|
|
43366
43391
|
type: string;
|
|
43367
43392
|
};
|
|
@@ -43424,6 +43449,7 @@ declare const _default: {
|
|
|
43424
43449
|
};
|
|
43425
43450
|
'/locks/unlock_door': {
|
|
43426
43451
|
post: {
|
|
43452
|
+
description: string;
|
|
43427
43453
|
operationId: string;
|
|
43428
43454
|
requestBody: {
|
|
43429
43455
|
content: {
|
|
@@ -43431,12 +43457,14 @@ declare const _default: {
|
|
|
43431
43457
|
schema: {
|
|
43432
43458
|
properties: {
|
|
43433
43459
|
device_id: {
|
|
43460
|
+
description: string;
|
|
43434
43461
|
format: string;
|
|
43435
43462
|
type: string;
|
|
43436
43463
|
};
|
|
43437
43464
|
sync: {
|
|
43438
43465
|
default: boolean;
|
|
43439
43466
|
type: string;
|
|
43467
|
+
'x-undocumented': string;
|
|
43440
43468
|
};
|
|
43441
43469
|
};
|
|
43442
43470
|
required: string[];
|
|
@@ -43500,6 +43528,7 @@ declare const _default: {
|
|
|
43500
43528
|
'x-fern-sdk-method-name': string;
|
|
43501
43529
|
'x-fern-sdk-return-value': string;
|
|
43502
43530
|
'x-response-key': string;
|
|
43531
|
+
'x-title': string;
|
|
43503
43532
|
};
|
|
43504
43533
|
};
|
|
43505
43534
|
'/networks/get': {
|
|
@@ -43563,10 +43592,12 @@ declare const _default: {
|
|
|
43563
43592
|
})[];
|
|
43564
43593
|
summary: string;
|
|
43565
43594
|
tags: string[];
|
|
43595
|
+
'x-deprecated': string;
|
|
43566
43596
|
'x-fern-sdk-group-name': string[];
|
|
43567
43597
|
'x-fern-sdk-method-name': string;
|
|
43568
43598
|
'x-fern-sdk-return-value': string;
|
|
43569
43599
|
'x-response-key': string;
|
|
43600
|
+
'x-undocumented': string;
|
|
43570
43601
|
};
|
|
43571
43602
|
};
|
|
43572
43603
|
'/networks/list': {
|
|
@@ -43627,10 +43658,12 @@ declare const _default: {
|
|
|
43627
43658
|
})[];
|
|
43628
43659
|
summary: string;
|
|
43629
43660
|
tags: string[];
|
|
43661
|
+
'x-deprecated': string;
|
|
43630
43662
|
'x-fern-sdk-group-name': string[];
|
|
43631
43663
|
'x-fern-sdk-method-name': string;
|
|
43632
43664
|
'x-fern-sdk-return-value': string;
|
|
43633
43665
|
'x-response-key': string;
|
|
43666
|
+
'x-undocumented': string;
|
|
43634
43667
|
};
|
|
43635
43668
|
};
|
|
43636
43669
|
'/noise_sensors/list': {
|
|
@@ -46220,7 +46253,7 @@ declare const _default: {
|
|
|
46220
46253
|
};
|
|
46221
46254
|
};
|
|
46222
46255
|
security: {
|
|
46223
|
-
|
|
46256
|
+
client_session_with_customer: never[];
|
|
46224
46257
|
}[];
|
|
46225
46258
|
summary: string;
|
|
46226
46259
|
tags: never[];
|
|
@@ -49480,19 +49513,19 @@ declare const _default: {
|
|
|
49480
49513
|
pat_with_workspace: never[];
|
|
49481
49514
|
console_session_with_workspace?: never;
|
|
49482
49515
|
api_key?: never;
|
|
49483
|
-
|
|
49516
|
+
client_session_with_customer?: never;
|
|
49484
49517
|
} | {
|
|
49485
49518
|
console_session_with_workspace: never[];
|
|
49486
49519
|
pat_with_workspace?: never;
|
|
49487
49520
|
api_key?: never;
|
|
49488
|
-
|
|
49521
|
+
client_session_with_customer?: never;
|
|
49489
49522
|
} | {
|
|
49490
49523
|
api_key: never[];
|
|
49491
49524
|
pat_with_workspace?: never;
|
|
49492
49525
|
console_session_with_workspace?: never;
|
|
49493
|
-
|
|
49526
|
+
client_session_with_customer?: never;
|
|
49494
49527
|
} | {
|
|
49495
|
-
|
|
49528
|
+
client_session_with_customer: never[];
|
|
49496
49529
|
pat_with_workspace?: never;
|
|
49497
49530
|
console_session_with_workspace?: never;
|
|
49498
49531
|
api_key?: never;
|
|
@@ -49556,19 +49589,19 @@ declare const _default: {
|
|
|
49556
49589
|
pat_with_workspace: never[];
|
|
49557
49590
|
console_session_with_workspace?: never;
|
|
49558
49591
|
api_key?: never;
|
|
49559
|
-
|
|
49592
|
+
client_session_with_customer?: never;
|
|
49560
49593
|
} | {
|
|
49561
49594
|
console_session_with_workspace: never[];
|
|
49562
49595
|
pat_with_workspace?: never;
|
|
49563
49596
|
api_key?: never;
|
|
49564
|
-
|
|
49597
|
+
client_session_with_customer?: never;
|
|
49565
49598
|
} | {
|
|
49566
49599
|
api_key: never[];
|
|
49567
49600
|
pat_with_workspace?: never;
|
|
49568
49601
|
console_session_with_workspace?: never;
|
|
49569
|
-
|
|
49602
|
+
client_session_with_customer?: never;
|
|
49570
49603
|
} | {
|
|
49571
|
-
|
|
49604
|
+
client_session_with_customer: never[];
|
|
49572
49605
|
pat_with_workspace?: never;
|
|
49573
49606
|
console_session_with_workspace?: never;
|
|
49574
49607
|
api_key?: never;
|
|
@@ -49711,19 +49744,19 @@ declare const _default: {
|
|
|
49711
49744
|
pat_with_workspace: never[];
|
|
49712
49745
|
console_session_with_workspace?: never;
|
|
49713
49746
|
api_key?: never;
|
|
49714
|
-
|
|
49747
|
+
client_session_with_customer?: never;
|
|
49715
49748
|
} | {
|
|
49716
49749
|
console_session_with_workspace: never[];
|
|
49717
49750
|
pat_with_workspace?: never;
|
|
49718
49751
|
api_key?: never;
|
|
49719
|
-
|
|
49752
|
+
client_session_with_customer?: never;
|
|
49720
49753
|
} | {
|
|
49721
49754
|
api_key: never[];
|
|
49722
49755
|
pat_with_workspace?: never;
|
|
49723
49756
|
console_session_with_workspace?: never;
|
|
49724
|
-
|
|
49757
|
+
client_session_with_customer?: never;
|
|
49725
49758
|
} | {
|
|
49726
|
-
|
|
49759
|
+
client_session_with_customer: never[];
|
|
49727
49760
|
pat_with_workspace?: never;
|
|
49728
49761
|
console_session_with_workspace?: never;
|
|
49729
49762
|
api_key?: never;
|
|
@@ -49884,19 +49917,19 @@ declare const _default: {
|
|
|
49884
49917
|
pat_with_workspace: never[];
|
|
49885
49918
|
console_session_with_workspace?: never;
|
|
49886
49919
|
api_key?: never;
|
|
49887
|
-
|
|
49920
|
+
client_session_with_customer?: never;
|
|
49888
49921
|
} | {
|
|
49889
49922
|
console_session_with_workspace: never[];
|
|
49890
49923
|
pat_with_workspace?: never;
|
|
49891
49924
|
api_key?: never;
|
|
49892
|
-
|
|
49925
|
+
client_session_with_customer?: never;
|
|
49893
49926
|
} | {
|
|
49894
49927
|
api_key: never[];
|
|
49895
49928
|
pat_with_workspace?: never;
|
|
49896
49929
|
console_session_with_workspace?: never;
|
|
49897
|
-
|
|
49930
|
+
client_session_with_customer?: never;
|
|
49898
49931
|
} | {
|
|
49899
|
-
|
|
49932
|
+
client_session_with_customer: never[];
|
|
49900
49933
|
pat_with_workspace?: never;
|
|
49901
49934
|
console_session_with_workspace?: never;
|
|
49902
49935
|
api_key?: never;
|
|
@@ -54423,11 +54456,11 @@ interface Routes {
|
|
|
54423
54456
|
common_code_key?: string | undefined;
|
|
54424
54457
|
/** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
54425
54458
|
prefer_native_scheduling?: boolean | undefined;
|
|
54426
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api
|
|
54459
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
54427
54460
|
use_backup_access_code_pool?: boolean | undefined;
|
|
54428
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
54461
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
54429
54462
|
allow_external_modification?: boolean | undefined;
|
|
54430
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
54463
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
54431
54464
|
is_external_modification_allowed?: boolean | undefined;
|
|
54432
54465
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
54433
54466
|
preferred_code_length?: number | undefined;
|
|
@@ -56031,11 +56064,11 @@ interface Routes {
|
|
|
56031
56064
|
attempt_for_offline_device?: boolean;
|
|
56032
56065
|
/** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
56033
56066
|
prefer_native_scheduling?: boolean | undefined;
|
|
56034
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api
|
|
56067
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
56035
56068
|
use_backup_access_code_pool?: boolean | undefined;
|
|
56036
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
56069
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
56037
56070
|
allow_external_modification?: boolean | undefined;
|
|
56038
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
56071
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
56039
56072
|
is_external_modification_allowed?: boolean | undefined;
|
|
56040
56073
|
use_offline_access_code?: boolean | undefined;
|
|
56041
56074
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
@@ -62118,11 +62151,11 @@ interface Routes {
|
|
|
62118
62151
|
attempt_for_offline_device?: boolean;
|
|
62119
62152
|
/** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
62120
62153
|
prefer_native_scheduling?: boolean | undefined;
|
|
62121
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api
|
|
62154
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
62122
62155
|
use_backup_access_code_pool?: boolean | undefined;
|
|
62123
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
62156
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
62124
62157
|
allow_external_modification?: boolean | undefined;
|
|
62125
|
-
/** Indicates whether [external modification](https://docs.seam.co/latest/
|
|
62158
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
62126
62159
|
is_external_modification_allowed?: boolean | undefined;
|
|
62127
62160
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
62128
62161
|
preferred_code_length?: number | undefined;
|
|
@@ -72962,6 +72995,7 @@ interface Routes {
|
|
|
72962
72995
|
token: string;
|
|
72963
72996
|
user_identifier_key: string | null;
|
|
72964
72997
|
device_count: number;
|
|
72998
|
+
customer_id?: string | undefined;
|
|
72965
72999
|
connected_account_ids: string[];
|
|
72966
73000
|
connect_webview_ids: string[];
|
|
72967
73001
|
user_identity_ids: string[];
|
|
@@ -73010,6 +73044,7 @@ interface Routes {
|
|
|
73010
73044
|
token: string;
|
|
73011
73045
|
user_identifier_key: string | null;
|
|
73012
73046
|
device_count: number;
|
|
73047
|
+
customer_id?: string | undefined;
|
|
73013
73048
|
connected_account_ids: string[];
|
|
73014
73049
|
connect_webview_ids: string[];
|
|
73015
73050
|
user_identity_ids: string[];
|
|
@@ -73052,6 +73087,7 @@ interface Routes {
|
|
|
73052
73087
|
token: string;
|
|
73053
73088
|
user_identifier_key: string | null;
|
|
73054
73089
|
device_count: number;
|
|
73090
|
+
customer_id?: string | undefined;
|
|
73055
73091
|
connected_account_ids: string[];
|
|
73056
73092
|
connect_webview_ids: string[];
|
|
73057
73093
|
user_identity_ids: string[];
|
|
@@ -73094,6 +73130,7 @@ interface Routes {
|
|
|
73094
73130
|
token: string;
|
|
73095
73131
|
user_identifier_key: string | null;
|
|
73096
73132
|
device_count: number;
|
|
73133
|
+
customer_id?: string | undefined;
|
|
73097
73134
|
connected_account_ids: string[];
|
|
73098
73135
|
connect_webview_ids: string[];
|
|
73099
73136
|
user_identity_ids: string[];
|
|
@@ -73127,6 +73164,7 @@ interface Routes {
|
|
|
73127
73164
|
token: string;
|
|
73128
73165
|
user_identifier_key: string | null;
|
|
73129
73166
|
device_count: number;
|
|
73167
|
+
customer_id?: string | undefined;
|
|
73130
73168
|
connected_account_ids: string[];
|
|
73131
73169
|
connect_webview_ids: string[];
|
|
73132
73170
|
user_identity_ids: string[];
|
|
@@ -73308,7 +73346,7 @@ interface Routes {
|
|
|
73308
73346
|
queryParams: {};
|
|
73309
73347
|
jsonBody: {};
|
|
73310
73348
|
commonParams: {
|
|
73311
|
-
|
|
73349
|
+
customer_ids?: string[] | undefined;
|
|
73312
73350
|
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
73313
73351
|
user_identifier_key?: string | undefined;
|
|
73314
73352
|
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
@@ -79862,7 +79900,9 @@ interface Routes {
|
|
|
79862
79900
|
queryParams: {};
|
|
79863
79901
|
jsonBody: {};
|
|
79864
79902
|
commonParams: {
|
|
79903
|
+
/** ID of the lock that you want to get. */
|
|
79865
79904
|
device_id?: string | undefined;
|
|
79905
|
+
/** Name of the lock that you want to get. */
|
|
79866
79906
|
name?: string | undefined;
|
|
79867
79907
|
};
|
|
79868
79908
|
formData: {};
|
|
@@ -82290,11 +82330,11 @@ interface Routes {
|
|
|
82290
82330
|
connected_account_ids?: string[] | undefined;
|
|
82291
82331
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
82292
82332
|
connect_webview_id?: string | undefined;
|
|
82293
|
-
/** Device type
|
|
82333
|
+
/** Device type of the locks that you want to list. */
|
|
82294
82334
|
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | undefined;
|
|
82295
|
-
/**
|
|
82335
|
+
/** Device types of the locks that you want to list. */
|
|
82296
82336
|
device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock'> | undefined;
|
|
82297
|
-
/** Manufacturer
|
|
82337
|
+
/** Manufacturer of the locks that you want to list. */
|
|
82298
82338
|
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings') | undefined;
|
|
82299
82339
|
/** Array of device IDs for which you want to list devices. */
|
|
82300
82340
|
device_ids?: string[] | undefined;
|
|
@@ -84730,7 +84770,9 @@ interface Routes {
|
|
|
84730
84770
|
method: 'POST';
|
|
84731
84771
|
queryParams: {};
|
|
84732
84772
|
jsonBody: {
|
|
84773
|
+
/** ID of the lock that you want to lock. */
|
|
84733
84774
|
device_id: string;
|
|
84775
|
+
/** */
|
|
84734
84776
|
sync?: boolean;
|
|
84735
84777
|
};
|
|
84736
84778
|
commonParams: {};
|
|
@@ -85846,7 +85888,9 @@ interface Routes {
|
|
|
85846
85888
|
method: 'POST';
|
|
85847
85889
|
queryParams: {};
|
|
85848
85890
|
jsonBody: {
|
|
85891
|
+
/** ID of the device for which you want to simulate a keypad code entry. */
|
|
85849
85892
|
device_id: string;
|
|
85893
|
+
/** Code that you want to simulate entering on a keypad. */
|
|
85850
85894
|
code: string;
|
|
85851
85895
|
};
|
|
85852
85896
|
commonParams: {};
|
|
@@ -86962,6 +87006,7 @@ interface Routes {
|
|
|
86962
87006
|
method: 'POST';
|
|
86963
87007
|
queryParams: {};
|
|
86964
87008
|
jsonBody: {
|
|
87009
|
+
/** ID of the device for which you want to simulate a manual lock action using a keypad. */
|
|
86965
87010
|
device_id: string;
|
|
86966
87011
|
};
|
|
86967
87012
|
commonParams: {};
|
|
@@ -88077,7 +88122,9 @@ interface Routes {
|
|
|
88077
88122
|
method: 'POST';
|
|
88078
88123
|
queryParams: {};
|
|
88079
88124
|
jsonBody: {
|
|
88125
|
+
/** ID of the lock that you want to unlock. */
|
|
88080
88126
|
device_id: string;
|
|
88127
|
+
/** */
|
|
88081
88128
|
sync?: boolean;
|
|
88082
88129
|
};
|
|
88083
88130
|
commonParams: {};
|
|
@@ -95596,6 +95643,7 @@ interface Routes {
|
|
|
95596
95643
|
token: string;
|
|
95597
95644
|
user_identifier_key: string | null;
|
|
95598
95645
|
device_count: number;
|
|
95646
|
+
customer_id?: string | undefined;
|
|
95599
95647
|
connected_account_ids: string[];
|
|
95600
95648
|
connect_webview_ids: string[];
|
|
95601
95649
|
user_identity_ids: string[];
|