@seamapi/types 1.473.0 → 1.475.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 +434 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +953 -199
- package/dist/index.cjs +434 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +126 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +21 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +9 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +544 -0
- package/lib/seam/connect/openapi.js +399 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +126 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +11 -0
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +399 -0
- package/src/lib/seam/connect/route-types.ts +130 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -23833,6 +23833,43 @@ declare const batch: z.ZodObject<{
|
|
|
23833
23833
|
selected_provider: string | null;
|
|
23834
23834
|
customer_key?: string | undefined;
|
|
23835
23835
|
}>, "many">>;
|
|
23836
|
+
access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23837
|
+
workspace_id: z.ZodString;
|
|
23838
|
+
access_method_id: z.ZodString;
|
|
23839
|
+
display_name: z.ZodString;
|
|
23840
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
23841
|
+
created_at: z.ZodString;
|
|
23842
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
23843
|
+
is_issued: z.ZodBoolean;
|
|
23844
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
23845
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
23846
|
+
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
23847
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23848
|
+
}, "strip", z.ZodTypeAny, {
|
|
23849
|
+
display_name: string;
|
|
23850
|
+
workspace_id: string;
|
|
23851
|
+
created_at: string;
|
|
23852
|
+
mode: "code" | "card" | "mobile_key";
|
|
23853
|
+
access_method_id: string;
|
|
23854
|
+
issued_at: string | null;
|
|
23855
|
+
is_issued: boolean;
|
|
23856
|
+
code?: string | undefined;
|
|
23857
|
+
client_session_token?: string | undefined;
|
|
23858
|
+
instant_key_url?: string | undefined;
|
|
23859
|
+
is_encoding_required?: boolean | undefined;
|
|
23860
|
+
}, {
|
|
23861
|
+
display_name: string;
|
|
23862
|
+
workspace_id: string;
|
|
23863
|
+
created_at: string;
|
|
23864
|
+
mode: "code" | "card" | "mobile_key";
|
|
23865
|
+
access_method_id: string;
|
|
23866
|
+
issued_at: string | null;
|
|
23867
|
+
is_issued: boolean;
|
|
23868
|
+
code?: string | undefined;
|
|
23869
|
+
client_session_token?: string | undefined;
|
|
23870
|
+
instant_key_url?: string | undefined;
|
|
23871
|
+
is_encoding_required?: boolean | undefined;
|
|
23872
|
+
}>, "many">>;
|
|
23836
23873
|
}, "strip", z.ZodTypeAny, {
|
|
23837
23874
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
23838
23875
|
spaces?: {
|
|
@@ -24654,6 +24691,19 @@ declare const batch: z.ZodObject<{
|
|
|
24654
24691
|
user_identity_key: string | null;
|
|
24655
24692
|
acs_user_ids: string[];
|
|
24656
24693
|
}[] | undefined;
|
|
24694
|
+
access_methods?: {
|
|
24695
|
+
display_name: string;
|
|
24696
|
+
workspace_id: string;
|
|
24697
|
+
created_at: string;
|
|
24698
|
+
mode: "code" | "card" | "mobile_key";
|
|
24699
|
+
access_method_id: string;
|
|
24700
|
+
issued_at: string | null;
|
|
24701
|
+
is_issued: boolean;
|
|
24702
|
+
code?: string | undefined;
|
|
24703
|
+
client_session_token?: string | undefined;
|
|
24704
|
+
instant_key_url?: string | undefined;
|
|
24705
|
+
is_encoding_required?: boolean | undefined;
|
|
24706
|
+
}[] | undefined;
|
|
24657
24707
|
workspaces?: {
|
|
24658
24708
|
name: string;
|
|
24659
24709
|
workspace_id: string;
|
|
@@ -26773,6 +26823,19 @@ declare const batch: z.ZodObject<{
|
|
|
26773
26823
|
user_identity_key: string | null;
|
|
26774
26824
|
acs_user_ids: string[];
|
|
26775
26825
|
}[] | undefined;
|
|
26826
|
+
access_methods?: {
|
|
26827
|
+
display_name: string;
|
|
26828
|
+
workspace_id: string;
|
|
26829
|
+
created_at: string;
|
|
26830
|
+
mode: "code" | "card" | "mobile_key";
|
|
26831
|
+
access_method_id: string;
|
|
26832
|
+
issued_at: string | null;
|
|
26833
|
+
is_issued: boolean;
|
|
26834
|
+
code?: string | undefined;
|
|
26835
|
+
client_session_token?: string | undefined;
|
|
26836
|
+
instant_key_url?: string | undefined;
|
|
26837
|
+
is_encoding_required?: boolean | undefined;
|
|
26838
|
+
}[] | undefined;
|
|
26776
26839
|
workspaces?: {
|
|
26777
26840
|
name: string;
|
|
26778
26841
|
workspace_id: string;
|
|
@@ -28916,6 +28979,26 @@ type ConnectedAccount = z.infer<typeof connected_account>;
|
|
|
28916
28979
|
declare const custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
28917
28980
|
type CustomMetadata = z.output<typeof custom_metadata>;
|
|
28918
28981
|
|
|
28982
|
+
declare const customization_profile: z.ZodObject<{
|
|
28983
|
+
workspace_id: z.ZodString;
|
|
28984
|
+
customization_profile_id: z.ZodString;
|
|
28985
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
28986
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
28987
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
28988
|
+
}, "strip", z.ZodTypeAny, {
|
|
28989
|
+
workspace_id: string;
|
|
28990
|
+
customization_profile_id: string;
|
|
28991
|
+
logo_url?: string | undefined;
|
|
28992
|
+
primary_color?: string | undefined;
|
|
28993
|
+
secondary_color?: string | undefined;
|
|
28994
|
+
}, {
|
|
28995
|
+
workspace_id: string;
|
|
28996
|
+
customization_profile_id: string;
|
|
28997
|
+
logo_url?: string | undefined;
|
|
28998
|
+
primary_color?: string | undefined;
|
|
28999
|
+
secondary_color?: string | undefined;
|
|
29000
|
+
}>;
|
|
29001
|
+
|
|
28919
29002
|
declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
28920
29003
|
message: z.ZodString;
|
|
28921
29004
|
created_at: z.ZodString;
|
|
@@ -40515,6 +40598,7 @@ declare const schemas_common_succeeded_action_attempt: typeof common_succeeded_a
|
|
|
40515
40598
|
declare const schemas_connect_webview: typeof connect_webview;
|
|
40516
40599
|
declare const schemas_connected_account: typeof connected_account;
|
|
40517
40600
|
declare const schemas_custom_metadata: typeof custom_metadata;
|
|
40601
|
+
declare const schemas_customization_profile: typeof customization_profile;
|
|
40518
40602
|
declare const schemas_device: typeof device;
|
|
40519
40603
|
declare const schemas_device_provider: typeof device_provider;
|
|
40520
40604
|
declare const schemas_instant_key: typeof instant_key;
|
|
@@ -40534,7 +40618,7 @@ declare const schemas_user_identity: typeof user_identity;
|
|
|
40534
40618
|
declare const schemas_webhook: typeof webhook;
|
|
40535
40619
|
declare const schemas_workspace: typeof workspace;
|
|
40536
40620
|
declare namespace schemas {
|
|
40537
|
-
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_batch as batch, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_building_block_type as building_block_type, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_instant_key as instant_key, schemas_magic_link as magic_link, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_daily_program as thermostat_daily_program, schemas_thermostat_schedule as thermostat_schedule, schemas_thermostat_weekly_program as thermostat_weekly_program, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
40621
|
+
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_batch as batch, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_building_block_type as building_block_type, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_customization_profile as customization_profile, schemas_device as device, schemas_device_provider as device_provider, schemas_instant_key as instant_key, schemas_magic_link as magic_link, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_daily_program as thermostat_daily_program, schemas_thermostat_schedule as thermostat_schedule, schemas_thermostat_weekly_program as thermostat_weekly_program, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
40538
40622
|
}
|
|
40539
40623
|
|
|
40540
40624
|
declare const _default: {
|
|
@@ -58642,6 +58726,12 @@ declare const _default: {
|
|
|
58642
58726
|
batch: {
|
|
58643
58727
|
description: string;
|
|
58644
58728
|
properties: {
|
|
58729
|
+
access_methods: {
|
|
58730
|
+
items: {
|
|
58731
|
+
$ref: string;
|
|
58732
|
+
};
|
|
58733
|
+
type: string;
|
|
58734
|
+
};
|
|
58645
58735
|
acs_access_groups: {
|
|
58646
58736
|
items: {
|
|
58647
58737
|
$ref: string;
|
|
@@ -58827,6 +58917,12 @@ declare const _default: {
|
|
|
58827
58917
|
batch: {
|
|
58828
58918
|
description: string;
|
|
58829
58919
|
properties: {
|
|
58920
|
+
access_methods: {
|
|
58921
|
+
items: {
|
|
58922
|
+
$ref: string;
|
|
58923
|
+
};
|
|
58924
|
+
type: string;
|
|
58925
|
+
};
|
|
58830
58926
|
acs_access_groups: {
|
|
58831
58927
|
items: {
|
|
58832
58928
|
$ref: string;
|
|
@@ -88227,120 +88323,51 @@ declare const _default: {
|
|
|
88227
88323
|
'x-title': string;
|
|
88228
88324
|
};
|
|
88229
88325
|
};
|
|
88230
|
-
'/workspaces/
|
|
88231
|
-
|
|
88326
|
+
'/workspaces/customization_profiles/create': {
|
|
88327
|
+
post: {
|
|
88232
88328
|
description: string;
|
|
88233
88329
|
operationId: string;
|
|
88234
|
-
|
|
88235
|
-
|
|
88236
|
-
|
|
88237
|
-
|
|
88238
|
-
|
|
88239
|
-
|
|
88240
|
-
|
|
88330
|
+
requestBody: {
|
|
88331
|
+
content: {
|
|
88332
|
+
'application/json': {
|
|
88333
|
+
schema: {
|
|
88334
|
+
properties: {
|
|
88335
|
+
primary_color: {
|
|
88336
|
+
type: string;
|
|
88337
|
+
};
|
|
88338
|
+
secondary_color: {
|
|
88339
|
+
type: string;
|
|
88340
|
+
};
|
|
88341
|
+
};
|
|
88342
|
+
required: string[];
|
|
88343
|
+
type: string;
|
|
88344
|
+
};
|
|
88345
|
+
};
|
|
88241
88346
|
};
|
|
88242
|
-
}
|
|
88347
|
+
};
|
|
88243
88348
|
responses: {
|
|
88244
88349
|
200: {
|
|
88245
88350
|
content: {
|
|
88246
88351
|
'application/json': {
|
|
88247
88352
|
schema: {
|
|
88248
88353
|
properties: {
|
|
88249
|
-
|
|
88250
|
-
description: string;
|
|
88354
|
+
customization_profile: {
|
|
88251
88355
|
properties: {
|
|
88252
|
-
|
|
88253
|
-
|
|
88254
|
-
$ref: string;
|
|
88255
|
-
};
|
|
88256
|
-
type: string;
|
|
88257
|
-
};
|
|
88258
|
-
acs_encoders: {
|
|
88259
|
-
items: {
|
|
88260
|
-
$ref: string;
|
|
88261
|
-
};
|
|
88262
|
-
type: string;
|
|
88263
|
-
};
|
|
88264
|
-
acs_entrances: {
|
|
88265
|
-
items: {
|
|
88266
|
-
$ref: string;
|
|
88267
|
-
};
|
|
88268
|
-
type: string;
|
|
88269
|
-
};
|
|
88270
|
-
acs_systems: {
|
|
88271
|
-
items: {
|
|
88272
|
-
$ref: string;
|
|
88273
|
-
};
|
|
88274
|
-
type: string;
|
|
88275
|
-
};
|
|
88276
|
-
acs_users: {
|
|
88277
|
-
items: {
|
|
88278
|
-
$ref: string;
|
|
88279
|
-
};
|
|
88280
|
-
type: string;
|
|
88281
|
-
};
|
|
88282
|
-
action_attempts: {
|
|
88283
|
-
items: {
|
|
88284
|
-
$ref: string;
|
|
88285
|
-
};
|
|
88286
|
-
type: string;
|
|
88287
|
-
};
|
|
88288
|
-
batch_type: {
|
|
88289
|
-
enum: string[];
|
|
88290
|
-
type: string;
|
|
88291
|
-
};
|
|
88292
|
-
client_sessions: {
|
|
88293
|
-
items: {
|
|
88294
|
-
$ref: string;
|
|
88295
|
-
};
|
|
88296
|
-
type: string;
|
|
88297
|
-
};
|
|
88298
|
-
connect_webviews: {
|
|
88299
|
-
items: {
|
|
88300
|
-
$ref: string;
|
|
88301
|
-
};
|
|
88302
|
-
type: string;
|
|
88303
|
-
};
|
|
88304
|
-
devices: {
|
|
88305
|
-
items: {
|
|
88306
|
-
$ref: string;
|
|
88307
|
-
};
|
|
88308
|
-
type: string;
|
|
88309
|
-
};
|
|
88310
|
-
spaces: {
|
|
88311
|
-
items: {
|
|
88312
|
-
$ref: string;
|
|
88313
|
-
};
|
|
88314
|
-
type: string;
|
|
88315
|
-
};
|
|
88316
|
-
unmanaged_acs_access_groups: {
|
|
88317
|
-
items: {
|
|
88318
|
-
$ref: string;
|
|
88319
|
-
};
|
|
88356
|
+
customization_profile_id: {
|
|
88357
|
+
format: string;
|
|
88320
88358
|
type: string;
|
|
88321
88359
|
};
|
|
88322
|
-
|
|
88323
|
-
items: {
|
|
88324
|
-
$ref: string;
|
|
88325
|
-
};
|
|
88360
|
+
logo_url: {
|
|
88326
88361
|
type: string;
|
|
88327
88362
|
};
|
|
88328
|
-
|
|
88329
|
-
items: {
|
|
88330
|
-
$ref: string;
|
|
88331
|
-
};
|
|
88363
|
+
primary_color: {
|
|
88332
88364
|
type: string;
|
|
88333
88365
|
};
|
|
88334
|
-
|
|
88335
|
-
items: {
|
|
88336
|
-
$ref: string;
|
|
88337
|
-
};
|
|
88366
|
+
secondary_color: {
|
|
88338
88367
|
type: string;
|
|
88339
88368
|
};
|
|
88340
|
-
|
|
88341
|
-
|
|
88342
|
-
$ref: string;
|
|
88343
|
-
};
|
|
88369
|
+
workspace_id: {
|
|
88370
|
+
format: string;
|
|
88344
88371
|
type: string;
|
|
88345
88372
|
};
|
|
88346
88373
|
};
|
|
@@ -88365,30 +88392,20 @@ declare const _default: {
|
|
|
88365
88392
|
description: string;
|
|
88366
88393
|
};
|
|
88367
88394
|
};
|
|
88368
|
-
security:
|
|
88369
|
-
|
|
88370
|
-
|
|
88371
|
-
api_key?: never;
|
|
88372
|
-
} | {
|
|
88373
|
-
console_session_with_workspace: never[];
|
|
88374
|
-
pat_with_workspace?: never;
|
|
88375
|
-
api_key?: never;
|
|
88376
|
-
} | {
|
|
88377
|
-
api_key: never[];
|
|
88378
|
-
pat_with_workspace?: never;
|
|
88379
|
-
console_session_with_workspace?: never;
|
|
88380
|
-
})[];
|
|
88395
|
+
security: {
|
|
88396
|
+
client_session_with_customer: never[];
|
|
88397
|
+
}[];
|
|
88381
88398
|
summary: string;
|
|
88382
88399
|
tags: string[];
|
|
88383
|
-
'x-batch-type': string;
|
|
88384
88400
|
'x-fern-sdk-group-name': string[];
|
|
88385
88401
|
'x-fern-sdk-method-name': string;
|
|
88386
88402
|
'x-fern-sdk-return-value': string;
|
|
88387
88403
|
'x-response-key': string;
|
|
88388
88404
|
'x-title': string;
|
|
88389
|
-
'x-undocumented': string;
|
|
88390
88405
|
};
|
|
88391
|
-
|
|
88406
|
+
};
|
|
88407
|
+
'/workspaces/customization_profiles/get': {
|
|
88408
|
+
get: {
|
|
88392
88409
|
description: string;
|
|
88393
88410
|
operationId: string;
|
|
88394
88411
|
parameters: {
|
|
@@ -88406,101 +88423,712 @@ declare const _default: {
|
|
|
88406
88423
|
'application/json': {
|
|
88407
88424
|
schema: {
|
|
88408
88425
|
properties: {
|
|
88409
|
-
|
|
88410
|
-
description: string;
|
|
88426
|
+
customization_profile: {
|
|
88411
88427
|
properties: {
|
|
88412
|
-
|
|
88413
|
-
|
|
88414
|
-
$ref: string;
|
|
88415
|
-
};
|
|
88416
|
-
type: string;
|
|
88417
|
-
};
|
|
88418
|
-
acs_encoders: {
|
|
88419
|
-
items: {
|
|
88420
|
-
$ref: string;
|
|
88421
|
-
};
|
|
88422
|
-
type: string;
|
|
88423
|
-
};
|
|
88424
|
-
acs_entrances: {
|
|
88425
|
-
items: {
|
|
88426
|
-
$ref: string;
|
|
88427
|
-
};
|
|
88428
|
-
type: string;
|
|
88429
|
-
};
|
|
88430
|
-
acs_systems: {
|
|
88431
|
-
items: {
|
|
88432
|
-
$ref: string;
|
|
88433
|
-
};
|
|
88434
|
-
type: string;
|
|
88435
|
-
};
|
|
88436
|
-
acs_users: {
|
|
88437
|
-
items: {
|
|
88438
|
-
$ref: string;
|
|
88439
|
-
};
|
|
88440
|
-
type: string;
|
|
88441
|
-
};
|
|
88442
|
-
action_attempts: {
|
|
88443
|
-
items: {
|
|
88444
|
-
$ref: string;
|
|
88445
|
-
};
|
|
88446
|
-
type: string;
|
|
88447
|
-
};
|
|
88448
|
-
batch_type: {
|
|
88449
|
-
enum: string[];
|
|
88450
|
-
type: string;
|
|
88451
|
-
};
|
|
88452
|
-
client_sessions: {
|
|
88453
|
-
items: {
|
|
88454
|
-
$ref: string;
|
|
88455
|
-
};
|
|
88456
|
-
type: string;
|
|
88457
|
-
};
|
|
88458
|
-
connect_webviews: {
|
|
88459
|
-
items: {
|
|
88460
|
-
$ref: string;
|
|
88461
|
-
};
|
|
88462
|
-
type: string;
|
|
88463
|
-
};
|
|
88464
|
-
devices: {
|
|
88465
|
-
items: {
|
|
88466
|
-
$ref: string;
|
|
88467
|
-
};
|
|
88428
|
+
customization_profile_id: {
|
|
88429
|
+
format: string;
|
|
88468
88430
|
type: string;
|
|
88469
88431
|
};
|
|
88470
|
-
|
|
88471
|
-
items: {
|
|
88472
|
-
$ref: string;
|
|
88473
|
-
};
|
|
88432
|
+
logo_url: {
|
|
88474
88433
|
type: string;
|
|
88475
88434
|
};
|
|
88476
|
-
|
|
88477
|
-
items: {
|
|
88478
|
-
$ref: string;
|
|
88479
|
-
};
|
|
88435
|
+
primary_color: {
|
|
88480
88436
|
type: string;
|
|
88481
88437
|
};
|
|
88482
|
-
|
|
88483
|
-
items: {
|
|
88484
|
-
$ref: string;
|
|
88485
|
-
};
|
|
88438
|
+
secondary_color: {
|
|
88486
88439
|
type: string;
|
|
88487
88440
|
};
|
|
88488
|
-
|
|
88489
|
-
|
|
88490
|
-
|
|
88491
|
-
|
|
88492
|
-
|
|
88493
|
-
|
|
88494
|
-
|
|
88495
|
-
|
|
88496
|
-
|
|
88497
|
-
|
|
88498
|
-
|
|
88499
|
-
|
|
88500
|
-
|
|
88501
|
-
|
|
88502
|
-
|
|
88503
|
-
|
|
88441
|
+
workspace_id: {
|
|
88442
|
+
format: string;
|
|
88443
|
+
type: string;
|
|
88444
|
+
};
|
|
88445
|
+
};
|
|
88446
|
+
required: string[];
|
|
88447
|
+
type: string;
|
|
88448
|
+
};
|
|
88449
|
+
ok: {
|
|
88450
|
+
type: string;
|
|
88451
|
+
};
|
|
88452
|
+
};
|
|
88453
|
+
required: string[];
|
|
88454
|
+
type: string;
|
|
88455
|
+
};
|
|
88456
|
+
};
|
|
88457
|
+
};
|
|
88458
|
+
description: string;
|
|
88459
|
+
};
|
|
88460
|
+
400: {
|
|
88461
|
+
description: string;
|
|
88462
|
+
};
|
|
88463
|
+
401: {
|
|
88464
|
+
description: string;
|
|
88465
|
+
};
|
|
88466
|
+
};
|
|
88467
|
+
security: {
|
|
88468
|
+
client_session_with_customer: never[];
|
|
88469
|
+
}[];
|
|
88470
|
+
summary: string;
|
|
88471
|
+
tags: string[];
|
|
88472
|
+
'x-fern-sdk-group-name': string[];
|
|
88473
|
+
'x-fern-sdk-method-name': string;
|
|
88474
|
+
'x-fern-sdk-return-value': string;
|
|
88475
|
+
'x-response-key': string;
|
|
88476
|
+
'x-title': string;
|
|
88477
|
+
};
|
|
88478
|
+
post: {
|
|
88479
|
+
description: string;
|
|
88480
|
+
operationId: string;
|
|
88481
|
+
requestBody: {
|
|
88482
|
+
content: {
|
|
88483
|
+
'application/json': {
|
|
88484
|
+
schema: {
|
|
88485
|
+
properties: {
|
|
88486
|
+
customization_profile_id: {
|
|
88487
|
+
format: string;
|
|
88488
|
+
type: string;
|
|
88489
|
+
};
|
|
88490
|
+
};
|
|
88491
|
+
required: string[];
|
|
88492
|
+
type: string;
|
|
88493
|
+
};
|
|
88494
|
+
};
|
|
88495
|
+
};
|
|
88496
|
+
};
|
|
88497
|
+
responses: {
|
|
88498
|
+
200: {
|
|
88499
|
+
content: {
|
|
88500
|
+
'application/json': {
|
|
88501
|
+
schema: {
|
|
88502
|
+
properties: {
|
|
88503
|
+
customization_profile: {
|
|
88504
|
+
properties: {
|
|
88505
|
+
customization_profile_id: {
|
|
88506
|
+
format: string;
|
|
88507
|
+
type: string;
|
|
88508
|
+
};
|
|
88509
|
+
logo_url: {
|
|
88510
|
+
type: string;
|
|
88511
|
+
};
|
|
88512
|
+
primary_color: {
|
|
88513
|
+
type: string;
|
|
88514
|
+
};
|
|
88515
|
+
secondary_color: {
|
|
88516
|
+
type: string;
|
|
88517
|
+
};
|
|
88518
|
+
workspace_id: {
|
|
88519
|
+
format: string;
|
|
88520
|
+
type: string;
|
|
88521
|
+
};
|
|
88522
|
+
};
|
|
88523
|
+
required: string[];
|
|
88524
|
+
type: string;
|
|
88525
|
+
};
|
|
88526
|
+
ok: {
|
|
88527
|
+
type: string;
|
|
88528
|
+
};
|
|
88529
|
+
};
|
|
88530
|
+
required: string[];
|
|
88531
|
+
type: string;
|
|
88532
|
+
};
|
|
88533
|
+
};
|
|
88534
|
+
};
|
|
88535
|
+
description: string;
|
|
88536
|
+
};
|
|
88537
|
+
400: {
|
|
88538
|
+
description: string;
|
|
88539
|
+
};
|
|
88540
|
+
401: {
|
|
88541
|
+
description: string;
|
|
88542
|
+
};
|
|
88543
|
+
};
|
|
88544
|
+
security: {
|
|
88545
|
+
client_session_with_customer: never[];
|
|
88546
|
+
}[];
|
|
88547
|
+
summary: string;
|
|
88548
|
+
tags: string[];
|
|
88549
|
+
'x-fern-sdk-group-name': string[];
|
|
88550
|
+
'x-fern-sdk-method-name': string;
|
|
88551
|
+
'x-fern-sdk-return-value': string;
|
|
88552
|
+
'x-response-key': string;
|
|
88553
|
+
'x-title': string;
|
|
88554
|
+
};
|
|
88555
|
+
};
|
|
88556
|
+
'/workspaces/customization_profiles/list': {
|
|
88557
|
+
get: {
|
|
88558
|
+
description: string;
|
|
88559
|
+
operationId: string;
|
|
88560
|
+
responses: {
|
|
88561
|
+
200: {
|
|
88562
|
+
content: {
|
|
88563
|
+
'application/json': {
|
|
88564
|
+
schema: {
|
|
88565
|
+
properties: {
|
|
88566
|
+
customization_profiles: {
|
|
88567
|
+
items: {
|
|
88568
|
+
properties: {
|
|
88569
|
+
customization_profile_id: {
|
|
88570
|
+
format: string;
|
|
88571
|
+
type: string;
|
|
88572
|
+
};
|
|
88573
|
+
logo_url: {
|
|
88574
|
+
type: string;
|
|
88575
|
+
};
|
|
88576
|
+
primary_color: {
|
|
88577
|
+
type: string;
|
|
88578
|
+
};
|
|
88579
|
+
secondary_color: {
|
|
88580
|
+
type: string;
|
|
88581
|
+
};
|
|
88582
|
+
workspace_id: {
|
|
88583
|
+
format: string;
|
|
88584
|
+
type: string;
|
|
88585
|
+
};
|
|
88586
|
+
};
|
|
88587
|
+
required: string[];
|
|
88588
|
+
type: string;
|
|
88589
|
+
};
|
|
88590
|
+
type: string;
|
|
88591
|
+
};
|
|
88592
|
+
ok: {
|
|
88593
|
+
type: string;
|
|
88594
|
+
};
|
|
88595
|
+
};
|
|
88596
|
+
required: string[];
|
|
88597
|
+
type: string;
|
|
88598
|
+
};
|
|
88599
|
+
};
|
|
88600
|
+
};
|
|
88601
|
+
description: string;
|
|
88602
|
+
};
|
|
88603
|
+
400: {
|
|
88604
|
+
description: string;
|
|
88605
|
+
};
|
|
88606
|
+
401: {
|
|
88607
|
+
description: string;
|
|
88608
|
+
};
|
|
88609
|
+
};
|
|
88610
|
+
security: {
|
|
88611
|
+
client_session_with_customer: never[];
|
|
88612
|
+
}[];
|
|
88613
|
+
summary: string;
|
|
88614
|
+
tags: string[];
|
|
88615
|
+
'x-fern-sdk-group-name': string[];
|
|
88616
|
+
'x-fern-sdk-method-name': string;
|
|
88617
|
+
'x-fern-sdk-return-value': string;
|
|
88618
|
+
'x-response-key': string;
|
|
88619
|
+
'x-title': string;
|
|
88620
|
+
};
|
|
88621
|
+
post: {
|
|
88622
|
+
description: string;
|
|
88623
|
+
operationId: string;
|
|
88624
|
+
responses: {
|
|
88625
|
+
200: {
|
|
88626
|
+
content: {
|
|
88627
|
+
'application/json': {
|
|
88628
|
+
schema: {
|
|
88629
|
+
properties: {
|
|
88630
|
+
customization_profiles: {
|
|
88631
|
+
items: {
|
|
88632
|
+
properties: {
|
|
88633
|
+
customization_profile_id: {
|
|
88634
|
+
format: string;
|
|
88635
|
+
type: string;
|
|
88636
|
+
};
|
|
88637
|
+
logo_url: {
|
|
88638
|
+
type: string;
|
|
88639
|
+
};
|
|
88640
|
+
primary_color: {
|
|
88641
|
+
type: string;
|
|
88642
|
+
};
|
|
88643
|
+
secondary_color: {
|
|
88644
|
+
type: string;
|
|
88645
|
+
};
|
|
88646
|
+
workspace_id: {
|
|
88647
|
+
format: string;
|
|
88648
|
+
type: string;
|
|
88649
|
+
};
|
|
88650
|
+
};
|
|
88651
|
+
required: string[];
|
|
88652
|
+
type: string;
|
|
88653
|
+
};
|
|
88654
|
+
type: string;
|
|
88655
|
+
};
|
|
88656
|
+
ok: {
|
|
88657
|
+
type: string;
|
|
88658
|
+
};
|
|
88659
|
+
};
|
|
88660
|
+
required: string[];
|
|
88661
|
+
type: string;
|
|
88662
|
+
};
|
|
88663
|
+
};
|
|
88664
|
+
};
|
|
88665
|
+
description: string;
|
|
88666
|
+
};
|
|
88667
|
+
400: {
|
|
88668
|
+
description: string;
|
|
88669
|
+
};
|
|
88670
|
+
401: {
|
|
88671
|
+
description: string;
|
|
88672
|
+
};
|
|
88673
|
+
};
|
|
88674
|
+
security: {
|
|
88675
|
+
client_session_with_customer: never[];
|
|
88676
|
+
}[];
|
|
88677
|
+
summary: string;
|
|
88678
|
+
tags: string[];
|
|
88679
|
+
'x-fern-sdk-group-name': string[];
|
|
88680
|
+
'x-fern-sdk-method-name': string;
|
|
88681
|
+
'x-fern-sdk-return-value': string;
|
|
88682
|
+
'x-response-key': string;
|
|
88683
|
+
'x-title': string;
|
|
88684
|
+
};
|
|
88685
|
+
};
|
|
88686
|
+
'/workspaces/customization_profiles/update': {
|
|
88687
|
+
patch: {
|
|
88688
|
+
description: string;
|
|
88689
|
+
operationId: string;
|
|
88690
|
+
requestBody: {
|
|
88691
|
+
content: {
|
|
88692
|
+
'application/json': {
|
|
88693
|
+
schema: {
|
|
88694
|
+
properties: {
|
|
88695
|
+
customization_profile_id: {
|
|
88696
|
+
format: string;
|
|
88697
|
+
type: string;
|
|
88698
|
+
};
|
|
88699
|
+
primary_color: {
|
|
88700
|
+
type: string;
|
|
88701
|
+
};
|
|
88702
|
+
secondary_color: {
|
|
88703
|
+
type: string;
|
|
88704
|
+
};
|
|
88705
|
+
};
|
|
88706
|
+
required: string[];
|
|
88707
|
+
type: string;
|
|
88708
|
+
};
|
|
88709
|
+
};
|
|
88710
|
+
};
|
|
88711
|
+
};
|
|
88712
|
+
responses: {
|
|
88713
|
+
200: {
|
|
88714
|
+
content: {
|
|
88715
|
+
'application/json': {
|
|
88716
|
+
schema: {
|
|
88717
|
+
properties: {
|
|
88718
|
+
ok: {
|
|
88719
|
+
type: string;
|
|
88720
|
+
};
|
|
88721
|
+
};
|
|
88722
|
+
required: string[];
|
|
88723
|
+
type: string;
|
|
88724
|
+
};
|
|
88725
|
+
};
|
|
88726
|
+
};
|
|
88727
|
+
description: string;
|
|
88728
|
+
};
|
|
88729
|
+
400: {
|
|
88730
|
+
description: string;
|
|
88731
|
+
};
|
|
88732
|
+
401: {
|
|
88733
|
+
description: string;
|
|
88734
|
+
};
|
|
88735
|
+
};
|
|
88736
|
+
security: {
|
|
88737
|
+
client_session_with_customer: never[];
|
|
88738
|
+
}[];
|
|
88739
|
+
summary: string;
|
|
88740
|
+
tags: string[];
|
|
88741
|
+
'x-fern-sdk-group-name': string[];
|
|
88742
|
+
'x-fern-sdk-method-name': string;
|
|
88743
|
+
'x-response-key': null;
|
|
88744
|
+
'x-title': string;
|
|
88745
|
+
};
|
|
88746
|
+
post: {
|
|
88747
|
+
description: string;
|
|
88748
|
+
operationId: string;
|
|
88749
|
+
requestBody: {
|
|
88750
|
+
content: {
|
|
88751
|
+
'application/json': {
|
|
88752
|
+
schema: {
|
|
88753
|
+
properties: {
|
|
88754
|
+
customization_profile_id: {
|
|
88755
|
+
format: string;
|
|
88756
|
+
type: string;
|
|
88757
|
+
};
|
|
88758
|
+
primary_color: {
|
|
88759
|
+
type: string;
|
|
88760
|
+
};
|
|
88761
|
+
secondary_color: {
|
|
88762
|
+
type: string;
|
|
88763
|
+
};
|
|
88764
|
+
};
|
|
88765
|
+
required: string[];
|
|
88766
|
+
type: string;
|
|
88767
|
+
};
|
|
88768
|
+
};
|
|
88769
|
+
};
|
|
88770
|
+
};
|
|
88771
|
+
responses: {
|
|
88772
|
+
200: {
|
|
88773
|
+
content: {
|
|
88774
|
+
'application/json': {
|
|
88775
|
+
schema: {
|
|
88776
|
+
properties: {
|
|
88777
|
+
ok: {
|
|
88778
|
+
type: string;
|
|
88779
|
+
};
|
|
88780
|
+
};
|
|
88781
|
+
required: string[];
|
|
88782
|
+
type: string;
|
|
88783
|
+
};
|
|
88784
|
+
};
|
|
88785
|
+
};
|
|
88786
|
+
description: string;
|
|
88787
|
+
};
|
|
88788
|
+
400: {
|
|
88789
|
+
description: string;
|
|
88790
|
+
};
|
|
88791
|
+
401: {
|
|
88792
|
+
description: string;
|
|
88793
|
+
};
|
|
88794
|
+
};
|
|
88795
|
+
security: {
|
|
88796
|
+
client_session_with_customer: never[];
|
|
88797
|
+
}[];
|
|
88798
|
+
summary: string;
|
|
88799
|
+
tags: string[];
|
|
88800
|
+
'x-fern-sdk-group-name': string[];
|
|
88801
|
+
'x-fern-sdk-method-name': string;
|
|
88802
|
+
'x-response-key': null;
|
|
88803
|
+
'x-title': string;
|
|
88804
|
+
};
|
|
88805
|
+
};
|
|
88806
|
+
'/workspaces/customization_profiles/upload_images': {
|
|
88807
|
+
post: {
|
|
88808
|
+
description: string;
|
|
88809
|
+
operationId: string;
|
|
88810
|
+
responses: {
|
|
88811
|
+
200: {
|
|
88812
|
+
content: {
|
|
88813
|
+
'application/json': {
|
|
88814
|
+
schema: {
|
|
88815
|
+
properties: {
|
|
88816
|
+
ok: {
|
|
88817
|
+
type: string;
|
|
88818
|
+
};
|
|
88819
|
+
};
|
|
88820
|
+
required: string[];
|
|
88821
|
+
type: string;
|
|
88822
|
+
};
|
|
88823
|
+
};
|
|
88824
|
+
};
|
|
88825
|
+
description: string;
|
|
88826
|
+
};
|
|
88827
|
+
400: {
|
|
88828
|
+
description: string;
|
|
88829
|
+
};
|
|
88830
|
+
401: {
|
|
88831
|
+
description: string;
|
|
88832
|
+
};
|
|
88833
|
+
};
|
|
88834
|
+
security: {
|
|
88835
|
+
client_session_with_customer: never[];
|
|
88836
|
+
}[];
|
|
88837
|
+
summary: string;
|
|
88838
|
+
tags: string[];
|
|
88839
|
+
'x-fern-sdk-group-name': string[];
|
|
88840
|
+
'x-fern-sdk-method-name': string;
|
|
88841
|
+
'x-response-key': null;
|
|
88842
|
+
'x-title': string;
|
|
88843
|
+
'x-undocumented': string;
|
|
88844
|
+
};
|
|
88845
|
+
};
|
|
88846
|
+
'/workspaces/find_resources': {
|
|
88847
|
+
get: {
|
|
88848
|
+
description: string;
|
|
88849
|
+
operationId: string;
|
|
88850
|
+
parameters: {
|
|
88851
|
+
in: string;
|
|
88852
|
+
name: string;
|
|
88853
|
+
required: boolean;
|
|
88854
|
+
schema: {
|
|
88855
|
+
format: string;
|
|
88856
|
+
type: string;
|
|
88857
|
+
};
|
|
88858
|
+
}[];
|
|
88859
|
+
responses: {
|
|
88860
|
+
200: {
|
|
88861
|
+
content: {
|
|
88862
|
+
'application/json': {
|
|
88863
|
+
schema: {
|
|
88864
|
+
properties: {
|
|
88865
|
+
batch: {
|
|
88866
|
+
description: string;
|
|
88867
|
+
properties: {
|
|
88868
|
+
access_methods: {
|
|
88869
|
+
items: {
|
|
88870
|
+
$ref: string;
|
|
88871
|
+
};
|
|
88872
|
+
type: string;
|
|
88873
|
+
};
|
|
88874
|
+
acs_access_groups: {
|
|
88875
|
+
items: {
|
|
88876
|
+
$ref: string;
|
|
88877
|
+
};
|
|
88878
|
+
type: string;
|
|
88879
|
+
};
|
|
88880
|
+
acs_encoders: {
|
|
88881
|
+
items: {
|
|
88882
|
+
$ref: string;
|
|
88883
|
+
};
|
|
88884
|
+
type: string;
|
|
88885
|
+
};
|
|
88886
|
+
acs_entrances: {
|
|
88887
|
+
items: {
|
|
88888
|
+
$ref: string;
|
|
88889
|
+
};
|
|
88890
|
+
type: string;
|
|
88891
|
+
};
|
|
88892
|
+
acs_systems: {
|
|
88893
|
+
items: {
|
|
88894
|
+
$ref: string;
|
|
88895
|
+
};
|
|
88896
|
+
type: string;
|
|
88897
|
+
};
|
|
88898
|
+
acs_users: {
|
|
88899
|
+
items: {
|
|
88900
|
+
$ref: string;
|
|
88901
|
+
};
|
|
88902
|
+
type: string;
|
|
88903
|
+
};
|
|
88904
|
+
action_attempts: {
|
|
88905
|
+
items: {
|
|
88906
|
+
$ref: string;
|
|
88907
|
+
};
|
|
88908
|
+
type: string;
|
|
88909
|
+
};
|
|
88910
|
+
batch_type: {
|
|
88911
|
+
enum: string[];
|
|
88912
|
+
type: string;
|
|
88913
|
+
};
|
|
88914
|
+
client_sessions: {
|
|
88915
|
+
items: {
|
|
88916
|
+
$ref: string;
|
|
88917
|
+
};
|
|
88918
|
+
type: string;
|
|
88919
|
+
};
|
|
88920
|
+
connect_webviews: {
|
|
88921
|
+
items: {
|
|
88922
|
+
$ref: string;
|
|
88923
|
+
};
|
|
88924
|
+
type: string;
|
|
88925
|
+
};
|
|
88926
|
+
devices: {
|
|
88927
|
+
items: {
|
|
88928
|
+
$ref: string;
|
|
88929
|
+
};
|
|
88930
|
+
type: string;
|
|
88931
|
+
};
|
|
88932
|
+
spaces: {
|
|
88933
|
+
items: {
|
|
88934
|
+
$ref: string;
|
|
88935
|
+
};
|
|
88936
|
+
type: string;
|
|
88937
|
+
};
|
|
88938
|
+
unmanaged_acs_access_groups: {
|
|
88939
|
+
items: {
|
|
88940
|
+
$ref: string;
|
|
88941
|
+
};
|
|
88942
|
+
type: string;
|
|
88943
|
+
};
|
|
88944
|
+
unmanaged_acs_users: {
|
|
88945
|
+
items: {
|
|
88946
|
+
$ref: string;
|
|
88947
|
+
};
|
|
88948
|
+
type: string;
|
|
88949
|
+
};
|
|
88950
|
+
unmanaged_devices: {
|
|
88951
|
+
items: {
|
|
88952
|
+
$ref: string;
|
|
88953
|
+
};
|
|
88954
|
+
type: string;
|
|
88955
|
+
};
|
|
88956
|
+
user_identities: {
|
|
88957
|
+
items: {
|
|
88958
|
+
$ref: string;
|
|
88959
|
+
};
|
|
88960
|
+
type: string;
|
|
88961
|
+
};
|
|
88962
|
+
workspaces: {
|
|
88963
|
+
items: {
|
|
88964
|
+
$ref: string;
|
|
88965
|
+
};
|
|
88966
|
+
type: string;
|
|
88967
|
+
};
|
|
88968
|
+
};
|
|
88969
|
+
required: string[];
|
|
88970
|
+
type: string;
|
|
88971
|
+
};
|
|
88972
|
+
ok: {
|
|
88973
|
+
type: string;
|
|
88974
|
+
};
|
|
88975
|
+
};
|
|
88976
|
+
required: string[];
|
|
88977
|
+
type: string;
|
|
88978
|
+
};
|
|
88979
|
+
};
|
|
88980
|
+
};
|
|
88981
|
+
description: string;
|
|
88982
|
+
};
|
|
88983
|
+
400: {
|
|
88984
|
+
description: string;
|
|
88985
|
+
};
|
|
88986
|
+
401: {
|
|
88987
|
+
description: string;
|
|
88988
|
+
};
|
|
88989
|
+
};
|
|
88990
|
+
security: ({
|
|
88991
|
+
pat_with_workspace: never[];
|
|
88992
|
+
console_session_with_workspace?: never;
|
|
88993
|
+
api_key?: never;
|
|
88994
|
+
} | {
|
|
88995
|
+
console_session_with_workspace: never[];
|
|
88996
|
+
pat_with_workspace?: never;
|
|
88997
|
+
api_key?: never;
|
|
88998
|
+
} | {
|
|
88999
|
+
api_key: never[];
|
|
89000
|
+
pat_with_workspace?: never;
|
|
89001
|
+
console_session_with_workspace?: never;
|
|
89002
|
+
})[];
|
|
89003
|
+
summary: string;
|
|
89004
|
+
tags: string[];
|
|
89005
|
+
'x-batch-type': string;
|
|
89006
|
+
'x-fern-sdk-group-name': string[];
|
|
89007
|
+
'x-fern-sdk-method-name': string;
|
|
89008
|
+
'x-fern-sdk-return-value': string;
|
|
89009
|
+
'x-response-key': string;
|
|
89010
|
+
'x-title': string;
|
|
89011
|
+
'x-undocumented': string;
|
|
89012
|
+
};
|
|
89013
|
+
post: {
|
|
89014
|
+
description: string;
|
|
89015
|
+
operationId: string;
|
|
89016
|
+
parameters: {
|
|
89017
|
+
in: string;
|
|
89018
|
+
name: string;
|
|
89019
|
+
required: boolean;
|
|
89020
|
+
schema: {
|
|
89021
|
+
format: string;
|
|
89022
|
+
type: string;
|
|
89023
|
+
};
|
|
89024
|
+
}[];
|
|
89025
|
+
responses: {
|
|
89026
|
+
200: {
|
|
89027
|
+
content: {
|
|
89028
|
+
'application/json': {
|
|
89029
|
+
schema: {
|
|
89030
|
+
properties: {
|
|
89031
|
+
batch: {
|
|
89032
|
+
description: string;
|
|
89033
|
+
properties: {
|
|
89034
|
+
access_methods: {
|
|
89035
|
+
items: {
|
|
89036
|
+
$ref: string;
|
|
89037
|
+
};
|
|
89038
|
+
type: string;
|
|
89039
|
+
};
|
|
89040
|
+
acs_access_groups: {
|
|
89041
|
+
items: {
|
|
89042
|
+
$ref: string;
|
|
89043
|
+
};
|
|
89044
|
+
type: string;
|
|
89045
|
+
};
|
|
89046
|
+
acs_encoders: {
|
|
89047
|
+
items: {
|
|
89048
|
+
$ref: string;
|
|
89049
|
+
};
|
|
89050
|
+
type: string;
|
|
89051
|
+
};
|
|
89052
|
+
acs_entrances: {
|
|
89053
|
+
items: {
|
|
89054
|
+
$ref: string;
|
|
89055
|
+
};
|
|
89056
|
+
type: string;
|
|
89057
|
+
};
|
|
89058
|
+
acs_systems: {
|
|
89059
|
+
items: {
|
|
89060
|
+
$ref: string;
|
|
89061
|
+
};
|
|
89062
|
+
type: string;
|
|
89063
|
+
};
|
|
89064
|
+
acs_users: {
|
|
89065
|
+
items: {
|
|
89066
|
+
$ref: string;
|
|
89067
|
+
};
|
|
89068
|
+
type: string;
|
|
89069
|
+
};
|
|
89070
|
+
action_attempts: {
|
|
89071
|
+
items: {
|
|
89072
|
+
$ref: string;
|
|
89073
|
+
};
|
|
89074
|
+
type: string;
|
|
89075
|
+
};
|
|
89076
|
+
batch_type: {
|
|
89077
|
+
enum: string[];
|
|
89078
|
+
type: string;
|
|
89079
|
+
};
|
|
89080
|
+
client_sessions: {
|
|
89081
|
+
items: {
|
|
89082
|
+
$ref: string;
|
|
89083
|
+
};
|
|
89084
|
+
type: string;
|
|
89085
|
+
};
|
|
89086
|
+
connect_webviews: {
|
|
89087
|
+
items: {
|
|
89088
|
+
$ref: string;
|
|
89089
|
+
};
|
|
89090
|
+
type: string;
|
|
89091
|
+
};
|
|
89092
|
+
devices: {
|
|
89093
|
+
items: {
|
|
89094
|
+
$ref: string;
|
|
89095
|
+
};
|
|
89096
|
+
type: string;
|
|
89097
|
+
};
|
|
89098
|
+
spaces: {
|
|
89099
|
+
items: {
|
|
89100
|
+
$ref: string;
|
|
89101
|
+
};
|
|
89102
|
+
type: string;
|
|
89103
|
+
};
|
|
89104
|
+
unmanaged_acs_access_groups: {
|
|
89105
|
+
items: {
|
|
89106
|
+
$ref: string;
|
|
89107
|
+
};
|
|
89108
|
+
type: string;
|
|
89109
|
+
};
|
|
89110
|
+
unmanaged_acs_users: {
|
|
89111
|
+
items: {
|
|
89112
|
+
$ref: string;
|
|
89113
|
+
};
|
|
89114
|
+
type: string;
|
|
89115
|
+
};
|
|
89116
|
+
unmanaged_devices: {
|
|
89117
|
+
items: {
|
|
89118
|
+
$ref: string;
|
|
89119
|
+
};
|
|
89120
|
+
type: string;
|
|
89121
|
+
};
|
|
89122
|
+
user_identities: {
|
|
89123
|
+
items: {
|
|
89124
|
+
$ref: string;
|
|
89125
|
+
};
|
|
89126
|
+
type: string;
|
|
89127
|
+
};
|
|
89128
|
+
workspaces: {
|
|
89129
|
+
items: {
|
|
89130
|
+
$ref: string;
|
|
89131
|
+
};
|
|
88504
89132
|
type: string;
|
|
88505
89133
|
};
|
|
88506
89134
|
};
|
|
@@ -105974,6 +106602,30 @@ type Routes = {
|
|
|
105974
106602
|
/** The customer key associated with this webview, if any. */
|
|
105975
106603
|
customer_key?: string | undefined;
|
|
105976
106604
|
}[] | undefined;
|
|
106605
|
+
access_methods?: {
|
|
106606
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
106607
|
+
workspace_id: string;
|
|
106608
|
+
/** ID of the access method. */
|
|
106609
|
+
access_method_id: string;
|
|
106610
|
+
/** Display name of the access method. */
|
|
106611
|
+
display_name: string;
|
|
106612
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
106613
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
106614
|
+
/** Date and time at which the access method was created. */
|
|
106615
|
+
created_at: string;
|
|
106616
|
+
/** Date and time at which the access method was issued. */
|
|
106617
|
+
issued_at: string | null;
|
|
106618
|
+
/** Indicates whether the access method has been issued. */
|
|
106619
|
+
is_issued: boolean;
|
|
106620
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
106621
|
+
instant_key_url?: string | undefined;
|
|
106622
|
+
/** Token of the client session associated with the access method. */
|
|
106623
|
+
client_session_token?: string | undefined;
|
|
106624
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
106625
|
+
is_encoding_required?: boolean | undefined;
|
|
106626
|
+
/** The actual PIN code for code access methods. */
|
|
106627
|
+
code?: string | undefined;
|
|
106628
|
+
}[] | undefined;
|
|
105977
106629
|
};
|
|
105978
106630
|
};
|
|
105979
106631
|
};
|
|
@@ -164776,6 +165428,84 @@ type Routes = {
|
|
|
164776
165428
|
};
|
|
164777
165429
|
};
|
|
164778
165430
|
};
|
|
165431
|
+
'/workspaces/customization_profiles/create': {
|
|
165432
|
+
route: '/workspaces/customization_profiles/create';
|
|
165433
|
+
method: 'POST';
|
|
165434
|
+
queryParams: {};
|
|
165435
|
+
jsonBody: {
|
|
165436
|
+
primary_color: string;
|
|
165437
|
+
secondary_color: string;
|
|
165438
|
+
};
|
|
165439
|
+
commonParams: {};
|
|
165440
|
+
formData: {};
|
|
165441
|
+
jsonResponse: {
|
|
165442
|
+
customization_profile: {
|
|
165443
|
+
workspace_id: string;
|
|
165444
|
+
customization_profile_id: string;
|
|
165445
|
+
logo_url?: string | undefined;
|
|
165446
|
+
primary_color?: string | undefined;
|
|
165447
|
+
secondary_color?: string | undefined;
|
|
165448
|
+
};
|
|
165449
|
+
};
|
|
165450
|
+
};
|
|
165451
|
+
'/workspaces/customization_profiles/get': {
|
|
165452
|
+
route: '/workspaces/customization_profiles/get';
|
|
165453
|
+
method: 'POST' | 'GET';
|
|
165454
|
+
queryParams: {};
|
|
165455
|
+
jsonBody: {};
|
|
165456
|
+
commonParams: {
|
|
165457
|
+
customization_profile_id: string;
|
|
165458
|
+
};
|
|
165459
|
+
formData: {};
|
|
165460
|
+
jsonResponse: {
|
|
165461
|
+
customization_profile: {
|
|
165462
|
+
workspace_id: string;
|
|
165463
|
+
customization_profile_id: string;
|
|
165464
|
+
logo_url?: string | undefined;
|
|
165465
|
+
primary_color?: string | undefined;
|
|
165466
|
+
secondary_color?: string | undefined;
|
|
165467
|
+
};
|
|
165468
|
+
};
|
|
165469
|
+
};
|
|
165470
|
+
'/workspaces/customization_profiles/list': {
|
|
165471
|
+
route: '/workspaces/customization_profiles/list';
|
|
165472
|
+
method: 'POST' | 'GET';
|
|
165473
|
+
queryParams: {};
|
|
165474
|
+
jsonBody: {};
|
|
165475
|
+
commonParams: {};
|
|
165476
|
+
formData: {};
|
|
165477
|
+
jsonResponse: {
|
|
165478
|
+
customization_profiles: {
|
|
165479
|
+
workspace_id: string;
|
|
165480
|
+
customization_profile_id: string;
|
|
165481
|
+
logo_url?: string | undefined;
|
|
165482
|
+
primary_color?: string | undefined;
|
|
165483
|
+
secondary_color?: string | undefined;
|
|
165484
|
+
}[];
|
|
165485
|
+
};
|
|
165486
|
+
};
|
|
165487
|
+
'/workspaces/customization_profiles/update': {
|
|
165488
|
+
route: '/workspaces/customization_profiles/update';
|
|
165489
|
+
method: 'POST' | 'PATCH';
|
|
165490
|
+
queryParams: {};
|
|
165491
|
+
jsonBody: {
|
|
165492
|
+
customization_profile_id: string;
|
|
165493
|
+
primary_color?: string | undefined;
|
|
165494
|
+
secondary_color?: string | undefined;
|
|
165495
|
+
};
|
|
165496
|
+
commonParams: {};
|
|
165497
|
+
formData: {};
|
|
165498
|
+
jsonResponse: {};
|
|
165499
|
+
};
|
|
165500
|
+
'/workspaces/customization_profiles/upload_images': {
|
|
165501
|
+
route: '/workspaces/customization_profiles/upload_images';
|
|
165502
|
+
method: 'POST';
|
|
165503
|
+
queryParams: {};
|
|
165504
|
+
jsonBody: {};
|
|
165505
|
+
commonParams: {};
|
|
165506
|
+
formData: {};
|
|
165507
|
+
jsonResponse: {};
|
|
165508
|
+
};
|
|
164779
165509
|
'/workspaces/find_resources': {
|
|
164780
165510
|
route: '/workspaces/find_resources';
|
|
164781
165511
|
method: 'GET' | 'POST';
|
|
@@ -168515,6 +169245,30 @@ type Routes = {
|
|
|
168515
169245
|
/** The customer key associated with this webview, if any. */
|
|
168516
169246
|
customer_key?: string | undefined;
|
|
168517
169247
|
}[] | undefined;
|
|
169248
|
+
access_methods?: {
|
|
169249
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
169250
|
+
workspace_id: string;
|
|
169251
|
+
/** ID of the access method. */
|
|
169252
|
+
access_method_id: string;
|
|
169253
|
+
/** Display name of the access method. */
|
|
169254
|
+
display_name: string;
|
|
169255
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
169256
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
169257
|
+
/** Date and time at which the access method was created. */
|
|
169258
|
+
created_at: string;
|
|
169259
|
+
/** Date and time at which the access method was issued. */
|
|
169260
|
+
issued_at: string | null;
|
|
169261
|
+
/** Indicates whether the access method has been issued. */
|
|
169262
|
+
is_issued: boolean;
|
|
169263
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
169264
|
+
instant_key_url?: string | undefined;
|
|
169265
|
+
/** Token of the client session associated with the access method. */
|
|
169266
|
+
client_session_token?: string | undefined;
|
|
169267
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
169268
|
+
is_encoding_required?: boolean | undefined;
|
|
169269
|
+
/** The actual PIN code for code access methods. */
|
|
169270
|
+
code?: string | undefined;
|
|
169271
|
+
}[] | undefined;
|
|
168518
169272
|
};
|
|
168519
169273
|
};
|
|
168520
169274
|
};
|