@seamapi/types 1.461.0 → 1.462.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +395 -86
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17849 -1242
- package/dist/index.cjs +395 -86
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +26164 -2844
- package/lib/seam/connect/models/batch.js +31 -11
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/spaces/space.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +353 -4
- package/lib/seam/connect/openapi.js +307 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14994 -10396
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +44 -21
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +310 -12
- package/src/lib/seam/connect/route-types.ts +6696 -1192
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { acs_access_group, unmanaged_acs_access_group, } from './acs/acs-access-group.js';
|
|
3
|
+
import { acs_encoder } from './acs/acs-encoder.js';
|
|
4
|
+
import { acs_user, unmanaged_acs_user } from './acs/acs-users/acs-user.js';
|
|
5
|
+
import { acs_entrance, acs_system } from './acs/index.js';
|
|
6
|
+
import { action_attempt } from './action-attempts/action-attempt.js';
|
|
7
|
+
import { client_session } from './client-sessions/client-session.js';
|
|
4
8
|
import { connected_account } from './connected-accounts/index.js';
|
|
5
9
|
import { device } from './devices/index.js';
|
|
10
|
+
import { unmanaged_device } from './devices/unmanaged-device.js';
|
|
6
11
|
import { space } from './spaces/index.js';
|
|
7
12
|
import { user_identity } from './user-identities/index.js';
|
|
8
13
|
import { workspace } from './workspaces/index.js';
|
|
@@ -39,24 +44,39 @@ export const workspaces_batch = z
|
|
|
39
44
|
spaces: space.array().optional(),
|
|
40
45
|
devices: device.array().optional(),
|
|
41
46
|
acs_entrances: acs_entrance.array().optional(),
|
|
47
|
+
acs_systems: acs_system.array().optional(),
|
|
48
|
+
acs_users: acs_user.array().optional(),
|
|
49
|
+
acs_access_groups: acs_access_group.array().optional(),
|
|
50
|
+
acs_encoders: acs_encoder.array().optional(),
|
|
51
|
+
action_attempts: action_attempt.array().optional(),
|
|
52
|
+
client_sessions: client_session.array().optional(),
|
|
53
|
+
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
54
|
+
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
55
|
+
unmanaged_devices: unmanaged_device.array().optional(),
|
|
42
56
|
})
|
|
43
|
-
.describe('A batch of workspace
|
|
44
|
-
export const batch = z
|
|
57
|
+
.describe('A batch of workspace resources.');
|
|
58
|
+
export const batch = z
|
|
59
|
+
.object({
|
|
45
60
|
batch_type: z.enum([
|
|
46
61
|
'workspaces',
|
|
62
|
+
'spaces',
|
|
47
63
|
'access_grants',
|
|
48
64
|
'access_methods',
|
|
49
|
-
'spaces',
|
|
50
65
|
]),
|
|
51
66
|
user_identities: user_identity.array().optional(),
|
|
52
67
|
workspaces: workspace.array().optional(),
|
|
53
68
|
spaces: space.array().optional(),
|
|
54
69
|
devices: device.array().optional(),
|
|
55
70
|
acs_entrances: acs_entrance.array().optional(),
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
71
|
+
acs_systems: acs_system.array().optional(),
|
|
72
|
+
acs_users: acs_user.array().optional(),
|
|
73
|
+
acs_access_groups: acs_access_group.array().optional(),
|
|
74
|
+
acs_encoders: acs_encoder.array().optional(),
|
|
75
|
+
action_attempts: action_attempt.array().optional(),
|
|
76
|
+
client_sessions: client_session.array().optional(),
|
|
77
|
+
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
78
|
+
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
79
|
+
unmanaged_devices: unmanaged_device.array().optional(),
|
|
80
|
+
})
|
|
81
|
+
.describe('A batch of workspace resources.');
|
|
62
82
|
//# sourceMappingURL=batch.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,11 +16,11 @@ export declare const client_session: z.ZodObject<{
|
|
|
16
16
|
workspace_id: string;
|
|
17
17
|
created_at: string;
|
|
18
18
|
connected_account_ids: string[];
|
|
19
|
-
device_count: number;
|
|
20
19
|
client_session_id: string;
|
|
21
20
|
expires_at: string;
|
|
22
21
|
token: string;
|
|
23
22
|
user_identifier_key: string | null;
|
|
23
|
+
device_count: number;
|
|
24
24
|
connect_webview_ids: string[];
|
|
25
25
|
user_identity_ids: string[];
|
|
26
26
|
user_identity_id?: string | undefined;
|
|
@@ -29,11 +29,11 @@ export declare const client_session: z.ZodObject<{
|
|
|
29
29
|
workspace_id: string;
|
|
30
30
|
created_at: string;
|
|
31
31
|
connected_account_ids: string[];
|
|
32
|
-
device_count: number;
|
|
33
32
|
client_session_id: string;
|
|
34
33
|
expires_at: string;
|
|
35
34
|
token: string;
|
|
36
35
|
user_identifier_key: string | null;
|
|
36
|
+
device_count: number;
|
|
37
37
|
connect_webview_ids: string[];
|
|
38
38
|
user_identity_ids: string[];
|
|
39
39
|
user_identity_id?: string | undefined;
|
|
@@ -56,7 +56,7 @@ export declare const ALL_DEVICE_PROVIDERS: [
|
|
|
56
56
|
];
|
|
57
57
|
export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP;
|
|
58
58
|
export declare const PROVIDER_CATEGORY_MAP: {
|
|
59
|
-
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "latch", "akiles", "sensi", "assa_abloy_vostio"];
|
|
59
|
+
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta"];
|
|
60
60
|
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee"];
|
|
61
61
|
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo"];
|
|
62
62
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,mBAAmB,EAAE,qBAAqB;IAC1C,aAAa,EAAE,eAAe;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,gBAAgB,EAAE,kBAAkB;IACpC,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,6BAA6B,EAAE,+BAA+B;IAC9D,KAAK,EAAE,OAAO;IACd,iBAAiB,EAAE,mBAAmB;IACtC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,mBAAmB;IAC3B,oCAAoC,EAAE,sCAAsC;IAC5E,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;CACV,CAAA;AAKV,MAAM,CAAC,MAAM,oBAAoB,GAG7B,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAQ,CAAA;AAI1C,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,MAAM,EAAE;QACN,QAAQ;QACR,OAAO;QACP,SAAS;QACT,aAAa;QACb,MAAM;QACN,MAAM;QACN,OAAO;QACP,aAAa;QACb,OAAO;QACP,OAAO;QACP,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,WAAW;QACX,QAAQ;QACR,QAAQ;QACR,MAAM;QACN,MAAM;QACN,OAAO;QACP,mBAAmB;QACnB,YAAY;QACZ,+BAA+B;QAC/B,OAAO;QACP,QAAQ;QACR,OAAO;QACP,mBAAmB;
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,8 +13,8 @@ export declare const space: z.ZodObject<{
|
|
|
13
13
|
display_name: string;
|
|
14
14
|
workspace_id: string;
|
|
15
15
|
created_at: string;
|
|
16
|
-
space_id: string;
|
|
17
16
|
device_count: number;
|
|
17
|
+
space_id: string;
|
|
18
18
|
acs_entrance_count: number;
|
|
19
19
|
space_key?: string | undefined;
|
|
20
20
|
}, {
|
|
@@ -22,8 +22,8 @@ export declare const space: z.ZodObject<{
|
|
|
22
22
|
display_name: string;
|
|
23
23
|
workspace_id: string;
|
|
24
24
|
created_at: string;
|
|
25
|
-
space_id: string;
|
|
26
25
|
device_count: number;
|
|
26
|
+
space_id: string;
|
|
27
27
|
acs_entrance_count: number;
|
|
28
28
|
space_key?: string | undefined;
|
|
29
29
|
}>;
|
|
@@ -16616,6 +16616,12 @@ declare const _default: {
|
|
|
16616
16616
|
nullable: boolean;
|
|
16617
16617
|
type: string;
|
|
16618
16618
|
};
|
|
16619
|
+
user_identity_key: {
|
|
16620
|
+
description: string;
|
|
16621
|
+
minLength: number;
|
|
16622
|
+
nullable: boolean;
|
|
16623
|
+
type: string;
|
|
16624
|
+
};
|
|
16619
16625
|
};
|
|
16620
16626
|
type: string;
|
|
16621
16627
|
};
|
|
@@ -18103,16 +18109,52 @@ declare const _default: {
|
|
|
18103
18109
|
batch: {
|
|
18104
18110
|
description: string;
|
|
18105
18111
|
properties: {
|
|
18112
|
+
acs_access_groups: {
|
|
18113
|
+
items: {
|
|
18114
|
+
$ref: string;
|
|
18115
|
+
};
|
|
18116
|
+
type: string;
|
|
18117
|
+
};
|
|
18118
|
+
acs_encoders: {
|
|
18119
|
+
items: {
|
|
18120
|
+
$ref: string;
|
|
18121
|
+
};
|
|
18122
|
+
type: string;
|
|
18123
|
+
};
|
|
18106
18124
|
acs_entrances: {
|
|
18107
18125
|
items: {
|
|
18108
18126
|
$ref: string;
|
|
18109
18127
|
};
|
|
18110
18128
|
type: string;
|
|
18111
18129
|
};
|
|
18130
|
+
acs_systems: {
|
|
18131
|
+
items: {
|
|
18132
|
+
$ref: string;
|
|
18133
|
+
};
|
|
18134
|
+
type: string;
|
|
18135
|
+
};
|
|
18136
|
+
acs_users: {
|
|
18137
|
+
items: {
|
|
18138
|
+
$ref: string;
|
|
18139
|
+
};
|
|
18140
|
+
type: string;
|
|
18141
|
+
};
|
|
18142
|
+
action_attempts: {
|
|
18143
|
+
items: {
|
|
18144
|
+
$ref: string;
|
|
18145
|
+
};
|
|
18146
|
+
type: string;
|
|
18147
|
+
};
|
|
18112
18148
|
batch_type: {
|
|
18113
18149
|
enum: string[];
|
|
18114
18150
|
type: string;
|
|
18115
18151
|
};
|
|
18152
|
+
client_sessions: {
|
|
18153
|
+
items: {
|
|
18154
|
+
$ref: string;
|
|
18155
|
+
};
|
|
18156
|
+
type: string;
|
|
18157
|
+
};
|
|
18116
18158
|
devices: {
|
|
18117
18159
|
items: {
|
|
18118
18160
|
$ref: string;
|
|
@@ -18125,6 +18167,24 @@ declare const _default: {
|
|
|
18125
18167
|
};
|
|
18126
18168
|
type: string;
|
|
18127
18169
|
};
|
|
18170
|
+
unmanaged_acs_access_groups: {
|
|
18171
|
+
items: {
|
|
18172
|
+
$ref: string;
|
|
18173
|
+
};
|
|
18174
|
+
type: string;
|
|
18175
|
+
};
|
|
18176
|
+
unmanaged_acs_users: {
|
|
18177
|
+
items: {
|
|
18178
|
+
$ref: string;
|
|
18179
|
+
};
|
|
18180
|
+
type: string;
|
|
18181
|
+
};
|
|
18182
|
+
unmanaged_devices: {
|
|
18183
|
+
items: {
|
|
18184
|
+
$ref: string;
|
|
18185
|
+
};
|
|
18186
|
+
type: string;
|
|
18187
|
+
};
|
|
18128
18188
|
user_identities: {
|
|
18129
18189
|
items: {
|
|
18130
18190
|
$ref: string;
|
|
@@ -18140,7 +18200,6 @@ declare const _default: {
|
|
|
18140
18200
|
};
|
|
18141
18201
|
required: string[];
|
|
18142
18202
|
type: string;
|
|
18143
|
-
'x-route-path': string;
|
|
18144
18203
|
};
|
|
18145
18204
|
ok: {
|
|
18146
18205
|
type: string;
|
|
@@ -18229,16 +18288,52 @@ declare const _default: {
|
|
|
18229
18288
|
batch: {
|
|
18230
18289
|
description: string;
|
|
18231
18290
|
properties: {
|
|
18291
|
+
acs_access_groups: {
|
|
18292
|
+
items: {
|
|
18293
|
+
$ref: string;
|
|
18294
|
+
};
|
|
18295
|
+
type: string;
|
|
18296
|
+
};
|
|
18297
|
+
acs_encoders: {
|
|
18298
|
+
items: {
|
|
18299
|
+
$ref: string;
|
|
18300
|
+
};
|
|
18301
|
+
type: string;
|
|
18302
|
+
};
|
|
18232
18303
|
acs_entrances: {
|
|
18233
18304
|
items: {
|
|
18234
18305
|
$ref: string;
|
|
18235
18306
|
};
|
|
18236
18307
|
type: string;
|
|
18237
18308
|
};
|
|
18309
|
+
acs_systems: {
|
|
18310
|
+
items: {
|
|
18311
|
+
$ref: string;
|
|
18312
|
+
};
|
|
18313
|
+
type: string;
|
|
18314
|
+
};
|
|
18315
|
+
acs_users: {
|
|
18316
|
+
items: {
|
|
18317
|
+
$ref: string;
|
|
18318
|
+
};
|
|
18319
|
+
type: string;
|
|
18320
|
+
};
|
|
18321
|
+
action_attempts: {
|
|
18322
|
+
items: {
|
|
18323
|
+
$ref: string;
|
|
18324
|
+
};
|
|
18325
|
+
type: string;
|
|
18326
|
+
};
|
|
18238
18327
|
batch_type: {
|
|
18239
18328
|
enum: string[];
|
|
18240
18329
|
type: string;
|
|
18241
18330
|
};
|
|
18331
|
+
client_sessions: {
|
|
18332
|
+
items: {
|
|
18333
|
+
$ref: string;
|
|
18334
|
+
};
|
|
18335
|
+
type: string;
|
|
18336
|
+
};
|
|
18242
18337
|
devices: {
|
|
18243
18338
|
items: {
|
|
18244
18339
|
$ref: string;
|
|
@@ -18251,6 +18346,24 @@ declare const _default: {
|
|
|
18251
18346
|
};
|
|
18252
18347
|
type: string;
|
|
18253
18348
|
};
|
|
18349
|
+
unmanaged_acs_access_groups: {
|
|
18350
|
+
items: {
|
|
18351
|
+
$ref: string;
|
|
18352
|
+
};
|
|
18353
|
+
type: string;
|
|
18354
|
+
};
|
|
18355
|
+
unmanaged_acs_users: {
|
|
18356
|
+
items: {
|
|
18357
|
+
$ref: string;
|
|
18358
|
+
};
|
|
18359
|
+
type: string;
|
|
18360
|
+
};
|
|
18361
|
+
unmanaged_devices: {
|
|
18362
|
+
items: {
|
|
18363
|
+
$ref: string;
|
|
18364
|
+
};
|
|
18365
|
+
type: string;
|
|
18366
|
+
};
|
|
18254
18367
|
user_identities: {
|
|
18255
18368
|
items: {
|
|
18256
18369
|
$ref: string;
|
|
@@ -18266,7 +18379,6 @@ declare const _default: {
|
|
|
18266
18379
|
};
|
|
18267
18380
|
required: string[];
|
|
18268
18381
|
type: string;
|
|
18269
|
-
'x-route-path': string;
|
|
18270
18382
|
};
|
|
18271
18383
|
ok: {
|
|
18272
18384
|
type: string;
|
|
@@ -32692,6 +32804,137 @@ declare const _default: {
|
|
|
32692
32804
|
'x-title': string;
|
|
32693
32805
|
};
|
|
32694
32806
|
};
|
|
32807
|
+
'/instant_keys/get': {
|
|
32808
|
+
get: {
|
|
32809
|
+
description: string;
|
|
32810
|
+
operationId: string;
|
|
32811
|
+
parameters: {
|
|
32812
|
+
in: string;
|
|
32813
|
+
name: string;
|
|
32814
|
+
required: boolean;
|
|
32815
|
+
schema: {
|
|
32816
|
+
description: string;
|
|
32817
|
+
format: string;
|
|
32818
|
+
type: string;
|
|
32819
|
+
};
|
|
32820
|
+
}[];
|
|
32821
|
+
responses: {
|
|
32822
|
+
200: {
|
|
32823
|
+
content: {
|
|
32824
|
+
'application/json': {
|
|
32825
|
+
schema: {
|
|
32826
|
+
properties: {
|
|
32827
|
+
instant_key: {
|
|
32828
|
+
$ref: string;
|
|
32829
|
+
};
|
|
32830
|
+
ok: {
|
|
32831
|
+
type: string;
|
|
32832
|
+
};
|
|
32833
|
+
};
|
|
32834
|
+
required: string[];
|
|
32835
|
+
type: string;
|
|
32836
|
+
};
|
|
32837
|
+
};
|
|
32838
|
+
};
|
|
32839
|
+
description: string;
|
|
32840
|
+
};
|
|
32841
|
+
400: {
|
|
32842
|
+
description: string;
|
|
32843
|
+
};
|
|
32844
|
+
401: {
|
|
32845
|
+
description: string;
|
|
32846
|
+
};
|
|
32847
|
+
};
|
|
32848
|
+
security: ({
|
|
32849
|
+
api_key: never[];
|
|
32850
|
+
pat_with_workspace?: never;
|
|
32851
|
+
console_session_with_workspace?: never;
|
|
32852
|
+
} | {
|
|
32853
|
+
pat_with_workspace: never[];
|
|
32854
|
+
api_key?: never;
|
|
32855
|
+
console_session_with_workspace?: never;
|
|
32856
|
+
} | {
|
|
32857
|
+
console_session_with_workspace: never[];
|
|
32858
|
+
api_key?: never;
|
|
32859
|
+
pat_with_workspace?: never;
|
|
32860
|
+
})[];
|
|
32861
|
+
summary: string;
|
|
32862
|
+
tags: never[];
|
|
32863
|
+
'x-fern-sdk-group-name': string[];
|
|
32864
|
+
'x-fern-sdk-method-name': string;
|
|
32865
|
+
'x-fern-sdk-return-value': string;
|
|
32866
|
+
'x-response-key': string;
|
|
32867
|
+
'x-title': string;
|
|
32868
|
+
};
|
|
32869
|
+
post: {
|
|
32870
|
+
description: string;
|
|
32871
|
+
operationId: string;
|
|
32872
|
+
requestBody: {
|
|
32873
|
+
content: {
|
|
32874
|
+
'application/json': {
|
|
32875
|
+
schema: {
|
|
32876
|
+
properties: {
|
|
32877
|
+
instant_key_id: {
|
|
32878
|
+
description: string;
|
|
32879
|
+
format: string;
|
|
32880
|
+
type: string;
|
|
32881
|
+
};
|
|
32882
|
+
};
|
|
32883
|
+
required: string[];
|
|
32884
|
+
type: string;
|
|
32885
|
+
};
|
|
32886
|
+
};
|
|
32887
|
+
};
|
|
32888
|
+
};
|
|
32889
|
+
responses: {
|
|
32890
|
+
200: {
|
|
32891
|
+
content: {
|
|
32892
|
+
'application/json': {
|
|
32893
|
+
schema: {
|
|
32894
|
+
properties: {
|
|
32895
|
+
instant_key: {
|
|
32896
|
+
$ref: string;
|
|
32897
|
+
};
|
|
32898
|
+
ok: {
|
|
32899
|
+
type: string;
|
|
32900
|
+
};
|
|
32901
|
+
};
|
|
32902
|
+
required: string[];
|
|
32903
|
+
type: string;
|
|
32904
|
+
};
|
|
32905
|
+
};
|
|
32906
|
+
};
|
|
32907
|
+
description: string;
|
|
32908
|
+
};
|
|
32909
|
+
400: {
|
|
32910
|
+
description: string;
|
|
32911
|
+
};
|
|
32912
|
+
401: {
|
|
32913
|
+
description: string;
|
|
32914
|
+
};
|
|
32915
|
+
};
|
|
32916
|
+
security: ({
|
|
32917
|
+
api_key: never[];
|
|
32918
|
+
pat_with_workspace?: never;
|
|
32919
|
+
console_session_with_workspace?: never;
|
|
32920
|
+
} | {
|
|
32921
|
+
pat_with_workspace: never[];
|
|
32922
|
+
api_key?: never;
|
|
32923
|
+
console_session_with_workspace?: never;
|
|
32924
|
+
} | {
|
|
32925
|
+
console_session_with_workspace: never[];
|
|
32926
|
+
api_key?: never;
|
|
32927
|
+
pat_with_workspace?: never;
|
|
32928
|
+
})[];
|
|
32929
|
+
summary: string;
|
|
32930
|
+
tags: never[];
|
|
32931
|
+
'x-fern-sdk-group-name': string[];
|
|
32932
|
+
'x-fern-sdk-method-name': string;
|
|
32933
|
+
'x-fern-sdk-return-value': string;
|
|
32934
|
+
'x-response-key': string;
|
|
32935
|
+
'x-title': string;
|
|
32936
|
+
};
|
|
32937
|
+
};
|
|
32695
32938
|
'/instant_keys/list': {
|
|
32696
32939
|
get: {
|
|
32697
32940
|
description: string;
|
|
@@ -49284,16 +49527,52 @@ declare const _default: {
|
|
|
49284
49527
|
batch: {
|
|
49285
49528
|
description: string;
|
|
49286
49529
|
properties: {
|
|
49530
|
+
acs_access_groups: {
|
|
49531
|
+
items: {
|
|
49532
|
+
$ref: string;
|
|
49533
|
+
};
|
|
49534
|
+
type: string;
|
|
49535
|
+
};
|
|
49536
|
+
acs_encoders: {
|
|
49537
|
+
items: {
|
|
49538
|
+
$ref: string;
|
|
49539
|
+
};
|
|
49540
|
+
type: string;
|
|
49541
|
+
};
|
|
49287
49542
|
acs_entrances: {
|
|
49288
49543
|
items: {
|
|
49289
49544
|
$ref: string;
|
|
49290
49545
|
};
|
|
49291
49546
|
type: string;
|
|
49292
49547
|
};
|
|
49548
|
+
acs_systems: {
|
|
49549
|
+
items: {
|
|
49550
|
+
$ref: string;
|
|
49551
|
+
};
|
|
49552
|
+
type: string;
|
|
49553
|
+
};
|
|
49554
|
+
acs_users: {
|
|
49555
|
+
items: {
|
|
49556
|
+
$ref: string;
|
|
49557
|
+
};
|
|
49558
|
+
type: string;
|
|
49559
|
+
};
|
|
49560
|
+
action_attempts: {
|
|
49561
|
+
items: {
|
|
49562
|
+
$ref: string;
|
|
49563
|
+
};
|
|
49564
|
+
type: string;
|
|
49565
|
+
};
|
|
49293
49566
|
batch_type: {
|
|
49294
49567
|
enum: string[];
|
|
49295
49568
|
type: string;
|
|
49296
49569
|
};
|
|
49570
|
+
client_sessions: {
|
|
49571
|
+
items: {
|
|
49572
|
+
$ref: string;
|
|
49573
|
+
};
|
|
49574
|
+
type: string;
|
|
49575
|
+
};
|
|
49297
49576
|
devices: {
|
|
49298
49577
|
items: {
|
|
49299
49578
|
$ref: string;
|
|
@@ -49306,6 +49585,24 @@ declare const _default: {
|
|
|
49306
49585
|
};
|
|
49307
49586
|
type: string;
|
|
49308
49587
|
};
|
|
49588
|
+
unmanaged_acs_access_groups: {
|
|
49589
|
+
items: {
|
|
49590
|
+
$ref: string;
|
|
49591
|
+
};
|
|
49592
|
+
type: string;
|
|
49593
|
+
};
|
|
49594
|
+
unmanaged_acs_users: {
|
|
49595
|
+
items: {
|
|
49596
|
+
$ref: string;
|
|
49597
|
+
};
|
|
49598
|
+
type: string;
|
|
49599
|
+
};
|
|
49600
|
+
unmanaged_devices: {
|
|
49601
|
+
items: {
|
|
49602
|
+
$ref: string;
|
|
49603
|
+
};
|
|
49604
|
+
type: string;
|
|
49605
|
+
};
|
|
49309
49606
|
user_identities: {
|
|
49310
49607
|
items: {
|
|
49311
49608
|
$ref: string;
|
|
@@ -49321,7 +49618,6 @@ declare const _default: {
|
|
|
49321
49618
|
};
|
|
49322
49619
|
required: string[];
|
|
49323
49620
|
type: string;
|
|
49324
|
-
'x-route-path': string;
|
|
49325
49621
|
};
|
|
49326
49622
|
ok: {
|
|
49327
49623
|
type: string;
|
|
@@ -49385,16 +49681,52 @@ declare const _default: {
|
|
|
49385
49681
|
batch: {
|
|
49386
49682
|
description: string;
|
|
49387
49683
|
properties: {
|
|
49684
|
+
acs_access_groups: {
|
|
49685
|
+
items: {
|
|
49686
|
+
$ref: string;
|
|
49687
|
+
};
|
|
49688
|
+
type: string;
|
|
49689
|
+
};
|
|
49690
|
+
acs_encoders: {
|
|
49691
|
+
items: {
|
|
49692
|
+
$ref: string;
|
|
49693
|
+
};
|
|
49694
|
+
type: string;
|
|
49695
|
+
};
|
|
49388
49696
|
acs_entrances: {
|
|
49389
49697
|
items: {
|
|
49390
49698
|
$ref: string;
|
|
49391
49699
|
};
|
|
49392
49700
|
type: string;
|
|
49393
49701
|
};
|
|
49702
|
+
acs_systems: {
|
|
49703
|
+
items: {
|
|
49704
|
+
$ref: string;
|
|
49705
|
+
};
|
|
49706
|
+
type: string;
|
|
49707
|
+
};
|
|
49708
|
+
acs_users: {
|
|
49709
|
+
items: {
|
|
49710
|
+
$ref: string;
|
|
49711
|
+
};
|
|
49712
|
+
type: string;
|
|
49713
|
+
};
|
|
49714
|
+
action_attempts: {
|
|
49715
|
+
items: {
|
|
49716
|
+
$ref: string;
|
|
49717
|
+
};
|
|
49718
|
+
type: string;
|
|
49719
|
+
};
|
|
49394
49720
|
batch_type: {
|
|
49395
49721
|
enum: string[];
|
|
49396
49722
|
type: string;
|
|
49397
49723
|
};
|
|
49724
|
+
client_sessions: {
|
|
49725
|
+
items: {
|
|
49726
|
+
$ref: string;
|
|
49727
|
+
};
|
|
49728
|
+
type: string;
|
|
49729
|
+
};
|
|
49398
49730
|
devices: {
|
|
49399
49731
|
items: {
|
|
49400
49732
|
$ref: string;
|
|
@@ -49407,6 +49739,24 @@ declare const _default: {
|
|
|
49407
49739
|
};
|
|
49408
49740
|
type: string;
|
|
49409
49741
|
};
|
|
49742
|
+
unmanaged_acs_access_groups: {
|
|
49743
|
+
items: {
|
|
49744
|
+
$ref: string;
|
|
49745
|
+
};
|
|
49746
|
+
type: string;
|
|
49747
|
+
};
|
|
49748
|
+
unmanaged_acs_users: {
|
|
49749
|
+
items: {
|
|
49750
|
+
$ref: string;
|
|
49751
|
+
};
|
|
49752
|
+
type: string;
|
|
49753
|
+
};
|
|
49754
|
+
unmanaged_devices: {
|
|
49755
|
+
items: {
|
|
49756
|
+
$ref: string;
|
|
49757
|
+
};
|
|
49758
|
+
type: string;
|
|
49759
|
+
};
|
|
49410
49760
|
user_identities: {
|
|
49411
49761
|
items: {
|
|
49412
49762
|
$ref: string;
|
|
@@ -49422,7 +49772,6 @@ declare const _default: {
|
|
|
49422
49772
|
};
|
|
49423
49773
|
required: string[];
|
|
49424
49774
|
type: string;
|
|
49425
|
-
'x-route-path': string;
|
|
49426
49775
|
};
|
|
49427
49776
|
ok: {
|
|
49428
49777
|
type: string;
|