@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
|
@@ -7,6 +7,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
7
7
|
token: z.ZodString;
|
|
8
8
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
9
9
|
device_count: z.ZodNumber;
|
|
10
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
10
11
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
11
12
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
12
13
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -21,6 +22,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
21
22
|
device_count: number;
|
|
22
23
|
connect_webview_ids: string[];
|
|
23
24
|
user_identity_ids: string[];
|
|
25
|
+
customer_id?: string | undefined;
|
|
24
26
|
}, {
|
|
25
27
|
workspace_id: string;
|
|
26
28
|
created_at: string;
|
|
@@ -32,5 +34,6 @@ export declare const client_session: z.ZodObject<{
|
|
|
32
34
|
device_count: number;
|
|
33
35
|
connect_webview_ids: string[];
|
|
34
36
|
user_identity_ids: string[];
|
|
37
|
+
customer_id?: string | undefined;
|
|
35
38
|
}>;
|
|
36
39
|
export type ClientSession = z.infer<typeof client_session>;
|
|
@@ -7,6 +7,7 @@ export const client_session = z.object({
|
|
|
7
7
|
token: z.string(),
|
|
8
8
|
user_identifier_key: z.string().nullable(),
|
|
9
9
|
device_count: z.number(),
|
|
10
|
+
customer_id: z.string().uuid().optional(),
|
|
10
11
|
connected_account_ids: z.array(z.string().uuid()),
|
|
11
12
|
connect_webview_ids: z.array(z.string().uuid()),
|
|
12
13
|
user_identity_ids: z.array(z.string().uuid()),
|
|
@@ -15,11 +16,11 @@ export const client_session = z.object({
|
|
|
15
16
|
route_path: /client_sessions
|
|
16
17
|
---
|
|
17
18
|
Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
18
|
-
|
|
19
|
+
|
|
19
20
|
You create each client session with a custom \`user_identifier_key\`. Normally, the \`user_identifier_key\` is a user ID that your application provides.
|
|
20
|
-
|
|
21
|
+
|
|
21
22
|
When calling the Seam API from your backend using an API key, you can pass the \`user_identifier_key\` as a parameter to limit results to the associated client session. For example, \`/devices/list?user_identifier_key=123\` only returns devices associated with the client session created with the \`user_identifier_key\` \`123\`.
|
|
22
|
-
|
|
23
|
+
|
|
23
24
|
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
24
25
|
|
|
25
26
|
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;CAaX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;CAaX,CAAC,CAAA"}
|
|
@@ -2855,6 +2855,10 @@ declare const _default: {
|
|
|
2855
2855
|
format: string;
|
|
2856
2856
|
type: string;
|
|
2857
2857
|
};
|
|
2858
|
+
customer_id: {
|
|
2859
|
+
format: string;
|
|
2860
|
+
type: string;
|
|
2861
|
+
};
|
|
2858
2862
|
device_count: {
|
|
2859
2863
|
format: string;
|
|
2860
2864
|
type: string;
|
|
@@ -10949,17 +10953,17 @@ declare const _default: {
|
|
|
10949
10953
|
name: string;
|
|
10950
10954
|
type: string;
|
|
10951
10955
|
};
|
|
10952
|
-
|
|
10956
|
+
client_session_with_customer: {
|
|
10953
10957
|
bearerFormat: string;
|
|
10954
10958
|
scheme: string;
|
|
10955
10959
|
type: string;
|
|
10956
10960
|
};
|
|
10957
|
-
|
|
10961
|
+
console_session_with_workspace: {
|
|
10958
10962
|
bearerFormat: string;
|
|
10959
10963
|
scheme: string;
|
|
10960
10964
|
type: string;
|
|
10961
10965
|
};
|
|
10962
|
-
|
|
10966
|
+
console_session_without_workspace: {
|
|
10963
10967
|
bearerFormat: string;
|
|
10964
10968
|
scheme: string;
|
|
10965
10969
|
type: string;
|
|
@@ -19341,12 +19345,12 @@ declare const _default: {
|
|
|
19341
19345
|
};
|
|
19342
19346
|
security: ({
|
|
19343
19347
|
client_session: never[];
|
|
19344
|
-
|
|
19348
|
+
client_session_with_customer?: never;
|
|
19345
19349
|
pat_with_workspace?: never;
|
|
19346
19350
|
console_session_with_workspace?: never;
|
|
19347
19351
|
api_key?: never;
|
|
19348
19352
|
} | {
|
|
19349
|
-
|
|
19353
|
+
client_session_with_customer: never[];
|
|
19350
19354
|
client_session?: never;
|
|
19351
19355
|
pat_with_workspace?: never;
|
|
19352
19356
|
console_session_with_workspace?: never;
|
|
@@ -19354,19 +19358,19 @@ declare const _default: {
|
|
|
19354
19358
|
} | {
|
|
19355
19359
|
pat_with_workspace: never[];
|
|
19356
19360
|
client_session?: never;
|
|
19357
|
-
|
|
19361
|
+
client_session_with_customer?: never;
|
|
19358
19362
|
console_session_with_workspace?: never;
|
|
19359
19363
|
api_key?: never;
|
|
19360
19364
|
} | {
|
|
19361
19365
|
console_session_with_workspace: never[];
|
|
19362
19366
|
client_session?: never;
|
|
19363
|
-
|
|
19367
|
+
client_session_with_customer?: never;
|
|
19364
19368
|
pat_with_workspace?: never;
|
|
19365
19369
|
api_key?: never;
|
|
19366
19370
|
} | {
|
|
19367
19371
|
api_key: never[];
|
|
19368
19372
|
client_session?: never;
|
|
19369
|
-
|
|
19373
|
+
client_session_with_customer?: never;
|
|
19370
19374
|
pat_with_workspace?: never;
|
|
19371
19375
|
console_session_with_workspace?: never;
|
|
19372
19376
|
})[];
|
|
@@ -19495,12 +19499,12 @@ declare const _default: {
|
|
|
19495
19499
|
};
|
|
19496
19500
|
security: ({
|
|
19497
19501
|
client_session: never[];
|
|
19498
|
-
|
|
19502
|
+
client_session_with_customer?: never;
|
|
19499
19503
|
pat_with_workspace?: never;
|
|
19500
19504
|
console_session_with_workspace?: never;
|
|
19501
19505
|
api_key?: never;
|
|
19502
19506
|
} | {
|
|
19503
|
-
|
|
19507
|
+
client_session_with_customer: never[];
|
|
19504
19508
|
client_session?: never;
|
|
19505
19509
|
pat_with_workspace?: never;
|
|
19506
19510
|
console_session_with_workspace?: never;
|
|
@@ -19508,19 +19512,19 @@ declare const _default: {
|
|
|
19508
19512
|
} | {
|
|
19509
19513
|
pat_with_workspace: never[];
|
|
19510
19514
|
client_session?: never;
|
|
19511
|
-
|
|
19515
|
+
client_session_with_customer?: never;
|
|
19512
19516
|
console_session_with_workspace?: never;
|
|
19513
19517
|
api_key?: never;
|
|
19514
19518
|
} | {
|
|
19515
19519
|
console_session_with_workspace: never[];
|
|
19516
19520
|
client_session?: never;
|
|
19517
|
-
|
|
19521
|
+
client_session_with_customer?: never;
|
|
19518
19522
|
pat_with_workspace?: never;
|
|
19519
19523
|
api_key?: never;
|
|
19520
19524
|
} | {
|
|
19521
19525
|
api_key: never[];
|
|
19522
19526
|
client_session?: never;
|
|
19523
|
-
|
|
19527
|
+
client_session_with_customer?: never;
|
|
19524
19528
|
pat_with_workspace?: never;
|
|
19525
19529
|
console_session_with_workspace?: never;
|
|
19526
19530
|
})[];
|
|
@@ -19551,7 +19555,10 @@ declare const _default: {
|
|
|
19551
19555
|
description: string;
|
|
19552
19556
|
type: string;
|
|
19553
19557
|
};
|
|
19554
|
-
|
|
19558
|
+
customer_ids: {
|
|
19559
|
+
items: {
|
|
19560
|
+
type: string;
|
|
19561
|
+
};
|
|
19555
19562
|
type: string;
|
|
19556
19563
|
};
|
|
19557
19564
|
limit: {
|
|
@@ -19602,12 +19609,12 @@ declare const _default: {
|
|
|
19602
19609
|
};
|
|
19603
19610
|
security: ({
|
|
19604
19611
|
client_session: never[];
|
|
19605
|
-
|
|
19612
|
+
client_session_with_customer?: never;
|
|
19606
19613
|
pat_with_workspace?: never;
|
|
19607
19614
|
console_session_with_workspace?: never;
|
|
19608
19615
|
api_key?: never;
|
|
19609
19616
|
} | {
|
|
19610
|
-
|
|
19617
|
+
client_session_with_customer: never[];
|
|
19611
19618
|
client_session?: never;
|
|
19612
19619
|
pat_with_workspace?: never;
|
|
19613
19620
|
console_session_with_workspace?: never;
|
|
@@ -19615,19 +19622,19 @@ declare const _default: {
|
|
|
19615
19622
|
} | {
|
|
19616
19623
|
pat_with_workspace: never[];
|
|
19617
19624
|
client_session?: never;
|
|
19618
|
-
|
|
19625
|
+
client_session_with_customer?: never;
|
|
19619
19626
|
console_session_with_workspace?: never;
|
|
19620
19627
|
api_key?: never;
|
|
19621
19628
|
} | {
|
|
19622
19629
|
console_session_with_workspace: never[];
|
|
19623
19630
|
client_session?: never;
|
|
19624
|
-
|
|
19631
|
+
client_session_with_customer?: never;
|
|
19625
19632
|
pat_with_workspace?: never;
|
|
19626
19633
|
api_key?: never;
|
|
19627
19634
|
} | {
|
|
19628
19635
|
api_key: never[];
|
|
19629
19636
|
client_session?: never;
|
|
19630
|
-
|
|
19637
|
+
client_session_with_customer?: never;
|
|
19631
19638
|
pat_with_workspace?: never;
|
|
19632
19639
|
console_session_with_workspace?: never;
|
|
19633
19640
|
})[];
|
|
@@ -19694,19 +19701,19 @@ declare const _default: {
|
|
|
19694
19701
|
api_key: never[];
|
|
19695
19702
|
pat_with_workspace?: never;
|
|
19696
19703
|
console_session_with_workspace?: never;
|
|
19697
|
-
|
|
19704
|
+
client_session_with_customer?: never;
|
|
19698
19705
|
} | {
|
|
19699
19706
|
pat_with_workspace: never[];
|
|
19700
19707
|
api_key?: never;
|
|
19701
19708
|
console_session_with_workspace?: never;
|
|
19702
|
-
|
|
19709
|
+
client_session_with_customer?: never;
|
|
19703
19710
|
} | {
|
|
19704
19711
|
console_session_with_workspace: never[];
|
|
19705
19712
|
api_key?: never;
|
|
19706
19713
|
pat_with_workspace?: never;
|
|
19707
|
-
|
|
19714
|
+
client_session_with_customer?: never;
|
|
19708
19715
|
} | {
|
|
19709
|
-
|
|
19716
|
+
client_session_with_customer: never[];
|
|
19710
19717
|
api_key?: never;
|
|
19711
19718
|
pat_with_workspace?: never;
|
|
19712
19719
|
console_session_with_workspace?: never;
|
|
@@ -19895,19 +19902,19 @@ declare const _default: {
|
|
|
19895
19902
|
api_key: never[];
|
|
19896
19903
|
pat_with_workspace?: never;
|
|
19897
19904
|
console_session_with_workspace?: never;
|
|
19898
|
-
|
|
19905
|
+
client_session_with_customer?: never;
|
|
19899
19906
|
} | {
|
|
19900
19907
|
pat_with_workspace: never[];
|
|
19901
19908
|
api_key?: never;
|
|
19902
19909
|
console_session_with_workspace?: never;
|
|
19903
|
-
|
|
19910
|
+
client_session_with_customer?: never;
|
|
19904
19911
|
} | {
|
|
19905
19912
|
console_session_with_workspace: never[];
|
|
19906
19913
|
api_key?: never;
|
|
19907
19914
|
pat_with_workspace?: never;
|
|
19908
|
-
|
|
19915
|
+
client_session_with_customer?: never;
|
|
19909
19916
|
} | {
|
|
19910
|
-
|
|
19917
|
+
client_session_with_customer: never[];
|
|
19911
19918
|
api_key?: never;
|
|
19912
19919
|
pat_with_workspace?: never;
|
|
19913
19920
|
console_session_with_workspace?: never;
|
|
@@ -20195,12 +20202,12 @@ declare const _default: {
|
|
|
20195
20202
|
};
|
|
20196
20203
|
security: ({
|
|
20197
20204
|
client_session: never[];
|
|
20198
|
-
|
|
20205
|
+
client_session_with_customer?: never;
|
|
20199
20206
|
pat_with_workspace?: never;
|
|
20200
20207
|
console_session_with_workspace?: never;
|
|
20201
20208
|
api_key?: never;
|
|
20202
20209
|
} | {
|
|
20203
|
-
|
|
20210
|
+
client_session_with_customer: never[];
|
|
20204
20211
|
client_session?: never;
|
|
20205
20212
|
pat_with_workspace?: never;
|
|
20206
20213
|
console_session_with_workspace?: never;
|
|
@@ -20208,19 +20215,19 @@ declare const _default: {
|
|
|
20208
20215
|
} | {
|
|
20209
20216
|
pat_with_workspace: never[];
|
|
20210
20217
|
client_session?: never;
|
|
20211
|
-
|
|
20218
|
+
client_session_with_customer?: never;
|
|
20212
20219
|
console_session_with_workspace?: never;
|
|
20213
20220
|
api_key?: never;
|
|
20214
20221
|
} | {
|
|
20215
20222
|
console_session_with_workspace: never[];
|
|
20216
20223
|
client_session?: never;
|
|
20217
|
-
|
|
20224
|
+
client_session_with_customer?: never;
|
|
20218
20225
|
pat_with_workspace?: never;
|
|
20219
20226
|
api_key?: never;
|
|
20220
20227
|
} | {
|
|
20221
20228
|
api_key: never[];
|
|
20222
20229
|
client_session?: never;
|
|
20223
|
-
|
|
20230
|
+
client_session_with_customer?: never;
|
|
20224
20231
|
pat_with_workspace?: never;
|
|
20225
20232
|
console_session_with_workspace?: never;
|
|
20226
20233
|
})[];
|
|
@@ -20391,32 +20398,32 @@ declare const _default: {
|
|
|
20391
20398
|
};
|
|
20392
20399
|
};
|
|
20393
20400
|
security: ({
|
|
20394
|
-
|
|
20401
|
+
client_session_with_customer: never[];
|
|
20395
20402
|
client_session?: never;
|
|
20396
20403
|
pat_with_workspace?: never;
|
|
20397
20404
|
console_session_with_workspace?: never;
|
|
20398
20405
|
api_key?: never;
|
|
20399
20406
|
} | {
|
|
20400
20407
|
client_session: never[];
|
|
20401
|
-
|
|
20408
|
+
client_session_with_customer?: never;
|
|
20402
20409
|
pat_with_workspace?: never;
|
|
20403
20410
|
console_session_with_workspace?: never;
|
|
20404
20411
|
api_key?: never;
|
|
20405
20412
|
} | {
|
|
20406
20413
|
pat_with_workspace: never[];
|
|
20407
|
-
|
|
20414
|
+
client_session_with_customer?: never;
|
|
20408
20415
|
client_session?: never;
|
|
20409
20416
|
console_session_with_workspace?: never;
|
|
20410
20417
|
api_key?: never;
|
|
20411
20418
|
} | {
|
|
20412
20419
|
console_session_with_workspace: never[];
|
|
20413
|
-
|
|
20420
|
+
client_session_with_customer?: never;
|
|
20414
20421
|
client_session?: never;
|
|
20415
20422
|
pat_with_workspace?: never;
|
|
20416
20423
|
api_key?: never;
|
|
20417
20424
|
} | {
|
|
20418
20425
|
api_key: never[];
|
|
20419
|
-
|
|
20426
|
+
client_session_with_customer?: never;
|
|
20420
20427
|
client_session?: never;
|
|
20421
20428
|
pat_with_workspace?: never;
|
|
20422
20429
|
console_session_with_workspace?: never;
|
|
@@ -21564,27 +21571,27 @@ declare const _default: {
|
|
|
21564
21571
|
api_key?: never;
|
|
21565
21572
|
pat_with_workspace?: never;
|
|
21566
21573
|
console_session_with_workspace?: never;
|
|
21567
|
-
|
|
21574
|
+
client_session_with_customer?: never;
|
|
21568
21575
|
} | {
|
|
21569
21576
|
api_key: never[];
|
|
21570
21577
|
client_session?: never;
|
|
21571
21578
|
pat_with_workspace?: never;
|
|
21572
21579
|
console_session_with_workspace?: never;
|
|
21573
|
-
|
|
21580
|
+
client_session_with_customer?: never;
|
|
21574
21581
|
} | {
|
|
21575
21582
|
pat_with_workspace: never[];
|
|
21576
21583
|
client_session?: never;
|
|
21577
21584
|
api_key?: never;
|
|
21578
21585
|
console_session_with_workspace?: never;
|
|
21579
|
-
|
|
21586
|
+
client_session_with_customer?: never;
|
|
21580
21587
|
} | {
|
|
21581
21588
|
console_session_with_workspace: never[];
|
|
21582
21589
|
client_session?: never;
|
|
21583
21590
|
api_key?: never;
|
|
21584
21591
|
pat_with_workspace?: never;
|
|
21585
|
-
|
|
21592
|
+
client_session_with_customer?: never;
|
|
21586
21593
|
} | {
|
|
21587
|
-
|
|
21594
|
+
client_session_with_customer: never[];
|
|
21588
21595
|
client_session?: never;
|
|
21589
21596
|
api_key?: never;
|
|
21590
21597
|
pat_with_workspace?: never;
|
|
@@ -21601,6 +21608,7 @@ declare const _default: {
|
|
|
21601
21608
|
};
|
|
21602
21609
|
'/locks/get': {
|
|
21603
21610
|
post: {
|
|
21611
|
+
description: string;
|
|
21604
21612
|
operationId: string;
|
|
21605
21613
|
requestBody: {
|
|
21606
21614
|
content: {
|
|
@@ -21608,10 +21616,12 @@ declare const _default: {
|
|
|
21608
21616
|
schema: {
|
|
21609
21617
|
properties: {
|
|
21610
21618
|
device_id: {
|
|
21619
|
+
description: string;
|
|
21611
21620
|
format: string;
|
|
21612
21621
|
type: string;
|
|
21613
21622
|
};
|
|
21614
21623
|
name: {
|
|
21624
|
+
description: string;
|
|
21615
21625
|
type: string;
|
|
21616
21626
|
};
|
|
21617
21627
|
};
|
|
@@ -21678,10 +21688,12 @@ declare const _default: {
|
|
|
21678
21688
|
'x-fern-sdk-method-name': string;
|
|
21679
21689
|
'x-fern-sdk-return-value': string;
|
|
21680
21690
|
'x-response-key': string;
|
|
21691
|
+
'x-title': string;
|
|
21681
21692
|
};
|
|
21682
21693
|
};
|
|
21683
21694
|
'/locks/list': {
|
|
21684
21695
|
post: {
|
|
21696
|
+
description: string;
|
|
21685
21697
|
operationId: string;
|
|
21686
21698
|
requestBody: {
|
|
21687
21699
|
content: {
|
|
@@ -21861,10 +21873,12 @@ declare const _default: {
|
|
|
21861
21873
|
'x-fern-sdk-method-name': string;
|
|
21862
21874
|
'x-fern-sdk-return-value': string;
|
|
21863
21875
|
'x-response-key': string;
|
|
21876
|
+
'x-title': string;
|
|
21864
21877
|
};
|
|
21865
21878
|
};
|
|
21866
21879
|
'/locks/lock_door': {
|
|
21867
21880
|
post: {
|
|
21881
|
+
description: string;
|
|
21868
21882
|
operationId: string;
|
|
21869
21883
|
requestBody: {
|
|
21870
21884
|
content: {
|
|
@@ -21872,12 +21886,14 @@ declare const _default: {
|
|
|
21872
21886
|
schema: {
|
|
21873
21887
|
properties: {
|
|
21874
21888
|
device_id: {
|
|
21889
|
+
description: string;
|
|
21875
21890
|
format: string;
|
|
21876
21891
|
type: string;
|
|
21877
21892
|
};
|
|
21878
21893
|
sync: {
|
|
21879
21894
|
default: boolean;
|
|
21880
21895
|
type: string;
|
|
21896
|
+
'x-undocumented': string;
|
|
21881
21897
|
};
|
|
21882
21898
|
};
|
|
21883
21899
|
required: string[];
|
|
@@ -21941,10 +21957,12 @@ declare const _default: {
|
|
|
21941
21957
|
'x-fern-sdk-method-name': string;
|
|
21942
21958
|
'x-fern-sdk-return-value': string;
|
|
21943
21959
|
'x-response-key': string;
|
|
21960
|
+
'x-title': string;
|
|
21944
21961
|
};
|
|
21945
21962
|
};
|
|
21946
21963
|
'/locks/simulate/keypad_code_entry': {
|
|
21947
21964
|
post: {
|
|
21965
|
+
description: string;
|
|
21948
21966
|
operationId: string;
|
|
21949
21967
|
requestBody: {
|
|
21950
21968
|
content: {
|
|
@@ -21952,9 +21970,11 @@ declare const _default: {
|
|
|
21952
21970
|
schema: {
|
|
21953
21971
|
properties: {
|
|
21954
21972
|
code: {
|
|
21973
|
+
description: string;
|
|
21955
21974
|
type: string;
|
|
21956
21975
|
};
|
|
21957
21976
|
device_id: {
|
|
21977
|
+
description: string;
|
|
21958
21978
|
format: string;
|
|
21959
21979
|
type: string;
|
|
21960
21980
|
};
|
|
@@ -22017,6 +22037,7 @@ declare const _default: {
|
|
|
22017
22037
|
};
|
|
22018
22038
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
22019
22039
|
post: {
|
|
22040
|
+
description: string;
|
|
22020
22041
|
operationId: string;
|
|
22021
22042
|
requestBody: {
|
|
22022
22043
|
content: {
|
|
@@ -22024,6 +22045,7 @@ declare const _default: {
|
|
|
22024
22045
|
schema: {
|
|
22025
22046
|
properties: {
|
|
22026
22047
|
device_id: {
|
|
22048
|
+
description: string;
|
|
22027
22049
|
format: string;
|
|
22028
22050
|
type: string;
|
|
22029
22051
|
};
|
|
@@ -22086,6 +22108,7 @@ declare const _default: {
|
|
|
22086
22108
|
};
|
|
22087
22109
|
'/locks/unlock_door': {
|
|
22088
22110
|
post: {
|
|
22111
|
+
description: string;
|
|
22089
22112
|
operationId: string;
|
|
22090
22113
|
requestBody: {
|
|
22091
22114
|
content: {
|
|
@@ -22093,12 +22116,14 @@ declare const _default: {
|
|
|
22093
22116
|
schema: {
|
|
22094
22117
|
properties: {
|
|
22095
22118
|
device_id: {
|
|
22119
|
+
description: string;
|
|
22096
22120
|
format: string;
|
|
22097
22121
|
type: string;
|
|
22098
22122
|
};
|
|
22099
22123
|
sync: {
|
|
22100
22124
|
default: boolean;
|
|
22101
22125
|
type: string;
|
|
22126
|
+
'x-undocumented': string;
|
|
22102
22127
|
};
|
|
22103
22128
|
};
|
|
22104
22129
|
required: string[];
|
|
@@ -22162,6 +22187,7 @@ declare const _default: {
|
|
|
22162
22187
|
'x-fern-sdk-method-name': string;
|
|
22163
22188
|
'x-fern-sdk-return-value': string;
|
|
22164
22189
|
'x-response-key': string;
|
|
22190
|
+
'x-title': string;
|
|
22165
22191
|
};
|
|
22166
22192
|
};
|
|
22167
22193
|
'/networks/get': {
|
|
@@ -22225,10 +22251,12 @@ declare const _default: {
|
|
|
22225
22251
|
})[];
|
|
22226
22252
|
summary: string;
|
|
22227
22253
|
tags: string[];
|
|
22254
|
+
'x-deprecated': string;
|
|
22228
22255
|
'x-fern-sdk-group-name': string[];
|
|
22229
22256
|
'x-fern-sdk-method-name': string;
|
|
22230
22257
|
'x-fern-sdk-return-value': string;
|
|
22231
22258
|
'x-response-key': string;
|
|
22259
|
+
'x-undocumented': string;
|
|
22232
22260
|
};
|
|
22233
22261
|
};
|
|
22234
22262
|
'/networks/list': {
|
|
@@ -22289,10 +22317,12 @@ declare const _default: {
|
|
|
22289
22317
|
})[];
|
|
22290
22318
|
summary: string;
|
|
22291
22319
|
tags: string[];
|
|
22320
|
+
'x-deprecated': string;
|
|
22292
22321
|
'x-fern-sdk-group-name': string[];
|
|
22293
22322
|
'x-fern-sdk-method-name': string;
|
|
22294
22323
|
'x-fern-sdk-return-value': string;
|
|
22295
22324
|
'x-response-key': string;
|
|
22325
|
+
'x-undocumented': string;
|
|
22296
22326
|
};
|
|
22297
22327
|
};
|
|
22298
22328
|
'/noise_sensors/list': {
|
|
@@ -24882,7 +24912,7 @@ declare const _default: {
|
|
|
24882
24912
|
};
|
|
24883
24913
|
};
|
|
24884
24914
|
security: {
|
|
24885
|
-
|
|
24915
|
+
client_session_with_customer: never[];
|
|
24886
24916
|
}[];
|
|
24887
24917
|
summary: string;
|
|
24888
24918
|
tags: never[];
|
|
@@ -28142,19 +28172,19 @@ declare const _default: {
|
|
|
28142
28172
|
pat_with_workspace: never[];
|
|
28143
28173
|
console_session_with_workspace?: never;
|
|
28144
28174
|
api_key?: never;
|
|
28145
|
-
|
|
28175
|
+
client_session_with_customer?: never;
|
|
28146
28176
|
} | {
|
|
28147
28177
|
console_session_with_workspace: never[];
|
|
28148
28178
|
pat_with_workspace?: never;
|
|
28149
28179
|
api_key?: never;
|
|
28150
|
-
|
|
28180
|
+
client_session_with_customer?: never;
|
|
28151
28181
|
} | {
|
|
28152
28182
|
api_key: never[];
|
|
28153
28183
|
pat_with_workspace?: never;
|
|
28154
28184
|
console_session_with_workspace?: never;
|
|
28155
|
-
|
|
28185
|
+
client_session_with_customer?: never;
|
|
28156
28186
|
} | {
|
|
28157
|
-
|
|
28187
|
+
client_session_with_customer: never[];
|
|
28158
28188
|
pat_with_workspace?: never;
|
|
28159
28189
|
console_session_with_workspace?: never;
|
|
28160
28190
|
api_key?: never;
|
|
@@ -28218,19 +28248,19 @@ declare const _default: {
|
|
|
28218
28248
|
pat_with_workspace: never[];
|
|
28219
28249
|
console_session_with_workspace?: never;
|
|
28220
28250
|
api_key?: never;
|
|
28221
|
-
|
|
28251
|
+
client_session_with_customer?: never;
|
|
28222
28252
|
} | {
|
|
28223
28253
|
console_session_with_workspace: never[];
|
|
28224
28254
|
pat_with_workspace?: never;
|
|
28225
28255
|
api_key?: never;
|
|
28226
|
-
|
|
28256
|
+
client_session_with_customer?: never;
|
|
28227
28257
|
} | {
|
|
28228
28258
|
api_key: never[];
|
|
28229
28259
|
pat_with_workspace?: never;
|
|
28230
28260
|
console_session_with_workspace?: never;
|
|
28231
|
-
|
|
28261
|
+
client_session_with_customer?: never;
|
|
28232
28262
|
} | {
|
|
28233
|
-
|
|
28263
|
+
client_session_with_customer: never[];
|
|
28234
28264
|
pat_with_workspace?: never;
|
|
28235
28265
|
console_session_with_workspace?: never;
|
|
28236
28266
|
api_key?: never;
|
|
@@ -28373,19 +28403,19 @@ declare const _default: {
|
|
|
28373
28403
|
pat_with_workspace: never[];
|
|
28374
28404
|
console_session_with_workspace?: never;
|
|
28375
28405
|
api_key?: never;
|
|
28376
|
-
|
|
28406
|
+
client_session_with_customer?: never;
|
|
28377
28407
|
} | {
|
|
28378
28408
|
console_session_with_workspace: never[];
|
|
28379
28409
|
pat_with_workspace?: never;
|
|
28380
28410
|
api_key?: never;
|
|
28381
|
-
|
|
28411
|
+
client_session_with_customer?: never;
|
|
28382
28412
|
} | {
|
|
28383
28413
|
api_key: never[];
|
|
28384
28414
|
pat_with_workspace?: never;
|
|
28385
28415
|
console_session_with_workspace?: never;
|
|
28386
|
-
|
|
28416
|
+
client_session_with_customer?: never;
|
|
28387
28417
|
} | {
|
|
28388
|
-
|
|
28418
|
+
client_session_with_customer: never[];
|
|
28389
28419
|
pat_with_workspace?: never;
|
|
28390
28420
|
console_session_with_workspace?: never;
|
|
28391
28421
|
api_key?: never;
|
|
@@ -28546,19 +28576,19 @@ declare const _default: {
|
|
|
28546
28576
|
pat_with_workspace: never[];
|
|
28547
28577
|
console_session_with_workspace?: never;
|
|
28548
28578
|
api_key?: never;
|
|
28549
|
-
|
|
28579
|
+
client_session_with_customer?: never;
|
|
28550
28580
|
} | {
|
|
28551
28581
|
console_session_with_workspace: never[];
|
|
28552
28582
|
pat_with_workspace?: never;
|
|
28553
28583
|
api_key?: never;
|
|
28554
|
-
|
|
28584
|
+
client_session_with_customer?: never;
|
|
28555
28585
|
} | {
|
|
28556
28586
|
api_key: never[];
|
|
28557
28587
|
pat_with_workspace?: never;
|
|
28558
28588
|
console_session_with_workspace?: never;
|
|
28559
|
-
|
|
28589
|
+
client_session_with_customer?: never;
|
|
28560
28590
|
} | {
|
|
28561
|
-
|
|
28591
|
+
client_session_with_customer: never[];
|
|
28562
28592
|
pat_with_workspace?: never;
|
|
28563
28593
|
console_session_with_workspace?: never;
|
|
28564
28594
|
api_key?: never;
|