@seamapi/types 1.727.0 → 1.729.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.
@@ -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;
@@ -112324,6 +112448,9 @@ declare const _default: {
112324
112448
  nullable: boolean;
112325
112449
  type: string;
112326
112450
  };
112451
+ is_resource_syncing: {
112452
+ type: string;
112453
+ };
112327
112454
  name: {
112328
112455
  nullable: boolean;
112329
112456
  type: string;
@@ -112478,6 +112605,9 @@ declare const _default: {
112478
112605
  nullable: boolean;
112479
112606
  type: string;
112480
112607
  };
112608
+ is_resource_syncing: {
112609
+ type: string;
112610
+ };
112481
112611
  name: {
112482
112612
  nullable: boolean;
112483
112613
  type: string;
@@ -112702,6 +112832,9 @@ declare const _default: {
112702
112832
  nullable: boolean;
112703
112833
  type: string;
112704
112834
  };
112835
+ is_resource_syncing: {
112836
+ type: string;
112837
+ };
112705
112838
  name: {
112706
112839
  nullable: boolean;
112707
112840
  type: string;
@@ -112939,6 +113072,9 @@ declare const _default: {
112939
113072
  nullable: boolean;
112940
113073
  type: string;
112941
113074
  };
113075
+ is_resource_syncing: {
113076
+ type: string;
113077
+ };
112942
113078
  name: {
112943
113079
  nullable: boolean;
112944
113080
  type: string;
@@ -139621,6 +139757,13 @@ type Routes = {
139621
139757
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139622
139758
  warning_code: 'being_deleted';
139623
139759
  })[];
139760
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
139761
+ access_schedule?: {
139762
+ /** 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. */
139763
+ starts_at: string;
139764
+ /** 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. */
139765
+ ends_at: string | null;
139766
+ } | undefined;
139624
139767
  is_managed: true;
139625
139768
  }[] | undefined;
139626
139769
  access_methods?: {
@@ -144207,6 +144350,13 @@ type Routes = {
144207
144350
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144208
144351
  warning_code: 'being_deleted';
144209
144352
  })[];
144353
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
144354
+ access_schedule?: {
144355
+ /** 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. */
144356
+ starts_at: string;
144357
+ /** 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. */
144358
+ ends_at: string | null;
144359
+ } | undefined;
144210
144360
  is_managed: true;
144211
144361
  };
144212
144362
  };
@@ -144269,6 +144419,13 @@ type Routes = {
144269
144419
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144270
144420
  warning_code: 'being_deleted';
144271
144421
  })[];
144422
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
144423
+ access_schedule?: {
144424
+ /** 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. */
144425
+ starts_at: string;
144426
+ /** 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. */
144427
+ ends_at: string | null;
144428
+ } | undefined;
144272
144429
  is_managed: true;
144273
144430
  }[];
144274
144431
  };
@@ -144715,6 +144872,13 @@ type Routes = {
144715
144872
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144716
144873
  warning_code: 'being_deleted';
144717
144874
  })[];
144875
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
144876
+ access_schedule?: {
144877
+ /** 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. */
144878
+ starts_at: string;
144879
+ /** 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. */
144880
+ ends_at: string | null;
144881
+ } | undefined;
144718
144882
  is_managed: false;
144719
144883
  };
144720
144884
  };
@@ -144775,6 +144939,13 @@ type Routes = {
144775
144939
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144776
144940
  warning_code: 'being_deleted';
144777
144941
  })[];
144942
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
144943
+ access_schedule?: {
144944
+ /** 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. */
144945
+ starts_at: string;
144946
+ /** 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. */
144947
+ ends_at: string | null;
144948
+ } | undefined;
144778
144949
  is_managed: false;
144779
144950
  }[];
144780
144951
  };
@@ -188097,6 +188268,7 @@ type Routes = {
188097
188268
  starts_at: string | null;
188098
188269
  ends_at: string | null;
188099
188270
  created_at: string;
188271
+ is_resource_syncing: boolean;
188100
188272
  guest_name: string | null;
188101
188273
  spaces: {
188102
188274
  space_id: string | null;
@@ -188145,6 +188317,7 @@ type Routes = {
188145
188317
  starts_at: string | null;
188146
188318
  ends_at: string | null;
188147
188319
  created_at: string;
188320
+ is_resource_syncing: boolean;
188148
188321
  guest_name: string | null;
188149
188322
  warnings: {
188150
188323
  warning_code: string;
@@ -213256,6 +213429,13 @@ type Routes = {
213256
213429
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
213257
213430
  warning_code: 'being_deleted';
213258
213431
  })[];
213432
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
213433
+ access_schedule?: {
213434
+ /** 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. */
213435
+ starts_at: string;
213436
+ /** 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. */
213437
+ ends_at: string | null;
213438
+ } | undefined;
213259
213439
  is_managed: true;
213260
213440
  }[] | undefined;
213261
213441
  acs_encoders?: {
@@ -214828,6 +215008,13 @@ type Routes = {
214828
215008
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
214829
215009
  warning_code: 'being_deleted';
214830
215010
  })[];
215011
+ /** `starts_at` and `ends_at` timestamps for the access group's access. */
215012
+ access_schedule?: {
215013
+ /** 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. */
215014
+ starts_at: string;
215015
+ /** 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. */
215016
+ ends_at: string | null;
215017
+ } | undefined;
214831
215018
  is_managed: false;
214832
215019
  }[] | undefined;
214833
215020
  unmanaged_devices?: {