@seamapi/types 1.726.0 → 1.728.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 +73 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +334 -50
- package/dist/index.cjs +73 -18
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +36 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +84 -32
- package/lib/seam/connect/openapi.d.ts +48 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +150 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +56 -0
- package/src/lib/seam/connect/route-types.ts +173 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4283,6 +4283,16 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4283
4283
|
created_at: string;
|
|
4284
4284
|
warning_code: "being_deleted";
|
|
4285
4285
|
}>]>, "many">;
|
|
4286
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
4287
|
+
starts_at: z.ZodString;
|
|
4288
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
4289
|
+
}, "strip", z.ZodTypeAny, {
|
|
4290
|
+
starts_at: string;
|
|
4291
|
+
ends_at: string | null;
|
|
4292
|
+
}, {
|
|
4293
|
+
starts_at: string;
|
|
4294
|
+
ends_at: string | null;
|
|
4295
|
+
}>>;
|
|
4286
4296
|
} & {
|
|
4287
4297
|
is_managed: z.ZodLiteral<true>;
|
|
4288
4298
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4307,6 +4317,10 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4307
4317
|
access_group_type_display_name: string;
|
|
4308
4318
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
4309
4319
|
external_type_display_name: string;
|
|
4320
|
+
access_schedule?: {
|
|
4321
|
+
starts_at: string;
|
|
4322
|
+
ends_at: string | null;
|
|
4323
|
+
} | undefined;
|
|
4310
4324
|
}, {
|
|
4311
4325
|
name: string;
|
|
4312
4326
|
display_name: string;
|
|
@@ -4329,6 +4343,10 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4329
4343
|
access_group_type_display_name: string;
|
|
4330
4344
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
4331
4345
|
external_type_display_name: string;
|
|
4346
|
+
access_schedule?: {
|
|
4347
|
+
starts_at: string;
|
|
4348
|
+
ends_at: string | null;
|
|
4349
|
+
} | undefined;
|
|
4332
4350
|
}>;
|
|
4333
4351
|
declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
4334
4352
|
acs_access_group_id: z.ZodString;
|
|
@@ -4369,6 +4387,16 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4369
4387
|
created_at: string;
|
|
4370
4388
|
warning_code: "being_deleted";
|
|
4371
4389
|
}>]>, "many">;
|
|
4390
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
4391
|
+
starts_at: z.ZodString;
|
|
4392
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
4393
|
+
}, "strip", z.ZodTypeAny, {
|
|
4394
|
+
starts_at: string;
|
|
4395
|
+
ends_at: string | null;
|
|
4396
|
+
}, {
|
|
4397
|
+
starts_at: string;
|
|
4398
|
+
ends_at: string | null;
|
|
4399
|
+
}>>;
|
|
4372
4400
|
} & {
|
|
4373
4401
|
is_managed: z.ZodLiteral<false>;
|
|
4374
4402
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4393,6 +4421,10 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4393
4421
|
access_group_type_display_name: string;
|
|
4394
4422
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
4395
4423
|
external_type_display_name: string;
|
|
4424
|
+
access_schedule?: {
|
|
4425
|
+
starts_at: string;
|
|
4426
|
+
ends_at: string | null;
|
|
4427
|
+
} | undefined;
|
|
4396
4428
|
}, {
|
|
4397
4429
|
name: string;
|
|
4398
4430
|
display_name: string;
|
|
@@ -4415,6 +4447,10 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4415
4447
|
access_group_type_display_name: string;
|
|
4416
4448
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
4417
4449
|
external_type_display_name: string;
|
|
4450
|
+
access_schedule?: {
|
|
4451
|
+
starts_at: string;
|
|
4452
|
+
ends_at: string | null;
|
|
4453
|
+
} | undefined;
|
|
4418
4454
|
}>;
|
|
4419
4455
|
type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
4420
4456
|
|
|
@@ -6197,6 +6233,10 @@ declare const acs_user: z.ZodObject<{
|
|
|
6197
6233
|
})[] | undefined;
|
|
6198
6234
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6199
6235
|
external_type_display_name?: string | undefined;
|
|
6236
|
+
access_schedule?: {
|
|
6237
|
+
starts_at: string;
|
|
6238
|
+
ends_at: string | null;
|
|
6239
|
+
} | undefined;
|
|
6200
6240
|
salto_space_metadata?: {
|
|
6201
6241
|
user_id?: string | undefined;
|
|
6202
6242
|
audit_openings?: boolean | undefined;
|
|
@@ -6206,10 +6246,6 @@ declare const acs_user: z.ZodObject<{
|
|
|
6206
6246
|
phone_number?: string | undefined;
|
|
6207
6247
|
is_suspended?: boolean | undefined;
|
|
6208
6248
|
hid_acs_system_id?: string | undefined;
|
|
6209
|
-
access_schedule?: {
|
|
6210
|
-
starts_at: string;
|
|
6211
|
-
ends_at: string | null;
|
|
6212
|
-
} | undefined;
|
|
6213
6249
|
user_identity_full_name?: string | null | undefined;
|
|
6214
6250
|
user_identity_email_address?: string | null | undefined;
|
|
6215
6251
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -6328,6 +6364,10 @@ declare const acs_user: z.ZodObject<{
|
|
|
6328
6364
|
})[] | undefined;
|
|
6329
6365
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6330
6366
|
external_type_display_name?: string | undefined;
|
|
6367
|
+
access_schedule?: {
|
|
6368
|
+
starts_at: string;
|
|
6369
|
+
ends_at: string | null;
|
|
6370
|
+
} | undefined;
|
|
6331
6371
|
salto_space_metadata?: {
|
|
6332
6372
|
user_id?: string | undefined;
|
|
6333
6373
|
audit_openings?: boolean | undefined;
|
|
@@ -6337,10 +6377,6 @@ declare const acs_user: z.ZodObject<{
|
|
|
6337
6377
|
phone_number?: string | undefined;
|
|
6338
6378
|
is_suspended?: boolean | undefined;
|
|
6339
6379
|
hid_acs_system_id?: string | undefined;
|
|
6340
|
-
access_schedule?: {
|
|
6341
|
-
starts_at: string;
|
|
6342
|
-
ends_at: string | null;
|
|
6343
|
-
} | undefined;
|
|
6344
6380
|
user_identity_full_name?: string | null | undefined;
|
|
6345
6381
|
user_identity_email_address?: string | null | undefined;
|
|
6346
6382
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -6864,6 +6900,10 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6864
6900
|
})[] | undefined;
|
|
6865
6901
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6866
6902
|
external_type_display_name?: string | undefined;
|
|
6903
|
+
access_schedule?: {
|
|
6904
|
+
starts_at: string;
|
|
6905
|
+
ends_at: string | null;
|
|
6906
|
+
} | undefined;
|
|
6867
6907
|
salto_space_metadata?: {
|
|
6868
6908
|
user_id?: string | undefined;
|
|
6869
6909
|
audit_openings?: boolean | undefined;
|
|
@@ -6873,10 +6913,6 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6873
6913
|
phone_number?: string | undefined;
|
|
6874
6914
|
is_suspended?: boolean | undefined;
|
|
6875
6915
|
hid_acs_system_id?: string | undefined;
|
|
6876
|
-
access_schedule?: {
|
|
6877
|
-
starts_at: string;
|
|
6878
|
-
ends_at: string | null;
|
|
6879
|
-
} | undefined;
|
|
6880
6916
|
user_identity_full_name?: string | null | undefined;
|
|
6881
6917
|
user_identity_email_address?: string | null | undefined;
|
|
6882
6918
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -6995,6 +7031,10 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6995
7031
|
})[] | undefined;
|
|
6996
7032
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6997
7033
|
external_type_display_name?: string | undefined;
|
|
7034
|
+
access_schedule?: {
|
|
7035
|
+
starts_at: string;
|
|
7036
|
+
ends_at: string | null;
|
|
7037
|
+
} | undefined;
|
|
6998
7038
|
salto_space_metadata?: {
|
|
6999
7039
|
user_id?: string | undefined;
|
|
7000
7040
|
audit_openings?: boolean | undefined;
|
|
@@ -7004,10 +7044,6 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
7004
7044
|
phone_number?: string | undefined;
|
|
7005
7045
|
is_suspended?: boolean | undefined;
|
|
7006
7046
|
hid_acs_system_id?: string | undefined;
|
|
7007
|
-
access_schedule?: {
|
|
7008
|
-
starts_at: string;
|
|
7009
|
-
ends_at: string | null;
|
|
7010
|
-
} | undefined;
|
|
7011
7047
|
user_identity_full_name?: string | null | undefined;
|
|
7012
7048
|
user_identity_email_address?: string | null | undefined;
|
|
7013
7049
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -17049,6 +17085,10 @@ declare const batch: z.ZodObject<{
|
|
|
17049
17085
|
})[] | undefined;
|
|
17050
17086
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
17051
17087
|
external_type_display_name?: string | undefined;
|
|
17088
|
+
access_schedule?: {
|
|
17089
|
+
starts_at: string;
|
|
17090
|
+
ends_at: string | null;
|
|
17091
|
+
} | undefined;
|
|
17052
17092
|
salto_space_metadata?: {
|
|
17053
17093
|
user_id?: string | undefined;
|
|
17054
17094
|
audit_openings?: boolean | undefined;
|
|
@@ -17058,10 +17098,6 @@ declare const batch: z.ZodObject<{
|
|
|
17058
17098
|
phone_number?: string | undefined;
|
|
17059
17099
|
is_suspended?: boolean | undefined;
|
|
17060
17100
|
hid_acs_system_id?: string | undefined;
|
|
17061
|
-
access_schedule?: {
|
|
17062
|
-
starts_at: string;
|
|
17063
|
-
ends_at: string | null;
|
|
17064
|
-
} | undefined;
|
|
17065
17101
|
user_identity_full_name?: string | null | undefined;
|
|
17066
17102
|
user_identity_email_address?: string | null | undefined;
|
|
17067
17103
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -17180,6 +17216,10 @@ declare const batch: z.ZodObject<{
|
|
|
17180
17216
|
})[] | undefined;
|
|
17181
17217
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
17182
17218
|
external_type_display_name?: string | undefined;
|
|
17219
|
+
access_schedule?: {
|
|
17220
|
+
starts_at: string;
|
|
17221
|
+
ends_at: string | null;
|
|
17222
|
+
} | undefined;
|
|
17183
17223
|
salto_space_metadata?: {
|
|
17184
17224
|
user_id?: string | undefined;
|
|
17185
17225
|
audit_openings?: boolean | undefined;
|
|
@@ -17189,10 +17229,6 @@ declare const batch: z.ZodObject<{
|
|
|
17189
17229
|
phone_number?: string | undefined;
|
|
17190
17230
|
is_suspended?: boolean | undefined;
|
|
17191
17231
|
hid_acs_system_id?: string | undefined;
|
|
17192
|
-
access_schedule?: {
|
|
17193
|
-
starts_at: string;
|
|
17194
|
-
ends_at: string | null;
|
|
17195
|
-
} | undefined;
|
|
17196
17232
|
user_identity_full_name?: string | null | undefined;
|
|
17197
17233
|
user_identity_email_address?: string | null | undefined;
|
|
17198
17234
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -17236,6 +17272,16 @@ declare const batch: z.ZodObject<{
|
|
|
17236
17272
|
created_at: string;
|
|
17237
17273
|
warning_code: "being_deleted";
|
|
17238
17274
|
}>]>, "many">;
|
|
17275
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
17276
|
+
starts_at: z.ZodString;
|
|
17277
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
17278
|
+
}, "strip", z.ZodTypeAny, {
|
|
17279
|
+
starts_at: string;
|
|
17280
|
+
ends_at: string | null;
|
|
17281
|
+
}, {
|
|
17282
|
+
starts_at: string;
|
|
17283
|
+
ends_at: string | null;
|
|
17284
|
+
}>>;
|
|
17239
17285
|
} & {
|
|
17240
17286
|
is_managed: z.ZodLiteral<true>;
|
|
17241
17287
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17260,6 +17306,10 @@ declare const batch: z.ZodObject<{
|
|
|
17260
17306
|
access_group_type_display_name: string;
|
|
17261
17307
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
17262
17308
|
external_type_display_name: string;
|
|
17309
|
+
access_schedule?: {
|
|
17310
|
+
starts_at: string;
|
|
17311
|
+
ends_at: string | null;
|
|
17312
|
+
} | undefined;
|
|
17263
17313
|
}, {
|
|
17264
17314
|
name: string;
|
|
17265
17315
|
display_name: string;
|
|
@@ -17282,6 +17332,10 @@ declare const batch: z.ZodObject<{
|
|
|
17282
17332
|
access_group_type_display_name: string;
|
|
17283
17333
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
17284
17334
|
external_type_display_name: string;
|
|
17335
|
+
access_schedule?: {
|
|
17336
|
+
starts_at: string;
|
|
17337
|
+
ends_at: string | null;
|
|
17338
|
+
} | undefined;
|
|
17285
17339
|
}>, "many">>;
|
|
17286
17340
|
acs_encoders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17287
17341
|
acs_encoder_id: z.ZodString;
|
|
@@ -22346,6 +22400,10 @@ declare const batch: z.ZodObject<{
|
|
|
22346
22400
|
})[] | undefined;
|
|
22347
22401
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
22348
22402
|
external_type_display_name?: string | undefined;
|
|
22403
|
+
access_schedule?: {
|
|
22404
|
+
starts_at: string;
|
|
22405
|
+
ends_at: string | null;
|
|
22406
|
+
} | undefined;
|
|
22349
22407
|
salto_space_metadata?: {
|
|
22350
22408
|
user_id?: string | undefined;
|
|
22351
22409
|
audit_openings?: boolean | undefined;
|
|
@@ -22355,10 +22413,6 @@ declare const batch: z.ZodObject<{
|
|
|
22355
22413
|
phone_number?: string | undefined;
|
|
22356
22414
|
is_suspended?: boolean | undefined;
|
|
22357
22415
|
hid_acs_system_id?: string | undefined;
|
|
22358
|
-
access_schedule?: {
|
|
22359
|
-
starts_at: string;
|
|
22360
|
-
ends_at: string | null;
|
|
22361
|
-
} | undefined;
|
|
22362
22416
|
user_identity_full_name?: string | null | undefined;
|
|
22363
22417
|
user_identity_email_address?: string | null | undefined;
|
|
22364
22418
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -22477,6 +22531,10 @@ declare const batch: z.ZodObject<{
|
|
|
22477
22531
|
})[] | undefined;
|
|
22478
22532
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
22479
22533
|
external_type_display_name?: string | undefined;
|
|
22534
|
+
access_schedule?: {
|
|
22535
|
+
starts_at: string;
|
|
22536
|
+
ends_at: string | null;
|
|
22537
|
+
} | undefined;
|
|
22480
22538
|
salto_space_metadata?: {
|
|
22481
22539
|
user_id?: string | undefined;
|
|
22482
22540
|
audit_openings?: boolean | undefined;
|
|
@@ -22486,10 +22544,6 @@ declare const batch: z.ZodObject<{
|
|
|
22486
22544
|
phone_number?: string | undefined;
|
|
22487
22545
|
is_suspended?: boolean | undefined;
|
|
22488
22546
|
hid_acs_system_id?: string | undefined;
|
|
22489
|
-
access_schedule?: {
|
|
22490
|
-
starts_at: string;
|
|
22491
|
-
ends_at: string | null;
|
|
22492
|
-
} | undefined;
|
|
22493
22547
|
user_identity_full_name?: string | null | undefined;
|
|
22494
22548
|
user_identity_email_address?: string | null | undefined;
|
|
22495
22549
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -22533,6 +22587,16 @@ declare const batch: z.ZodObject<{
|
|
|
22533
22587
|
created_at: string;
|
|
22534
22588
|
warning_code: "being_deleted";
|
|
22535
22589
|
}>]>, "many">;
|
|
22590
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
22591
|
+
starts_at: z.ZodString;
|
|
22592
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
22593
|
+
}, "strip", z.ZodTypeAny, {
|
|
22594
|
+
starts_at: string;
|
|
22595
|
+
ends_at: string | null;
|
|
22596
|
+
}, {
|
|
22597
|
+
starts_at: string;
|
|
22598
|
+
ends_at: string | null;
|
|
22599
|
+
}>>;
|
|
22536
22600
|
} & {
|
|
22537
22601
|
is_managed: z.ZodLiteral<false>;
|
|
22538
22602
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22557,6 +22621,10 @@ declare const batch: z.ZodObject<{
|
|
|
22557
22621
|
access_group_type_display_name: string;
|
|
22558
22622
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
22559
22623
|
external_type_display_name: string;
|
|
22624
|
+
access_schedule?: {
|
|
22625
|
+
starts_at: string;
|
|
22626
|
+
ends_at: string | null;
|
|
22627
|
+
} | undefined;
|
|
22560
22628
|
}, {
|
|
22561
22629
|
name: string;
|
|
22562
22630
|
display_name: string;
|
|
@@ -22579,6 +22647,10 @@ declare const batch: z.ZodObject<{
|
|
|
22579
22647
|
access_group_type_display_name: string;
|
|
22580
22648
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
22581
22649
|
external_type_display_name: string;
|
|
22650
|
+
access_schedule?: {
|
|
22651
|
+
starts_at: string;
|
|
22652
|
+
ends_at: string | null;
|
|
22653
|
+
} | undefined;
|
|
22582
22654
|
}>, "many">>;
|
|
22583
22655
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
22584
22656
|
device_id: z.ZodString;
|
|
@@ -36133,6 +36205,10 @@ declare const batch: z.ZodObject<{
|
|
|
36133
36205
|
})[] | undefined;
|
|
36134
36206
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
36135
36207
|
external_type_display_name?: string | undefined;
|
|
36208
|
+
access_schedule?: {
|
|
36209
|
+
starts_at: string;
|
|
36210
|
+
ends_at: string | null;
|
|
36211
|
+
} | undefined;
|
|
36136
36212
|
salto_space_metadata?: {
|
|
36137
36213
|
user_id?: string | undefined;
|
|
36138
36214
|
audit_openings?: boolean | undefined;
|
|
@@ -36142,10 +36218,6 @@ declare const batch: z.ZodObject<{
|
|
|
36142
36218
|
phone_number?: string | undefined;
|
|
36143
36219
|
is_suspended?: boolean | undefined;
|
|
36144
36220
|
hid_acs_system_id?: string | undefined;
|
|
36145
|
-
access_schedule?: {
|
|
36146
|
-
starts_at: string;
|
|
36147
|
-
ends_at: string | null;
|
|
36148
|
-
} | undefined;
|
|
36149
36221
|
user_identity_full_name?: string | null | undefined;
|
|
36150
36222
|
user_identity_email_address?: string | null | undefined;
|
|
36151
36223
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -36172,6 +36244,10 @@ declare const batch: z.ZodObject<{
|
|
|
36172
36244
|
access_group_type_display_name: string;
|
|
36173
36245
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
36174
36246
|
external_type_display_name: string;
|
|
36247
|
+
access_schedule?: {
|
|
36248
|
+
starts_at: string;
|
|
36249
|
+
ends_at: string | null;
|
|
36250
|
+
} | undefined;
|
|
36175
36251
|
}[] | undefined;
|
|
36176
36252
|
acs_encoders?: {
|
|
36177
36253
|
display_name: string;
|
|
@@ -37191,6 +37267,10 @@ declare const batch: z.ZodObject<{
|
|
|
37191
37267
|
})[] | undefined;
|
|
37192
37268
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
37193
37269
|
external_type_display_name?: string | undefined;
|
|
37270
|
+
access_schedule?: {
|
|
37271
|
+
starts_at: string;
|
|
37272
|
+
ends_at: string | null;
|
|
37273
|
+
} | undefined;
|
|
37194
37274
|
salto_space_metadata?: {
|
|
37195
37275
|
user_id?: string | undefined;
|
|
37196
37276
|
audit_openings?: boolean | undefined;
|
|
@@ -37200,10 +37280,6 @@ declare const batch: z.ZodObject<{
|
|
|
37200
37280
|
phone_number?: string | undefined;
|
|
37201
37281
|
is_suspended?: boolean | undefined;
|
|
37202
37282
|
hid_acs_system_id?: string | undefined;
|
|
37203
|
-
access_schedule?: {
|
|
37204
|
-
starts_at: string;
|
|
37205
|
-
ends_at: string | null;
|
|
37206
|
-
} | undefined;
|
|
37207
37283
|
user_identity_full_name?: string | null | undefined;
|
|
37208
37284
|
user_identity_email_address?: string | null | undefined;
|
|
37209
37285
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -37230,6 +37306,10 @@ declare const batch: z.ZodObject<{
|
|
|
37230
37306
|
access_group_type_display_name: string;
|
|
37231
37307
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
37232
37308
|
external_type_display_name: string;
|
|
37309
|
+
access_schedule?: {
|
|
37310
|
+
starts_at: string;
|
|
37311
|
+
ends_at: string | null;
|
|
37312
|
+
} | undefined;
|
|
37233
37313
|
}[] | undefined;
|
|
37234
37314
|
unmanaged_devices?: {
|
|
37235
37315
|
device_id: string;
|
|
@@ -40751,6 +40831,10 @@ declare const batch: z.ZodObject<{
|
|
|
40751
40831
|
})[] | undefined;
|
|
40752
40832
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
40753
40833
|
external_type_display_name?: string | undefined;
|
|
40834
|
+
access_schedule?: {
|
|
40835
|
+
starts_at: string;
|
|
40836
|
+
ends_at: string | null;
|
|
40837
|
+
} | undefined;
|
|
40754
40838
|
salto_space_metadata?: {
|
|
40755
40839
|
user_id?: string | undefined;
|
|
40756
40840
|
audit_openings?: boolean | undefined;
|
|
@@ -40760,10 +40844,6 @@ declare const batch: z.ZodObject<{
|
|
|
40760
40844
|
phone_number?: string | undefined;
|
|
40761
40845
|
is_suspended?: boolean | undefined;
|
|
40762
40846
|
hid_acs_system_id?: string | undefined;
|
|
40763
|
-
access_schedule?: {
|
|
40764
|
-
starts_at: string;
|
|
40765
|
-
ends_at: string | null;
|
|
40766
|
-
} | undefined;
|
|
40767
40847
|
user_identity_full_name?: string | null | undefined;
|
|
40768
40848
|
user_identity_email_address?: string | null | undefined;
|
|
40769
40849
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -40790,6 +40870,10 @@ declare const batch: z.ZodObject<{
|
|
|
40790
40870
|
access_group_type_display_name: string;
|
|
40791
40871
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
40792
40872
|
external_type_display_name: string;
|
|
40873
|
+
access_schedule?: {
|
|
40874
|
+
starts_at: string;
|
|
40875
|
+
ends_at: string | null;
|
|
40876
|
+
} | undefined;
|
|
40793
40877
|
}[] | undefined;
|
|
40794
40878
|
acs_encoders?: {
|
|
40795
40879
|
display_name: string;
|
|
@@ -41809,6 +41893,10 @@ declare const batch: z.ZodObject<{
|
|
|
41809
41893
|
})[] | undefined;
|
|
41810
41894
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
41811
41895
|
external_type_display_name?: string | undefined;
|
|
41896
|
+
access_schedule?: {
|
|
41897
|
+
starts_at: string;
|
|
41898
|
+
ends_at: string | null;
|
|
41899
|
+
} | undefined;
|
|
41812
41900
|
salto_space_metadata?: {
|
|
41813
41901
|
user_id?: string | undefined;
|
|
41814
41902
|
audit_openings?: boolean | undefined;
|
|
@@ -41818,10 +41906,6 @@ declare const batch: z.ZodObject<{
|
|
|
41818
41906
|
phone_number?: string | undefined;
|
|
41819
41907
|
is_suspended?: boolean | undefined;
|
|
41820
41908
|
hid_acs_system_id?: string | undefined;
|
|
41821
|
-
access_schedule?: {
|
|
41822
|
-
starts_at: string;
|
|
41823
|
-
ends_at: string | null;
|
|
41824
|
-
} | undefined;
|
|
41825
41909
|
user_identity_full_name?: string | null | undefined;
|
|
41826
41910
|
user_identity_email_address?: string | null | undefined;
|
|
41827
41911
|
user_identity_phone_number?: string | null | undefined;
|
|
@@ -41848,6 +41932,10 @@ declare const batch: z.ZodObject<{
|
|
|
41848
41932
|
access_group_type_display_name: string;
|
|
41849
41933
|
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
41850
41934
|
external_type_display_name: string;
|
|
41935
|
+
access_schedule?: {
|
|
41936
|
+
starts_at: string;
|
|
41937
|
+
ends_at: string | null;
|
|
41938
|
+
} | undefined;
|
|
41851
41939
|
}[] | undefined;
|
|
41852
41940
|
unmanaged_devices?: {
|
|
41853
41941
|
device_id: string;
|
|
@@ -60482,6 +60570,24 @@ declare const _default: {
|
|
|
60482
60570
|
type: string;
|
|
60483
60571
|
'x-deprecated': string;
|
|
60484
60572
|
};
|
|
60573
|
+
access_schedule: {
|
|
60574
|
+
description: string;
|
|
60575
|
+
properties: {
|
|
60576
|
+
ends_at: {
|
|
60577
|
+
description: string;
|
|
60578
|
+
format: string;
|
|
60579
|
+
nullable: boolean;
|
|
60580
|
+
type: string;
|
|
60581
|
+
};
|
|
60582
|
+
starts_at: {
|
|
60583
|
+
description: string;
|
|
60584
|
+
format: string;
|
|
60585
|
+
type: string;
|
|
60586
|
+
};
|
|
60587
|
+
};
|
|
60588
|
+
required: string[];
|
|
60589
|
+
type: string;
|
|
60590
|
+
};
|
|
60485
60591
|
acs_access_group_id: {
|
|
60486
60592
|
description: string;
|
|
60487
60593
|
format: string;
|
|
@@ -75382,6 +75488,24 @@ declare const _default: {
|
|
|
75382
75488
|
type: string;
|
|
75383
75489
|
'x-deprecated': string;
|
|
75384
75490
|
};
|
|
75491
|
+
access_schedule: {
|
|
75492
|
+
description: string;
|
|
75493
|
+
properties: {
|
|
75494
|
+
ends_at: {
|
|
75495
|
+
description: string;
|
|
75496
|
+
format: string;
|
|
75497
|
+
nullable: boolean;
|
|
75498
|
+
type: string;
|
|
75499
|
+
};
|
|
75500
|
+
starts_at: {
|
|
75501
|
+
description: string;
|
|
75502
|
+
format: string;
|
|
75503
|
+
type: string;
|
|
75504
|
+
};
|
|
75505
|
+
};
|
|
75506
|
+
required: string[];
|
|
75507
|
+
type: string;
|
|
75508
|
+
};
|
|
75385
75509
|
acs_access_group_id: {
|
|
75386
75510
|
description: string;
|
|
75387
75511
|
format: string;
|
|
@@ -81293,6 +81417,12 @@ declare const _default: {
|
|
|
81293
81417
|
batch: {
|
|
81294
81418
|
description: string;
|
|
81295
81419
|
properties: {
|
|
81420
|
+
access_methods: {
|
|
81421
|
+
items: {
|
|
81422
|
+
$ref: string;
|
|
81423
|
+
};
|
|
81424
|
+
type: string;
|
|
81425
|
+
};
|
|
81296
81426
|
acs_access_groups: {
|
|
81297
81427
|
items: {
|
|
81298
81428
|
$ref: string;
|
|
@@ -81432,6 +81562,12 @@ declare const _default: {
|
|
|
81432
81562
|
batch: {
|
|
81433
81563
|
description: string;
|
|
81434
81564
|
properties: {
|
|
81565
|
+
access_methods: {
|
|
81566
|
+
items: {
|
|
81567
|
+
$ref: string;
|
|
81568
|
+
};
|
|
81569
|
+
type: string;
|
|
81570
|
+
};
|
|
81435
81571
|
acs_access_groups: {
|
|
81436
81572
|
items: {
|
|
81437
81573
|
$ref: string;
|
|
@@ -137819,8 +137955,8 @@ type Routes = {
|
|
|
137819
137955
|
access_grant_ids?: string[] | undefined;
|
|
137820
137956
|
/** Keys of the access grants that you want to get along with their related resources. */
|
|
137821
137957
|
access_grant_keys?: string[] | undefined;
|
|
137822
|
-
include?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identities' | 'acs_access_groups')[] | undefined;
|
|
137823
|
-
exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identities' | 'acs_access_groups')[] | undefined;
|
|
137958
|
+
include?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identities' | 'acs_access_groups' | 'access_methods')[] | undefined;
|
|
137959
|
+
exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems' | 'user_identities' | 'acs_access_groups' | 'access_methods')[] | undefined;
|
|
137824
137960
|
};
|
|
137825
137961
|
formData: {};
|
|
137826
137962
|
jsonResponse: {
|
|
@@ -139609,8 +139745,114 @@ type Routes = {
|
|
|
139609
139745
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139610
139746
|
warning_code: 'being_deleted';
|
|
139611
139747
|
})[];
|
|
139748
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
139749
|
+
access_schedule?: {
|
|
139750
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
139751
|
+
starts_at: string;
|
|
139752
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
139753
|
+
ends_at: string | null;
|
|
139754
|
+
} | undefined;
|
|
139612
139755
|
is_managed: true;
|
|
139613
139756
|
}[] | undefined;
|
|
139757
|
+
access_methods?: {
|
|
139758
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
139759
|
+
workspace_id: string;
|
|
139760
|
+
/** ID of the access method. */
|
|
139761
|
+
access_method_id: string;
|
|
139762
|
+
/** Display name of the access method. */
|
|
139763
|
+
display_name: string;
|
|
139764
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
139765
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
139766
|
+
/** Date and time at which the access method was created. */
|
|
139767
|
+
created_at: string;
|
|
139768
|
+
/** Date and time at which the access method was issued. */
|
|
139769
|
+
issued_at: string | null;
|
|
139770
|
+
/** Indicates whether the access method has been issued. */
|
|
139771
|
+
is_issued: boolean;
|
|
139772
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
139773
|
+
instant_key_url?: string | undefined;
|
|
139774
|
+
/** Token of the client session associated with the access method. */
|
|
139775
|
+
client_session_token?: string | undefined;
|
|
139776
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
139777
|
+
is_encoding_required?: boolean | undefined;
|
|
139778
|
+
/** The actual PIN code for code access methods. */
|
|
139779
|
+
code?: (string | null) | undefined;
|
|
139780
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
139781
|
+
warnings: ({
|
|
139782
|
+
/** Date and time at which Seam created the warning. */
|
|
139783
|
+
created_at: string;
|
|
139784
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139785
|
+
message: string;
|
|
139786
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139787
|
+
warning_code: 'being_deleted';
|
|
139788
|
+
} | {
|
|
139789
|
+
/** Date and time at which Seam created the warning. */
|
|
139790
|
+
created_at: string;
|
|
139791
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139792
|
+
message: string;
|
|
139793
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139794
|
+
warning_code: 'updating_access_times';
|
|
139795
|
+
})[];
|
|
139796
|
+
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
139797
|
+
pending_mutations: ({
|
|
139798
|
+
/** Date and time at which the mutation was created. */
|
|
139799
|
+
created_at: string;
|
|
139800
|
+
/** Detailed description of the mutation. */
|
|
139801
|
+
message: string;
|
|
139802
|
+
/** Mutation code to indicate that Seam is in the process of provisioning access for this access method on new devices. */
|
|
139803
|
+
mutation_code: 'provisioning_access';
|
|
139804
|
+
/** Previous device configuration. */
|
|
139805
|
+
from: {
|
|
139806
|
+
/** Previous device IDs where access was provisioned. */
|
|
139807
|
+
device_ids: string[];
|
|
139808
|
+
};
|
|
139809
|
+
/** New device configuration. */
|
|
139810
|
+
to: {
|
|
139811
|
+
/** New device IDs where access is being provisioned. */
|
|
139812
|
+
device_ids: string[];
|
|
139813
|
+
};
|
|
139814
|
+
} | {
|
|
139815
|
+
/** Date and time at which the mutation was created. */
|
|
139816
|
+
created_at: string;
|
|
139817
|
+
/** Detailed description of the mutation. */
|
|
139818
|
+
message: string;
|
|
139819
|
+
/** Mutation code to indicate that Seam is in the process of revoking access for this access method from devices. */
|
|
139820
|
+
mutation_code: 'revoking_access';
|
|
139821
|
+
/** Previous device configuration. */
|
|
139822
|
+
from: {
|
|
139823
|
+
/** Previous device IDs where access existed. */
|
|
139824
|
+
device_ids: string[];
|
|
139825
|
+
};
|
|
139826
|
+
/** New device configuration. */
|
|
139827
|
+
to: {
|
|
139828
|
+
/** New device IDs where access should remain. */
|
|
139829
|
+
device_ids: string[];
|
|
139830
|
+
};
|
|
139831
|
+
} | {
|
|
139832
|
+
/** Date and time at which the mutation was created. */
|
|
139833
|
+
created_at: string;
|
|
139834
|
+
/** Detailed description of the mutation. */
|
|
139835
|
+
message: string;
|
|
139836
|
+
/** Mutation code to indicate that Seam is in the process of updating the access times for this access method. */
|
|
139837
|
+
mutation_code: 'updating_access_times';
|
|
139838
|
+
/** Previous access time configuration. */
|
|
139839
|
+
from: {
|
|
139840
|
+
/** Previous start time for access. */
|
|
139841
|
+
starts_at: string | null;
|
|
139842
|
+
/** Previous end time for access. */
|
|
139843
|
+
ends_at: string | null;
|
|
139844
|
+
};
|
|
139845
|
+
/** New access time configuration. */
|
|
139846
|
+
to: {
|
|
139847
|
+
/** New start time for access. */
|
|
139848
|
+
starts_at: string | null;
|
|
139849
|
+
/** New end time for access. */
|
|
139850
|
+
ends_at: string | null;
|
|
139851
|
+
};
|
|
139852
|
+
})[];
|
|
139853
|
+
/** ID of the customization profile associated with the access method. */
|
|
139854
|
+
customization_profile_id?: string | undefined;
|
|
139855
|
+
}[] | undefined;
|
|
139614
139856
|
};
|
|
139615
139857
|
};
|
|
139616
139858
|
maxDuration: undefined;
|
|
@@ -144096,6 +144338,13 @@ type Routes = {
|
|
|
144096
144338
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144097
144339
|
warning_code: 'being_deleted';
|
|
144098
144340
|
})[];
|
|
144341
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
144342
|
+
access_schedule?: {
|
|
144343
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144344
|
+
starts_at: string;
|
|
144345
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144346
|
+
ends_at: string | null;
|
|
144347
|
+
} | undefined;
|
|
144099
144348
|
is_managed: true;
|
|
144100
144349
|
};
|
|
144101
144350
|
};
|
|
@@ -144158,6 +144407,13 @@ type Routes = {
|
|
|
144158
144407
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144159
144408
|
warning_code: 'being_deleted';
|
|
144160
144409
|
})[];
|
|
144410
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
144411
|
+
access_schedule?: {
|
|
144412
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144413
|
+
starts_at: string;
|
|
144414
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144415
|
+
ends_at: string | null;
|
|
144416
|
+
} | undefined;
|
|
144161
144417
|
is_managed: true;
|
|
144162
144418
|
}[];
|
|
144163
144419
|
};
|
|
@@ -144604,6 +144860,13 @@ type Routes = {
|
|
|
144604
144860
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144605
144861
|
warning_code: 'being_deleted';
|
|
144606
144862
|
})[];
|
|
144863
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
144864
|
+
access_schedule?: {
|
|
144865
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144866
|
+
starts_at: string;
|
|
144867
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144868
|
+
ends_at: string | null;
|
|
144869
|
+
} | undefined;
|
|
144607
144870
|
is_managed: false;
|
|
144608
144871
|
};
|
|
144609
144872
|
};
|
|
@@ -144664,6 +144927,13 @@ type Routes = {
|
|
|
144664
144927
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144665
144928
|
warning_code: 'being_deleted';
|
|
144666
144929
|
})[];
|
|
144930
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
144931
|
+
access_schedule?: {
|
|
144932
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144933
|
+
starts_at: string;
|
|
144934
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
144935
|
+
ends_at: string | null;
|
|
144936
|
+
} | undefined;
|
|
144667
144937
|
is_managed: false;
|
|
144668
144938
|
}[];
|
|
144669
144939
|
};
|
|
@@ -213145,6 +213415,13 @@ type Routes = {
|
|
|
213145
213415
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
213146
213416
|
warning_code: 'being_deleted';
|
|
213147
213417
|
})[];
|
|
213418
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
213419
|
+
access_schedule?: {
|
|
213420
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
213421
|
+
starts_at: string;
|
|
213422
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
213423
|
+
ends_at: string | null;
|
|
213424
|
+
} | undefined;
|
|
213148
213425
|
is_managed: true;
|
|
213149
213426
|
}[] | undefined;
|
|
213150
213427
|
acs_encoders?: {
|
|
@@ -214717,6 +214994,13 @@ type Routes = {
|
|
|
214717
214994
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
214718
214995
|
warning_code: 'being_deleted';
|
|
214719
214996
|
})[];
|
|
214997
|
+
/** `starts_at` and `ends_at` timestamps for the access group's access. */
|
|
214998
|
+
access_schedule?: {
|
|
214999
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
215000
|
+
starts_at: string;
|
|
215001
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
215002
|
+
ends_at: string | null;
|
|
215003
|
+
} | undefined;
|
|
214720
215004
|
is_managed: false;
|
|
214721
215005
|
}[] | undefined;
|
|
214722
215006
|
unmanaged_devices?: {
|