@seamapi/types 1.566.0 → 1.567.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.
@@ -4175,6 +4175,7 @@ export declare const spaces_batch: z.ZodObject<{
4175
4175
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
4176
4176
  acs_system_id: z.ZodString;
4177
4177
  acs_entrance_id: z.ZodString;
4178
+ space_ids: z.ZodArray<z.ZodString, "many">;
4178
4179
  created_at: z.ZodString;
4179
4180
  display_name: z.ZodString;
4180
4181
  connected_account_id: z.ZodString;
@@ -4335,8 +4336,6 @@ export declare const spaces_batch: z.ZodObject<{
4335
4336
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
4336
4337
  can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
4337
4338
  can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
4338
- } & {
4339
- space_ids: z.ZodArray<z.ZodString, "many">;
4340
4339
  }, "strip", z.ZodTypeAny, {
4341
4340
  display_name: string;
4342
4341
  created_at: string;
@@ -11044,6 +11043,7 @@ export declare const access_grants_batch: z.ZodObject<{
11044
11043
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
11045
11044
  acs_system_id: z.ZodString;
11046
11045
  acs_entrance_id: z.ZodString;
11046
+ space_ids: z.ZodArray<z.ZodString, "many">;
11047
11047
  created_at: z.ZodString;
11048
11048
  display_name: z.ZodString;
11049
11049
  connected_account_id: z.ZodString;
@@ -11212,6 +11212,7 @@ export declare const access_grants_batch: z.ZodObject<{
11212
11212
  error_code: string;
11213
11213
  }[];
11214
11214
  connected_account_id: string;
11215
+ space_ids: string[];
11215
11216
  acs_system_id: string;
11216
11217
  acs_entrance_id: string;
11217
11218
  salto_ks_metadata?: {
@@ -11276,6 +11277,7 @@ export declare const access_grants_batch: z.ZodObject<{
11276
11277
  error_code: string;
11277
11278
  }[];
11278
11279
  connected_account_id: string;
11280
+ space_ids: string[];
11279
11281
  acs_system_id: string;
11280
11282
  acs_entrance_id: string;
11281
11283
  salto_ks_metadata?: {
@@ -12848,6 +12850,7 @@ export declare const access_grants_batch: z.ZodObject<{
12848
12850
  error_code: string;
12849
12851
  }[];
12850
12852
  connected_account_id: string;
12853
+ space_ids: string[];
12851
12854
  acs_system_id: string;
12852
12855
  acs_entrance_id: string;
12853
12856
  salto_ks_metadata?: {
@@ -13761,6 +13764,7 @@ export declare const access_grants_batch: z.ZodObject<{
13761
13764
  error_code: string;
13762
13765
  }[];
13763
13766
  connected_account_id: string;
13767
+ space_ids: string[];
13764
13768
  acs_system_id: string;
13765
13769
  acs_entrance_id: string;
13766
13770
  salto_ks_metadata?: {
@@ -18172,6 +18176,7 @@ export declare const access_methods_batch: z.ZodObject<{
18172
18176
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
18173
18177
  acs_system_id: z.ZodString;
18174
18178
  acs_entrance_id: z.ZodString;
18179
+ space_ids: z.ZodArray<z.ZodString, "many">;
18175
18180
  created_at: z.ZodString;
18176
18181
  display_name: z.ZodString;
18177
18182
  connected_account_id: z.ZodString;
@@ -18340,6 +18345,7 @@ export declare const access_methods_batch: z.ZodObject<{
18340
18345
  error_code: string;
18341
18346
  }[];
18342
18347
  connected_account_id: string;
18348
+ space_ids: string[];
18343
18349
  acs_system_id: string;
18344
18350
  acs_entrance_id: string;
18345
18351
  salto_ks_metadata?: {
@@ -18404,6 +18410,7 @@ export declare const access_methods_batch: z.ZodObject<{
18404
18410
  error_code: string;
18405
18411
  }[];
18406
18412
  connected_account_id: string;
18413
+ space_ids: string[];
18407
18414
  acs_system_id: string;
18408
18415
  acs_entrance_id: string;
18409
18416
  salto_ks_metadata?: {
@@ -18461,6 +18468,267 @@ export declare const access_methods_batch: z.ZodObject<{
18461
18468
  access_point_name: string;
18462
18469
  } | undefined;
18463
18470
  }>, "many">>;
18471
+ access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
18472
+ workspace_id: z.ZodString;
18473
+ access_grant_id: z.ZodString;
18474
+ access_grant_key: z.ZodOptional<z.ZodString>;
18475
+ user_identity_id: z.ZodString;
18476
+ location_ids: z.ZodArray<z.ZodString, "many">;
18477
+ space_ids: z.ZodArray<z.ZodString, "many">;
18478
+ requested_access_methods: z.ZodArray<z.ZodObject<{
18479
+ display_name: z.ZodString;
18480
+ mode: z.ZodEnum<["code", "card", "mobile_key"]>;
18481
+ code: z.ZodOptional<z.ZodString>;
18482
+ created_at: z.ZodString;
18483
+ created_access_method_ids: z.ZodArray<z.ZodString, "many">;
18484
+ }, "strip", z.ZodTypeAny, {
18485
+ display_name: string;
18486
+ created_at: string;
18487
+ mode: "code" | "card" | "mobile_key";
18488
+ created_access_method_ids: string[];
18489
+ code?: string | undefined;
18490
+ }, {
18491
+ display_name: string;
18492
+ created_at: string;
18493
+ mode: "code" | "card" | "mobile_key";
18494
+ created_access_method_ids: string[];
18495
+ code?: string | undefined;
18496
+ }>, "many">;
18497
+ access_method_ids: z.ZodArray<z.ZodString, "many">;
18498
+ client_session_token: z.ZodOptional<z.ZodString>;
18499
+ name: z.ZodNullable<z.ZodString>;
18500
+ display_name: z.ZodString;
18501
+ instant_key_url: z.ZodOptional<z.ZodString>;
18502
+ created_at: z.ZodString;
18503
+ starts_at: z.ZodString;
18504
+ ends_at: z.ZodNullable<z.ZodString>;
18505
+ warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
18506
+ created_at: z.ZodString;
18507
+ message: z.ZodString;
18508
+ } & {
18509
+ warning_code: z.ZodLiteral<"being_deleted">;
18510
+ }, "strip", z.ZodTypeAny, {
18511
+ message: string;
18512
+ created_at: string;
18513
+ warning_code: "being_deleted";
18514
+ }, {
18515
+ message: string;
18516
+ created_at: string;
18517
+ warning_code: "being_deleted";
18518
+ }>]>, "many">;
18519
+ customization_profile_id: z.ZodOptional<z.ZodString>;
18520
+ }, "strip", z.ZodTypeAny, {
18521
+ name: string | null;
18522
+ display_name: string;
18523
+ workspace_id: string;
18524
+ created_at: string;
18525
+ starts_at: string;
18526
+ ends_at: string | null;
18527
+ warnings: {
18528
+ message: string;
18529
+ created_at: string;
18530
+ warning_code: "being_deleted";
18531
+ }[];
18532
+ access_grant_id: string;
18533
+ user_identity_id: string;
18534
+ location_ids: string[];
18535
+ space_ids: string[];
18536
+ requested_access_methods: {
18537
+ display_name: string;
18538
+ created_at: string;
18539
+ mode: "code" | "card" | "mobile_key";
18540
+ created_access_method_ids: string[];
18541
+ code?: string | undefined;
18542
+ }[];
18543
+ access_method_ids: string[];
18544
+ access_grant_key?: string | undefined;
18545
+ client_session_token?: string | undefined;
18546
+ instant_key_url?: string | undefined;
18547
+ customization_profile_id?: string | undefined;
18548
+ }, {
18549
+ name: string | null;
18550
+ display_name: string;
18551
+ workspace_id: string;
18552
+ created_at: string;
18553
+ starts_at: string;
18554
+ ends_at: string | null;
18555
+ warnings: {
18556
+ message: string;
18557
+ created_at: string;
18558
+ warning_code: "being_deleted";
18559
+ }[];
18560
+ access_grant_id: string;
18561
+ user_identity_id: string;
18562
+ location_ids: string[];
18563
+ space_ids: string[];
18564
+ requested_access_methods: {
18565
+ display_name: string;
18566
+ created_at: string;
18567
+ mode: "code" | "card" | "mobile_key";
18568
+ created_access_method_ids: string[];
18569
+ code?: string | undefined;
18570
+ }[];
18571
+ access_method_ids: string[];
18572
+ access_grant_key?: string | undefined;
18573
+ client_session_token?: string | undefined;
18574
+ instant_key_url?: string | undefined;
18575
+ customization_profile_id?: string | undefined;
18576
+ }>, "many">>;
18577
+ access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
18578
+ workspace_id: z.ZodString;
18579
+ access_method_id: z.ZodString;
18580
+ display_name: z.ZodString;
18581
+ mode: z.ZodEnum<["code", "card", "mobile_key"]>;
18582
+ created_at: z.ZodString;
18583
+ issued_at: z.ZodNullable<z.ZodString>;
18584
+ is_issued: z.ZodBoolean;
18585
+ instant_key_url: z.ZodOptional<z.ZodString>;
18586
+ client_session_token: z.ZodOptional<z.ZodString>;
18587
+ is_encoding_required: z.ZodOptional<z.ZodBoolean>;
18588
+ code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18589
+ warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
18590
+ created_at: z.ZodString;
18591
+ message: z.ZodString;
18592
+ } & {
18593
+ warning_code: z.ZodLiteral<"being_deleted">;
18594
+ }, "strip", z.ZodTypeAny, {
18595
+ message: string;
18596
+ created_at: string;
18597
+ warning_code: "being_deleted";
18598
+ }, {
18599
+ message: string;
18600
+ created_at: string;
18601
+ warning_code: "being_deleted";
18602
+ }>]>, "many">;
18603
+ customization_profile_id: z.ZodOptional<z.ZodString>;
18604
+ }, "strip", z.ZodTypeAny, {
18605
+ display_name: string;
18606
+ workspace_id: string;
18607
+ created_at: string;
18608
+ warnings: {
18609
+ message: string;
18610
+ created_at: string;
18611
+ warning_code: "being_deleted";
18612
+ }[];
18613
+ mode: "code" | "card" | "mobile_key";
18614
+ access_method_id: string;
18615
+ issued_at: string | null;
18616
+ is_issued: boolean;
18617
+ code?: string | null | undefined;
18618
+ client_session_token?: string | undefined;
18619
+ instant_key_url?: string | undefined;
18620
+ customization_profile_id?: string | undefined;
18621
+ is_encoding_required?: boolean | undefined;
18622
+ }, {
18623
+ display_name: string;
18624
+ workspace_id: string;
18625
+ created_at: string;
18626
+ warnings: {
18627
+ message: string;
18628
+ created_at: string;
18629
+ warning_code: "being_deleted";
18630
+ }[];
18631
+ mode: "code" | "card" | "mobile_key";
18632
+ access_method_id: string;
18633
+ issued_at: string | null;
18634
+ is_issued: boolean;
18635
+ code?: string | null | undefined;
18636
+ client_session_token?: string | undefined;
18637
+ instant_key_url?: string | undefined;
18638
+ customization_profile_id?: string | undefined;
18639
+ is_encoding_required?: boolean | undefined;
18640
+ }>, "many">>;
18641
+ instant_keys: z.ZodOptional<z.ZodArray<z.ZodObject<{
18642
+ instant_key_id: z.ZodString;
18643
+ workspace_id: z.ZodString;
18644
+ created_at: z.ZodString;
18645
+ instant_key_url: z.ZodString;
18646
+ client_session_id: z.ZodString;
18647
+ user_identity_id: z.ZodString;
18648
+ expires_at: z.ZodString;
18649
+ customization_profile_id: z.ZodOptional<z.ZodString>;
18650
+ customization: z.ZodOptional<z.ZodObject<{
18651
+ primary_color: z.ZodOptional<z.ZodString>;
18652
+ secondary_color: z.ZodOptional<z.ZodString>;
18653
+ logo_url: z.ZodOptional<z.ZodString>;
18654
+ }, "strip", z.ZodTypeAny, {
18655
+ logo_url?: string | undefined;
18656
+ primary_color?: string | undefined;
18657
+ secondary_color?: string | undefined;
18658
+ }, {
18659
+ logo_url?: string | undefined;
18660
+ primary_color?: string | undefined;
18661
+ secondary_color?: string | undefined;
18662
+ }>>;
18663
+ }, "strip", z.ZodTypeAny, {
18664
+ workspace_id: string;
18665
+ created_at: string;
18666
+ user_identity_id: string;
18667
+ instant_key_url: string;
18668
+ client_session_id: string;
18669
+ expires_at: string;
18670
+ instant_key_id: string;
18671
+ customization_profile_id?: string | undefined;
18672
+ customization?: {
18673
+ logo_url?: string | undefined;
18674
+ primary_color?: string | undefined;
18675
+ secondary_color?: string | undefined;
18676
+ } | undefined;
18677
+ }, {
18678
+ workspace_id: string;
18679
+ created_at: string;
18680
+ user_identity_id: string;
18681
+ instant_key_url: string;
18682
+ client_session_id: string;
18683
+ expires_at: string;
18684
+ instant_key_id: string;
18685
+ customization_profile_id?: string | undefined;
18686
+ customization?: {
18687
+ logo_url?: string | undefined;
18688
+ primary_color?: string | undefined;
18689
+ secondary_color?: string | undefined;
18690
+ } | undefined;
18691
+ }>, "many">>;
18692
+ client_sessions: z.ZodOptional<z.ZodArray<z.ZodObject<{
18693
+ client_session_id: z.ZodString;
18694
+ workspace_id: z.ZodString;
18695
+ created_at: z.ZodString;
18696
+ expires_at: z.ZodString;
18697
+ token: z.ZodString;
18698
+ user_identifier_key: z.ZodNullable<z.ZodString>;
18699
+ device_count: z.ZodNumber;
18700
+ customer_key: z.ZodOptional<z.ZodString>;
18701
+ connected_account_ids: z.ZodArray<z.ZodString, "many">;
18702
+ connect_webview_ids: z.ZodArray<z.ZodString, "many">;
18703
+ user_identity_ids: z.ZodArray<z.ZodString, "many">;
18704
+ user_identity_id: z.ZodOptional<z.ZodString>;
18705
+ }, "strip", z.ZodTypeAny, {
18706
+ workspace_id: string;
18707
+ created_at: string;
18708
+ connected_account_ids: string[];
18709
+ client_session_id: string;
18710
+ expires_at: string;
18711
+ token: string;
18712
+ user_identifier_key: string | null;
18713
+ device_count: number;
18714
+ connect_webview_ids: string[];
18715
+ user_identity_ids: string[];
18716
+ customer_key?: string | undefined;
18717
+ user_identity_id?: string | undefined;
18718
+ }, {
18719
+ workspace_id: string;
18720
+ created_at: string;
18721
+ connected_account_ids: string[];
18722
+ client_session_id: string;
18723
+ expires_at: string;
18724
+ token: string;
18725
+ user_identifier_key: string | null;
18726
+ device_count: number;
18727
+ connect_webview_ids: string[];
18728
+ user_identity_ids: string[];
18729
+ customer_key?: string | undefined;
18730
+ user_identity_id?: string | undefined;
18731
+ }>, "many">>;
18464
18732
  }, "strip", z.ZodTypeAny, {
18465
18733
  batch_type: "access_methods";
18466
18734
  spaces?: {
@@ -19136,6 +19404,7 @@ export declare const access_methods_batch: z.ZodObject<{
19136
19404
  error_code: string;
19137
19405
  }[];
19138
19406
  connected_account_id: string;
19407
+ space_ids: string[];
19139
19408
  acs_system_id: string;
19140
19409
  acs_entrance_id: string;
19141
19410
  salto_ks_metadata?: {
@@ -19193,6 +19462,83 @@ export declare const access_methods_batch: z.ZodObject<{
19193
19462
  access_point_name: string;
19194
19463
  } | undefined;
19195
19464
  }[] | undefined;
19465
+ access_grants?: {
19466
+ name: string | null;
19467
+ display_name: string;
19468
+ workspace_id: string;
19469
+ created_at: string;
19470
+ starts_at: string;
19471
+ ends_at: string | null;
19472
+ warnings: {
19473
+ message: string;
19474
+ created_at: string;
19475
+ warning_code: "being_deleted";
19476
+ }[];
19477
+ access_grant_id: string;
19478
+ user_identity_id: string;
19479
+ location_ids: string[];
19480
+ space_ids: string[];
19481
+ requested_access_methods: {
19482
+ display_name: string;
19483
+ created_at: string;
19484
+ mode: "code" | "card" | "mobile_key";
19485
+ created_access_method_ids: string[];
19486
+ code?: string | undefined;
19487
+ }[];
19488
+ access_method_ids: string[];
19489
+ access_grant_key?: string | undefined;
19490
+ client_session_token?: string | undefined;
19491
+ instant_key_url?: string | undefined;
19492
+ customization_profile_id?: string | undefined;
19493
+ }[] | undefined;
19494
+ access_methods?: {
19495
+ display_name: string;
19496
+ workspace_id: string;
19497
+ created_at: string;
19498
+ warnings: {
19499
+ message: string;
19500
+ created_at: string;
19501
+ warning_code: "being_deleted";
19502
+ }[];
19503
+ mode: "code" | "card" | "mobile_key";
19504
+ access_method_id: string;
19505
+ issued_at: string | null;
19506
+ is_issued: boolean;
19507
+ code?: string | null | undefined;
19508
+ client_session_token?: string | undefined;
19509
+ instant_key_url?: string | undefined;
19510
+ customization_profile_id?: string | undefined;
19511
+ is_encoding_required?: boolean | undefined;
19512
+ }[] | undefined;
19513
+ instant_keys?: {
19514
+ workspace_id: string;
19515
+ created_at: string;
19516
+ user_identity_id: string;
19517
+ instant_key_url: string;
19518
+ client_session_id: string;
19519
+ expires_at: string;
19520
+ instant_key_id: string;
19521
+ customization_profile_id?: string | undefined;
19522
+ customization?: {
19523
+ logo_url?: string | undefined;
19524
+ primary_color?: string | undefined;
19525
+ secondary_color?: string | undefined;
19526
+ } | undefined;
19527
+ }[] | undefined;
19528
+ client_sessions?: {
19529
+ workspace_id: string;
19530
+ created_at: string;
19531
+ connected_account_ids: string[];
19532
+ client_session_id: string;
19533
+ expires_at: string;
19534
+ token: string;
19535
+ user_identifier_key: string | null;
19536
+ device_count: number;
19537
+ connect_webview_ids: string[];
19538
+ user_identity_ids: string[];
19539
+ customer_key?: string | undefined;
19540
+ user_identity_id?: string | undefined;
19541
+ }[] | undefined;
19196
19542
  }, {
19197
19543
  batch_type: "access_methods";
19198
19544
  spaces?: {
@@ -19868,6 +20214,7 @@ export declare const access_methods_batch: z.ZodObject<{
19868
20214
  error_code: string;
19869
20215
  }[];
19870
20216
  connected_account_id: string;
20217
+ space_ids: string[];
19871
20218
  acs_system_id: string;
19872
20219
  acs_entrance_id: string;
19873
20220
  salto_ks_metadata?: {
@@ -19925,6 +20272,83 @@ export declare const access_methods_batch: z.ZodObject<{
19925
20272
  access_point_name: string;
19926
20273
  } | undefined;
19927
20274
  }[] | undefined;
20275
+ access_grants?: {
20276
+ name: string | null;
20277
+ display_name: string;
20278
+ workspace_id: string;
20279
+ created_at: string;
20280
+ starts_at: string;
20281
+ ends_at: string | null;
20282
+ warnings: {
20283
+ message: string;
20284
+ created_at: string;
20285
+ warning_code: "being_deleted";
20286
+ }[];
20287
+ access_grant_id: string;
20288
+ user_identity_id: string;
20289
+ location_ids: string[];
20290
+ space_ids: string[];
20291
+ requested_access_methods: {
20292
+ display_name: string;
20293
+ created_at: string;
20294
+ mode: "code" | "card" | "mobile_key";
20295
+ created_access_method_ids: string[];
20296
+ code?: string | undefined;
20297
+ }[];
20298
+ access_method_ids: string[];
20299
+ access_grant_key?: string | undefined;
20300
+ client_session_token?: string | undefined;
20301
+ instant_key_url?: string | undefined;
20302
+ customization_profile_id?: string | undefined;
20303
+ }[] | undefined;
20304
+ access_methods?: {
20305
+ display_name: string;
20306
+ workspace_id: string;
20307
+ created_at: string;
20308
+ warnings: {
20309
+ message: string;
20310
+ created_at: string;
20311
+ warning_code: "being_deleted";
20312
+ }[];
20313
+ mode: "code" | "card" | "mobile_key";
20314
+ access_method_id: string;
20315
+ issued_at: string | null;
20316
+ is_issued: boolean;
20317
+ code?: string | null | undefined;
20318
+ client_session_token?: string | undefined;
20319
+ instant_key_url?: string | undefined;
20320
+ customization_profile_id?: string | undefined;
20321
+ is_encoding_required?: boolean | undefined;
20322
+ }[] | undefined;
20323
+ instant_keys?: {
20324
+ workspace_id: string;
20325
+ created_at: string;
20326
+ user_identity_id: string;
20327
+ instant_key_url: string;
20328
+ client_session_id: string;
20329
+ expires_at: string;
20330
+ instant_key_id: string;
20331
+ customization_profile_id?: string | undefined;
20332
+ customization?: {
20333
+ logo_url?: string | undefined;
20334
+ primary_color?: string | undefined;
20335
+ secondary_color?: string | undefined;
20336
+ } | undefined;
20337
+ }[] | undefined;
20338
+ client_sessions?: {
20339
+ workspace_id: string;
20340
+ created_at: string;
20341
+ connected_account_ids: string[];
20342
+ client_session_id: string;
20343
+ expires_at: string;
20344
+ token: string;
20345
+ user_identifier_key: string | null;
20346
+ device_count: number;
20347
+ connect_webview_ids: string[];
20348
+ user_identity_ids: string[];
20349
+ customer_key?: string | undefined;
20350
+ user_identity_id?: string | undefined;
20351
+ }[] | undefined;
19928
20352
  }>;
19929
20353
  export declare const workspaces_batch: z.ZodObject<{
19930
20354
  batch_type: z.ZodLiteral<"workspaces">;
@@ -24269,6 +24693,7 @@ export declare const workspaces_batch: z.ZodObject<{
24269
24693
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
24270
24694
  acs_system_id: z.ZodString;
24271
24695
  acs_entrance_id: z.ZodString;
24696
+ space_ids: z.ZodArray<z.ZodString, "many">;
24272
24697
  created_at: z.ZodString;
24273
24698
  display_name: z.ZodString;
24274
24699
  connected_account_id: z.ZodString;
@@ -24437,6 +24862,7 @@ export declare const workspaces_batch: z.ZodObject<{
24437
24862
  error_code: string;
24438
24863
  }[];
24439
24864
  connected_account_id: string;
24865
+ space_ids: string[];
24440
24866
  acs_system_id: string;
24441
24867
  acs_entrance_id: string;
24442
24868
  salto_ks_metadata?: {
@@ -24501,6 +24927,7 @@ export declare const workspaces_batch: z.ZodObject<{
24501
24927
  error_code: string;
24502
24928
  }[];
24503
24929
  connected_account_id: string;
24930
+ space_ids: string[];
24504
24931
  acs_system_id: string;
24505
24932
  acs_entrance_id: string;
24506
24933
  salto_ks_metadata?: {
@@ -41681,6 +42108,7 @@ export declare const workspaces_batch: z.ZodObject<{
41681
42108
  error_code: string;
41682
42109
  }[];
41683
42110
  connected_account_id: string;
42111
+ space_ids: string[];
41684
42112
  acs_system_id: string;
41685
42113
  acs_entrance_id: string;
41686
42114
  salto_ks_metadata?: {
@@ -41967,6 +42395,35 @@ export declare const workspaces_batch: z.ZodObject<{
41967
42395
  customization_profile_id?: string | undefined;
41968
42396
  is_encoding_required?: boolean | undefined;
41969
42397
  }[] | undefined;
42398
+ instant_keys?: {
42399
+ workspace_id: string;
42400
+ created_at: string;
42401
+ user_identity_id: string;
42402
+ instant_key_url: string;
42403
+ client_session_id: string;
42404
+ expires_at: string;
42405
+ instant_key_id: string;
42406
+ customization_profile_id?: string | undefined;
42407
+ customization?: {
42408
+ logo_url?: string | undefined;
42409
+ primary_color?: string | undefined;
42410
+ secondary_color?: string | undefined;
42411
+ } | undefined;
42412
+ }[] | undefined;
42413
+ client_sessions?: {
42414
+ workspace_id: string;
42415
+ created_at: string;
42416
+ connected_account_ids: string[];
42417
+ client_session_id: string;
42418
+ expires_at: string;
42419
+ token: string;
42420
+ user_identifier_key: string | null;
42421
+ device_count: number;
42422
+ connect_webview_ids: string[];
42423
+ user_identity_ids: string[];
42424
+ customer_key?: string | undefined;
42425
+ user_identity_id?: string | undefined;
42426
+ }[] | undefined;
41970
42427
  workspaces?: {
41971
42428
  name: string;
41972
42429
  workspace_id: string;
@@ -42986,20 +43443,6 @@ export declare const workspaces_batch: z.ZodObject<{
42986
43443
  result: null;
42987
43444
  action_type: "UNLOCK_DOOR";
42988
43445
  })[] | undefined;
42989
- client_sessions?: {
42990
- workspace_id: string;
42991
- created_at: string;
42992
- connected_account_ids: string[];
42993
- client_session_id: string;
42994
- expires_at: string;
42995
- token: string;
42996
- user_identifier_key: string | null;
42997
- device_count: number;
42998
- connect_webview_ids: string[];
42999
- user_identity_ids: string[];
43000
- customer_key?: string | undefined;
43001
- user_identity_id?: string | undefined;
43002
- }[] | undefined;
43003
43446
  unmanaged_acs_users?: {
43004
43447
  display_name: string;
43005
43448
  workspace_id: string;
@@ -44323,21 +44766,6 @@ export declare const workspaces_batch: z.ZodObject<{
44323
44766
  event_type: "phone.deactivated";
44324
44767
  device_custom_metadata?: Record<string, string | boolean> | undefined;
44325
44768
  })[] | undefined;
44326
- instant_keys?: {
44327
- workspace_id: string;
44328
- created_at: string;
44329
- user_identity_id: string;
44330
- instant_key_url: string;
44331
- client_session_id: string;
44332
- expires_at: string;
44333
- instant_key_id: string;
44334
- customization_profile_id?: string | undefined;
44335
- customization?: {
44336
- logo_url?: string | undefined;
44337
- primary_color?: string | undefined;
44338
- secondary_color?: string | undefined;
44339
- } | undefined;
44340
- }[] | undefined;
44341
44769
  access_codes?: {
44342
44770
  code: string | null;
44343
44771
  type: "time_bound" | "ongoing";
@@ -45649,6 +46077,7 @@ export declare const workspaces_batch: z.ZodObject<{
45649
46077
  error_code: string;
45650
46078
  }[];
45651
46079
  connected_account_id: string;
46080
+ space_ids: string[];
45652
46081
  acs_system_id: string;
45653
46082
  acs_entrance_id: string;
45654
46083
  salto_ks_metadata?: {
@@ -45935,6 +46364,35 @@ export declare const workspaces_batch: z.ZodObject<{
45935
46364
  customization_profile_id?: string | undefined;
45936
46365
  is_encoding_required?: boolean | undefined;
45937
46366
  }[] | undefined;
46367
+ instant_keys?: {
46368
+ workspace_id: string;
46369
+ created_at: string;
46370
+ user_identity_id: string;
46371
+ instant_key_url: string;
46372
+ client_session_id: string;
46373
+ expires_at: string;
46374
+ instant_key_id: string;
46375
+ customization_profile_id?: string | undefined;
46376
+ customization?: {
46377
+ logo_url?: string | undefined;
46378
+ primary_color?: string | undefined;
46379
+ secondary_color?: string | undefined;
46380
+ } | undefined;
46381
+ }[] | undefined;
46382
+ client_sessions?: {
46383
+ workspace_id: string;
46384
+ created_at: string;
46385
+ connected_account_ids: string[];
46386
+ client_session_id: string;
46387
+ expires_at: string;
46388
+ token: string;
46389
+ user_identifier_key: string | null;
46390
+ device_count: number;
46391
+ connect_webview_ids: string[];
46392
+ user_identity_ids: string[];
46393
+ customer_key?: string | undefined;
46394
+ user_identity_id?: string | undefined;
46395
+ }[] | undefined;
45938
46396
  workspaces?: {
45939
46397
  name: string;
45940
46398
  workspace_id: string;
@@ -46954,20 +47412,6 @@ export declare const workspaces_batch: z.ZodObject<{
46954
47412
  result: null;
46955
47413
  action_type: "UNLOCK_DOOR";
46956
47414
  })[] | undefined;
46957
- client_sessions?: {
46958
- workspace_id: string;
46959
- created_at: string;
46960
- connected_account_ids: string[];
46961
- client_session_id: string;
46962
- expires_at: string;
46963
- token: string;
46964
- user_identifier_key: string | null;
46965
- device_count: number;
46966
- connect_webview_ids: string[];
46967
- user_identity_ids: string[];
46968
- customer_key?: string | undefined;
46969
- user_identity_id?: string | undefined;
46970
- }[] | undefined;
46971
47415
  unmanaged_acs_users?: {
46972
47416
  display_name: string;
46973
47417
  workspace_id: string;
@@ -48291,21 +48735,6 @@ export declare const workspaces_batch: z.ZodObject<{
48291
48735
  event_type: "phone.deactivated";
48292
48736
  device_custom_metadata?: Record<string, string | boolean> | undefined;
48293
48737
  })[] | undefined;
48294
- instant_keys?: {
48295
- workspace_id: string;
48296
- created_at: string;
48297
- user_identity_id: string;
48298
- instant_key_url: string;
48299
- client_session_id: string;
48300
- expires_at: string;
48301
- instant_key_id: string;
48302
- customization_profile_id?: string | undefined;
48303
- customization?: {
48304
- logo_url?: string | undefined;
48305
- primary_color?: string | undefined;
48306
- secondary_color?: string | undefined;
48307
- } | undefined;
48308
- }[] | undefined;
48309
48738
  access_codes?: {
48310
48739
  code: string | null;
48311
48740
  type: "time_bound" | "ongoing";
@@ -53275,6 +53704,7 @@ export declare const batch: z.ZodObject<{
53275
53704
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
53276
53705
  acs_system_id: z.ZodString;
53277
53706
  acs_entrance_id: z.ZodString;
53707
+ space_ids: z.ZodArray<z.ZodString, "many">;
53278
53708
  created_at: z.ZodString;
53279
53709
  display_name: z.ZodString;
53280
53710
  connected_account_id: z.ZodString;
@@ -53443,6 +53873,7 @@ export declare const batch: z.ZodObject<{
53443
53873
  error_code: string;
53444
53874
  }[];
53445
53875
  connected_account_id: string;
53876
+ space_ids: string[];
53446
53877
  acs_system_id: string;
53447
53878
  acs_entrance_id: string;
53448
53879
  salto_ks_metadata?: {
@@ -53507,6 +53938,7 @@ export declare const batch: z.ZodObject<{
53507
53938
  error_code: string;
53508
53939
  }[];
53509
53940
  connected_account_id: string;
53941
+ space_ids: string[];
53510
53942
  acs_system_id: string;
53511
53943
  acs_entrance_id: string;
53512
53944
  salto_ks_metadata?: {
@@ -70315,6 +70747,7 @@ export declare const batch: z.ZodObject<{
70315
70747
  error_code: string;
70316
70748
  }[];
70317
70749
  connected_account_id: string;
70750
+ space_ids: string[];
70318
70751
  acs_system_id: string;
70319
70752
  acs_entrance_id: string;
70320
70753
  salto_ks_metadata?: {
@@ -70532,6 +70965,35 @@ export declare const batch: z.ZodObject<{
70532
70965
  customization_profile_id?: string | undefined;
70533
70966
  is_encoding_required?: boolean | undefined;
70534
70967
  }[] | undefined;
70968
+ instant_keys?: {
70969
+ workspace_id: string;
70970
+ created_at: string;
70971
+ user_identity_id: string;
70972
+ instant_key_url: string;
70973
+ client_session_id: string;
70974
+ expires_at: string;
70975
+ instant_key_id: string;
70976
+ customization_profile_id?: string | undefined;
70977
+ customization?: {
70978
+ logo_url?: string | undefined;
70979
+ primary_color?: string | undefined;
70980
+ secondary_color?: string | undefined;
70981
+ } | undefined;
70982
+ }[] | undefined;
70983
+ client_sessions?: {
70984
+ workspace_id: string;
70985
+ created_at: string;
70986
+ connected_account_ids: string[];
70987
+ client_session_id: string;
70988
+ expires_at: string;
70989
+ token: string;
70990
+ user_identifier_key: string | null;
70991
+ device_count: number;
70992
+ connect_webview_ids: string[];
70993
+ user_identity_ids: string[];
70994
+ customer_key?: string | undefined;
70995
+ user_identity_id?: string | undefined;
70996
+ }[] | undefined;
70535
70997
  workspaces?: {
70536
70998
  name: string;
70537
70999
  workspace_id: string;
@@ -71551,20 +72013,6 @@ export declare const batch: z.ZodObject<{
71551
72013
  result: null;
71552
72014
  action_type: "UNLOCK_DOOR";
71553
72015
  })[] | undefined;
71554
- client_sessions?: {
71555
- workspace_id: string;
71556
- created_at: string;
71557
- connected_account_ids: string[];
71558
- client_session_id: string;
71559
- expires_at: string;
71560
- token: string;
71561
- user_identifier_key: string | null;
71562
- device_count: number;
71563
- connect_webview_ids: string[];
71564
- user_identity_ids: string[];
71565
- customer_key?: string | undefined;
71566
- user_identity_id?: string | undefined;
71567
- }[] | undefined;
71568
72016
  unmanaged_acs_users?: {
71569
72017
  display_name: string;
71570
72018
  workspace_id: string;
@@ -72888,21 +73336,6 @@ export declare const batch: z.ZodObject<{
72888
73336
  event_type: "phone.deactivated";
72889
73337
  device_custom_metadata?: Record<string, string | boolean> | undefined;
72890
73338
  })[] | undefined;
72891
- instant_keys?: {
72892
- workspace_id: string;
72893
- created_at: string;
72894
- user_identity_id: string;
72895
- instant_key_url: string;
72896
- client_session_id: string;
72897
- expires_at: string;
72898
- instant_key_id: string;
72899
- customization_profile_id?: string | undefined;
72900
- customization?: {
72901
- logo_url?: string | undefined;
72902
- primary_color?: string | undefined;
72903
- secondary_color?: string | undefined;
72904
- } | undefined;
72905
- }[] | undefined;
72906
73339
  access_codes?: {
72907
73340
  code: string | null;
72908
73341
  type: "time_bound" | "ongoing";
@@ -74214,6 +74647,7 @@ export declare const batch: z.ZodObject<{
74214
74647
  error_code: string;
74215
74648
  }[];
74216
74649
  connected_account_id: string;
74650
+ space_ids: string[];
74217
74651
  acs_system_id: string;
74218
74652
  acs_entrance_id: string;
74219
74653
  salto_ks_metadata?: {
@@ -74431,6 +74865,35 @@ export declare const batch: z.ZodObject<{
74431
74865
  customization_profile_id?: string | undefined;
74432
74866
  is_encoding_required?: boolean | undefined;
74433
74867
  }[] | undefined;
74868
+ instant_keys?: {
74869
+ workspace_id: string;
74870
+ created_at: string;
74871
+ user_identity_id: string;
74872
+ instant_key_url: string;
74873
+ client_session_id: string;
74874
+ expires_at: string;
74875
+ instant_key_id: string;
74876
+ customization_profile_id?: string | undefined;
74877
+ customization?: {
74878
+ logo_url?: string | undefined;
74879
+ primary_color?: string | undefined;
74880
+ secondary_color?: string | undefined;
74881
+ } | undefined;
74882
+ }[] | undefined;
74883
+ client_sessions?: {
74884
+ workspace_id: string;
74885
+ created_at: string;
74886
+ connected_account_ids: string[];
74887
+ client_session_id: string;
74888
+ expires_at: string;
74889
+ token: string;
74890
+ user_identifier_key: string | null;
74891
+ device_count: number;
74892
+ connect_webview_ids: string[];
74893
+ user_identity_ids: string[];
74894
+ customer_key?: string | undefined;
74895
+ user_identity_id?: string | undefined;
74896
+ }[] | undefined;
74434
74897
  workspaces?: {
74435
74898
  name: string;
74436
74899
  workspace_id: string;
@@ -75450,20 +75913,6 @@ export declare const batch: z.ZodObject<{
75450
75913
  result: null;
75451
75914
  action_type: "UNLOCK_DOOR";
75452
75915
  })[] | undefined;
75453
- client_sessions?: {
75454
- workspace_id: string;
75455
- created_at: string;
75456
- connected_account_ids: string[];
75457
- client_session_id: string;
75458
- expires_at: string;
75459
- token: string;
75460
- user_identifier_key: string | null;
75461
- device_count: number;
75462
- connect_webview_ids: string[];
75463
- user_identity_ids: string[];
75464
- customer_key?: string | undefined;
75465
- user_identity_id?: string | undefined;
75466
- }[] | undefined;
75467
75916
  unmanaged_acs_users?: {
75468
75917
  display_name: string;
75469
75918
  workspace_id: string;
@@ -76787,21 +77236,6 @@ export declare const batch: z.ZodObject<{
76787
77236
  event_type: "phone.deactivated";
76788
77237
  device_custom_metadata?: Record<string, string | boolean> | undefined;
76789
77238
  })[] | undefined;
76790
- instant_keys?: {
76791
- workspace_id: string;
76792
- created_at: string;
76793
- user_identity_id: string;
76794
- instant_key_url: string;
76795
- client_session_id: string;
76796
- expires_at: string;
76797
- instant_key_id: string;
76798
- customization_profile_id?: string | undefined;
76799
- customization?: {
76800
- logo_url?: string | undefined;
76801
- primary_color?: string | undefined;
76802
- secondary_color?: string | undefined;
76803
- } | undefined;
76804
- }[] | undefined;
76805
77239
  access_codes?: {
76806
77240
  code: string | null;
76807
77241
  type: "time_bound" | "ongoing";