@seamapi/types 1.413.0 → 1.414.1

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.
@@ -21499,10 +21499,43 @@ declare const user_identity: z.ZodObject<{
21499
21499
  full_name: z.ZodNullable<z.ZodString>;
21500
21500
  created_at: z.ZodString;
21501
21501
  workspace_id: z.ZodString;
21502
+ errors: z.ZodArray<z.ZodObject<{
21503
+ created_at: z.ZodString;
21504
+ message: z.ZodString;
21505
+ }, "strip", z.ZodTypeAny, {
21506
+ message: string;
21507
+ created_at: string;
21508
+ }, {
21509
+ message: string;
21510
+ created_at: string;
21511
+ }>, "many">;
21512
+ warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
21513
+ created_at: z.ZodString;
21514
+ message: z.ZodString;
21515
+ }, {
21516
+ warning_code: z.ZodLiteral<"being_deleted">;
21517
+ }>, "strip", z.ZodTypeAny, {
21518
+ message: string;
21519
+ created_at: string;
21520
+ warning_code: "being_deleted";
21521
+ }, {
21522
+ message: string;
21523
+ created_at: string;
21524
+ warning_code: "being_deleted";
21525
+ }>]>, "many">;
21502
21526
  }, "strip", z.ZodTypeAny, {
21503
21527
  display_name: string;
21504
21528
  workspace_id: string;
21505
21529
  created_at: string;
21530
+ errors: {
21531
+ message: string;
21532
+ created_at: string;
21533
+ }[];
21534
+ warnings: {
21535
+ message: string;
21536
+ created_at: string;
21537
+ warning_code: "being_deleted";
21538
+ }[];
21506
21539
  user_identity_id: string;
21507
21540
  email_address: string | null;
21508
21541
  full_name: string | null;
@@ -21512,6 +21545,15 @@ declare const user_identity: z.ZodObject<{
21512
21545
  display_name: string;
21513
21546
  workspace_id: string;
21514
21547
  created_at: string;
21548
+ errors: {
21549
+ message: string;
21550
+ created_at: string;
21551
+ }[];
21552
+ warnings: {
21553
+ message: string;
21554
+ created_at: string;
21555
+ warning_code: "being_deleted";
21556
+ }[];
21515
21557
  user_identity_id: string;
21516
21558
  email_address: string | null;
21517
21559
  full_name: string | null;
@@ -24611,6 +24653,177 @@ declare const _default: {
24611
24653
  })[];
24612
24654
  'x-route-path': string;
24613
24655
  };
24656
+ bridge_client_session: {
24657
+ properties: {
24658
+ bridge_client_machine_identifier_key: {
24659
+ type: string;
24660
+ };
24661
+ bridge_client_name: {
24662
+ type: string;
24663
+ };
24664
+ bridge_client_session_id: {
24665
+ format: string;
24666
+ type: string;
24667
+ };
24668
+ bridge_client_session_token: {
24669
+ type: string;
24670
+ };
24671
+ bridge_client_time_zone: {
24672
+ type: string;
24673
+ };
24674
+ created_at: {
24675
+ format: string;
24676
+ type: string;
24677
+ };
24678
+ errors: {
24679
+ items: {
24680
+ description: string;
24681
+ discriminator: {
24682
+ propertyName: string;
24683
+ };
24684
+ oneOf: ({
24685
+ description: string;
24686
+ properties: {
24687
+ can_tailscale_proxy_reach_bridge: {
24688
+ description: string;
24689
+ nullable: boolean;
24690
+ type: string;
24691
+ };
24692
+ can_tailscale_proxy_reach_tailscale_network: {
24693
+ description: string;
24694
+ nullable: boolean;
24695
+ type: string;
24696
+ };
24697
+ created_at: {
24698
+ format: string;
24699
+ type: string;
24700
+ };
24701
+ error_code: {
24702
+ description: string;
24703
+ enum: string[];
24704
+ type: string;
24705
+ };
24706
+ is_bridge_socks_server_healthy: {
24707
+ description: string;
24708
+ nullable: boolean;
24709
+ type: string;
24710
+ };
24711
+ is_tailscale_proxy_reachable: {
24712
+ description: string;
24713
+ nullable: boolean;
24714
+ type: string;
24715
+ };
24716
+ is_tailscale_proxy_socks_server_healthy: {
24717
+ description: string;
24718
+ nullable: boolean;
24719
+ type: string;
24720
+ };
24721
+ message: {
24722
+ type: string;
24723
+ };
24724
+ };
24725
+ required: string[];
24726
+ type: string;
24727
+ } | {
24728
+ description: string;
24729
+ properties: {
24730
+ created_at: {
24731
+ format: string;
24732
+ type: string;
24733
+ };
24734
+ error_code: {
24735
+ description: string;
24736
+ enum: string[];
24737
+ type: string;
24738
+ };
24739
+ message: {
24740
+ type: string;
24741
+ };
24742
+ can_tailscale_proxy_reach_bridge?: never;
24743
+ can_tailscale_proxy_reach_tailscale_network?: never;
24744
+ is_bridge_socks_server_healthy?: never;
24745
+ is_tailscale_proxy_reachable?: never;
24746
+ is_tailscale_proxy_socks_server_healthy?: never;
24747
+ };
24748
+ required: string[];
24749
+ type: string;
24750
+ })[];
24751
+ };
24752
+ type: string;
24753
+ };
24754
+ pairing_code: {
24755
+ maxLength: number;
24756
+ minLength: number;
24757
+ type: string;
24758
+ };
24759
+ pairing_code_expires_at: {
24760
+ format: string;
24761
+ type: string;
24762
+ };
24763
+ tailscale_auth_key: {
24764
+ nullable: boolean;
24765
+ type: string;
24766
+ };
24767
+ tailscale_hostname: {
24768
+ type: string;
24769
+ };
24770
+ telemetry_token: {
24771
+ nullable: boolean;
24772
+ type: string;
24773
+ };
24774
+ telemetry_token_expires_at: {
24775
+ format: string;
24776
+ nullable: boolean;
24777
+ type: string;
24778
+ };
24779
+ telemetry_url: {
24780
+ nullable: boolean;
24781
+ type: string;
24782
+ };
24783
+ };
24784
+ required: string[];
24785
+ type: string;
24786
+ 'x-route-path': string;
24787
+ 'x-undocumented': string;
24788
+ };
24789
+ bridge_connected_systems: {
24790
+ properties: {
24791
+ acs_system_display_name: {
24792
+ type: string;
24793
+ };
24794
+ acs_system_id: {
24795
+ format: string;
24796
+ type: string;
24797
+ };
24798
+ bridge_created_at: {
24799
+ format: string;
24800
+ type: string;
24801
+ };
24802
+ bridge_id: {
24803
+ format: string;
24804
+ type: string;
24805
+ };
24806
+ connected_account_created_at: {
24807
+ format: string;
24808
+ type: string;
24809
+ };
24810
+ connected_account_id: {
24811
+ format: string;
24812
+ type: string;
24813
+ };
24814
+ workspace_display_name: {
24815
+ type: string;
24816
+ };
24817
+ workspace_id: {
24818
+ format: string;
24819
+ type: string;
24820
+ };
24821
+ };
24822
+ required: string[];
24823
+ type: string;
24824
+ 'x-route-path': string;
24825
+ 'x-undocumented': string;
24826
+ };
24614
24827
  client_session: {
24615
24828
  description: string;
24616
24829
  properties: {
@@ -30457,6 +30670,56 @@ declare const _default: {
30457
30670
  'x-route-path': string;
30458
30671
  'x-undocumented': string;
30459
30672
  };
30673
+ location: {
30674
+ properties: {
30675
+ created_at: {
30676
+ description: string;
30677
+ format: string;
30678
+ type: string;
30679
+ };
30680
+ display_name: {
30681
+ description: string;
30682
+ type: string;
30683
+ };
30684
+ geolocation: {
30685
+ description: string;
30686
+ properties: {
30687
+ latitude: {
30688
+ format: string;
30689
+ type: string;
30690
+ };
30691
+ longitude: {
30692
+ format: string;
30693
+ type: string;
30694
+ };
30695
+ };
30696
+ required: string[];
30697
+ type: string;
30698
+ };
30699
+ location_id: {
30700
+ description: string;
30701
+ format: string;
30702
+ type: string;
30703
+ };
30704
+ name: {
30705
+ description: string;
30706
+ type: string;
30707
+ };
30708
+ time_zone: {
30709
+ description: string;
30710
+ type: string;
30711
+ };
30712
+ workspace_id: {
30713
+ description: string;
30714
+ format: string;
30715
+ type: string;
30716
+ };
30717
+ };
30718
+ required: string[];
30719
+ type: string;
30720
+ 'x-route-path': string;
30721
+ 'x-undocumented': string;
30722
+ };
30460
30723
  magic_link: {
30461
30724
  properties: {
30462
30725
  building_block_type: {
@@ -30550,6 +30813,56 @@ declare const _default: {
30550
30813
  required: string[];
30551
30814
  type: string;
30552
30815
  };
30816
+ partner_resource: {
30817
+ properties: {
30818
+ custom_metadata: {
30819
+ additionalProperties: {
30820
+ type: string;
30821
+ };
30822
+ type: string;
30823
+ };
30824
+ customer_key: {
30825
+ type: string;
30826
+ };
30827
+ description: {
30828
+ type: string;
30829
+ };
30830
+ email_address: {
30831
+ type: string;
30832
+ };
30833
+ ends_at: {
30834
+ type: string;
30835
+ };
30836
+ location_keys: {
30837
+ items: {
30838
+ type: string;
30839
+ };
30840
+ type: string;
30841
+ };
30842
+ name: {
30843
+ type: string;
30844
+ };
30845
+ partner_resource_key: {
30846
+ type: string;
30847
+ };
30848
+ partner_resource_type: {
30849
+ type: string;
30850
+ };
30851
+ phone_number: {
30852
+ type: string;
30853
+ };
30854
+ starts_at: {
30855
+ type: string;
30856
+ };
30857
+ user_identity_key: {
30858
+ type: string;
30859
+ };
30860
+ };
30861
+ required: string[];
30862
+ type: string;
30863
+ 'x-route-path': string;
30864
+ 'x-undocumented': string;
30865
+ };
30553
30866
  phone: {
30554
30867
  description: string;
30555
30868
  properties: {
@@ -30712,8 +31025,7 @@ declare const _default: {
30712
31025
  type: string;
30713
31026
  };
30714
31027
  acs_credential_id: {
30715
- description: string;
30716
- format: string;
31028
+ nullable: boolean;
30717
31029
  type: string;
30718
31030
  };
30719
31031
  acs_credential_pool_id: {
@@ -31178,6 +31490,59 @@ declare const _default: {
31178
31490
  'x-draft': string;
31179
31491
  'x-route-path': string;
31180
31492
  };
31493
+ thermostat_daily_program: {
31494
+ description: string;
31495
+ properties: {
31496
+ created_at: {
31497
+ description: string;
31498
+ format: string;
31499
+ type: string;
31500
+ };
31501
+ device_id: {
31502
+ description: string;
31503
+ format: string;
31504
+ type: string;
31505
+ };
31506
+ name: {
31507
+ description: string;
31508
+ nullable: boolean;
31509
+ type: string;
31510
+ };
31511
+ periods: {
31512
+ description: string;
31513
+ items: {
31514
+ description: string;
31515
+ properties: {
31516
+ climate_preset_key: {
31517
+ description: string;
31518
+ type: string;
31519
+ };
31520
+ starts_at_time: {
31521
+ description: string;
31522
+ pattern: string;
31523
+ type: string;
31524
+ };
31525
+ };
31526
+ required: string[];
31527
+ type: string;
31528
+ };
31529
+ type: string;
31530
+ };
31531
+ thermostat_daily_program_id: {
31532
+ description: string;
31533
+ format: string;
31534
+ type: string;
31535
+ };
31536
+ workspace_id: {
31537
+ description: string;
31538
+ format: string;
31539
+ type: string;
31540
+ };
31541
+ };
31542
+ required: string[];
31543
+ type: string;
31544
+ 'x-route-path': string;
31545
+ };
31181
31546
  thermostat_schedule: {
31182
31547
  description: string;
31183
31548
  properties: {
@@ -32664,6 +33029,25 @@ declare const _default: {
32664
33029
  nullable: boolean;
32665
33030
  type: string;
32666
33031
  };
33032
+ errors: {
33033
+ description: string;
33034
+ items: {
33035
+ properties: {
33036
+ created_at: {
33037
+ description: string;
33038
+ format: string;
33039
+ type: string;
33040
+ };
33041
+ message: {
33042
+ description: string;
33043
+ type: string;
33044
+ };
33045
+ };
33046
+ required: string[];
33047
+ type: string;
33048
+ };
33049
+ type: string;
33050
+ };
32667
33051
  full_name: {
32668
33052
  minLength: number;
32669
33053
  nullable: boolean;
@@ -32685,6 +33069,37 @@ declare const _default: {
32685
33069
  nullable: boolean;
32686
33070
  type: string;
32687
33071
  };
33072
+ warnings: {
33073
+ description: string;
33074
+ items: {
33075
+ description: string;
33076
+ discriminator: {
33077
+ propertyName: string;
33078
+ };
33079
+ oneOf: {
33080
+ description: string;
33081
+ properties: {
33082
+ created_at: {
33083
+ description: string;
33084
+ format: string;
33085
+ type: string;
33086
+ };
33087
+ message: {
33088
+ description: string;
33089
+ type: string;
33090
+ };
33091
+ warning_code: {
33092
+ description: string;
33093
+ enum: string[];
33094
+ type: string;
33095
+ };
33096
+ };
33097
+ required: string[];
33098
+ type: string;
33099
+ }[];
33100
+ };
33101
+ type: string;
33102
+ };
32688
33103
  workspace_id: {
32689
33104
  description: string;
32690
33105
  format: string;
@@ -39016,6 +39431,16 @@ declare const _default: {
39016
39431
  'application/json': {
39017
39432
  schema: {
39018
39433
  properties: {
39434
+ access_grant_id: {
39435
+ description: string;
39436
+ format: string;
39437
+ type: string;
39438
+ };
39439
+ access_method_id: {
39440
+ description: string;
39441
+ format: string;
39442
+ type: string;
39443
+ };
39019
39444
  acs_credential_id: {
39020
39445
  description: string;
39021
39446
  format: string;
@@ -46407,137 +46832,7 @@ declare const _default: {
46407
46832
  schema: {
46408
46833
  properties: {
46409
46834
  bridge_client_session: {
46410
- properties: {
46411
- bridge_client_machine_identifier_key: {
46412
- type: string;
46413
- };
46414
- bridge_client_name: {
46415
- type: string;
46416
- };
46417
- bridge_client_session_id: {
46418
- format: string;
46419
- type: string;
46420
- };
46421
- bridge_client_session_token: {
46422
- type: string;
46423
- };
46424
- bridge_client_time_zone: {
46425
- type: string;
46426
- };
46427
- created_at: {
46428
- format: string;
46429
- type: string;
46430
- };
46431
- errors: {
46432
- items: {
46433
- description: string;
46434
- discriminator: {
46435
- propertyName: string;
46436
- };
46437
- oneOf: ({
46438
- description: string;
46439
- properties: {
46440
- can_tailscale_proxy_reach_bridge: {
46441
- description: string;
46442
- nullable: boolean;
46443
- type: string;
46444
- };
46445
- can_tailscale_proxy_reach_tailscale_network: {
46446
- description: string;
46447
- nullable: boolean;
46448
- type: string;
46449
- };
46450
- created_at: {
46451
- format: string;
46452
- type: string;
46453
- };
46454
- error_code: {
46455
- description: string;
46456
- enum: string[];
46457
- type: string;
46458
- };
46459
- is_bridge_socks_server_healthy: {
46460
- description: string;
46461
- nullable: boolean;
46462
- type: string;
46463
- };
46464
- is_tailscale_proxy_reachable: {
46465
- description: string;
46466
- nullable: boolean;
46467
- type: string;
46468
- };
46469
- is_tailscale_proxy_socks_server_healthy: {
46470
- description: string;
46471
- nullable: boolean;
46472
- type: string;
46473
- };
46474
- message: {
46475
- type: string;
46476
- };
46477
- };
46478
- required: string[];
46479
- type: string;
46480
- } | {
46481
- description: string;
46482
- properties: {
46483
- created_at: {
46484
- format: string;
46485
- type: string;
46486
- };
46487
- error_code: {
46488
- description: string;
46489
- enum: string[];
46490
- type: string;
46491
- };
46492
- message: {
46493
- type: string;
46494
- };
46495
- can_tailscale_proxy_reach_bridge?: never;
46496
- can_tailscale_proxy_reach_tailscale_network?: never;
46497
- is_bridge_socks_server_healthy?: never;
46498
- is_tailscale_proxy_reachable?: never;
46499
- is_tailscale_proxy_socks_server_healthy?: never;
46500
- };
46501
- required: string[];
46502
- type: string;
46503
- })[];
46504
- };
46505
- type: string;
46506
- };
46507
- pairing_code: {
46508
- maxLength: number;
46509
- minLength: number;
46510
- type: string;
46511
- };
46512
- pairing_code_expires_at: {
46513
- format: string;
46514
- type: string;
46515
- };
46516
- tailscale_auth_key: {
46517
- nullable: boolean;
46518
- type: string;
46519
- };
46520
- tailscale_hostname: {
46521
- type: string;
46522
- };
46523
- telemetry_token: {
46524
- nullable: boolean;
46525
- type: string;
46526
- };
46527
- telemetry_token_expires_at: {
46528
- format: string;
46529
- nullable: boolean;
46530
- type: string;
46531
- };
46532
- telemetry_url: {
46533
- nullable: boolean;
46534
- type: string;
46535
- };
46536
- };
46537
- required: string[];
46538
- type: string;
46539
- 'x-route-path': string;
46540
- 'x-undocumented': string;
46835
+ $ref: string;
46541
46836
  };
46542
46837
  ok: {
46543
46838
  type: string;
@@ -46581,137 +46876,7 @@ declare const _default: {
46581
46876
  schema: {
46582
46877
  properties: {
46583
46878
  bridge_client_session: {
46584
- properties: {
46585
- bridge_client_machine_identifier_key: {
46586
- type: string;
46587
- };
46588
- bridge_client_name: {
46589
- type: string;
46590
- };
46591
- bridge_client_session_id: {
46592
- format: string;
46593
- type: string;
46594
- };
46595
- bridge_client_session_token: {
46596
- type: string;
46597
- };
46598
- bridge_client_time_zone: {
46599
- type: string;
46600
- };
46601
- created_at: {
46602
- format: string;
46603
- type: string;
46604
- };
46605
- errors: {
46606
- items: {
46607
- description: string;
46608
- discriminator: {
46609
- propertyName: string;
46610
- };
46611
- oneOf: ({
46612
- description: string;
46613
- properties: {
46614
- can_tailscale_proxy_reach_bridge: {
46615
- description: string;
46616
- nullable: boolean;
46617
- type: string;
46618
- };
46619
- can_tailscale_proxy_reach_tailscale_network: {
46620
- description: string;
46621
- nullable: boolean;
46622
- type: string;
46623
- };
46624
- created_at: {
46625
- format: string;
46626
- type: string;
46627
- };
46628
- error_code: {
46629
- description: string;
46630
- enum: string[];
46631
- type: string;
46632
- };
46633
- is_bridge_socks_server_healthy: {
46634
- description: string;
46635
- nullable: boolean;
46636
- type: string;
46637
- };
46638
- is_tailscale_proxy_reachable: {
46639
- description: string;
46640
- nullable: boolean;
46641
- type: string;
46642
- };
46643
- is_tailscale_proxy_socks_server_healthy: {
46644
- description: string;
46645
- nullable: boolean;
46646
- type: string;
46647
- };
46648
- message: {
46649
- type: string;
46650
- };
46651
- };
46652
- required: string[];
46653
- type: string;
46654
- } | {
46655
- description: string;
46656
- properties: {
46657
- created_at: {
46658
- format: string;
46659
- type: string;
46660
- };
46661
- error_code: {
46662
- description: string;
46663
- enum: string[];
46664
- type: string;
46665
- };
46666
- message: {
46667
- type: string;
46668
- };
46669
- can_tailscale_proxy_reach_bridge?: never;
46670
- can_tailscale_proxy_reach_tailscale_network?: never;
46671
- is_bridge_socks_server_healthy?: never;
46672
- is_tailscale_proxy_reachable?: never;
46673
- is_tailscale_proxy_socks_server_healthy?: never;
46674
- };
46675
- required: string[];
46676
- type: string;
46677
- })[];
46678
- };
46679
- type: string;
46680
- };
46681
- pairing_code: {
46682
- maxLength: number;
46683
- minLength: number;
46684
- type: string;
46685
- };
46686
- pairing_code_expires_at: {
46687
- format: string;
46688
- type: string;
46689
- };
46690
- tailscale_auth_key: {
46691
- nullable: boolean;
46692
- type: string;
46693
- };
46694
- tailscale_hostname: {
46695
- type: string;
46696
- };
46697
- telemetry_token: {
46698
- nullable: boolean;
46699
- type: string;
46700
- };
46701
- telemetry_token_expires_at: {
46702
- format: string;
46703
- nullable: boolean;
46704
- type: string;
46705
- };
46706
- telemetry_url: {
46707
- nullable: boolean;
46708
- type: string;
46709
- };
46710
- };
46711
- required: string[];
46712
- type: string;
46713
- 'x-route-path': string;
46714
- 'x-undocumented': string;
46879
+ $ref: string;
46715
46880
  };
46716
46881
  ok: {
46717
46882
  type: string;
@@ -46751,137 +46916,7 @@ declare const _default: {
46751
46916
  schema: {
46752
46917
  properties: {
46753
46918
  bridge_client_session: {
46754
- properties: {
46755
- bridge_client_machine_identifier_key: {
46756
- type: string;
46757
- };
46758
- bridge_client_name: {
46759
- type: string;
46760
- };
46761
- bridge_client_session_id: {
46762
- format: string;
46763
- type: string;
46764
- };
46765
- bridge_client_session_token: {
46766
- type: string;
46767
- };
46768
- bridge_client_time_zone: {
46769
- type: string;
46770
- };
46771
- created_at: {
46772
- format: string;
46773
- type: string;
46774
- };
46775
- errors: {
46776
- items: {
46777
- description: string;
46778
- discriminator: {
46779
- propertyName: string;
46780
- };
46781
- oneOf: ({
46782
- description: string;
46783
- properties: {
46784
- can_tailscale_proxy_reach_bridge: {
46785
- description: string;
46786
- nullable: boolean;
46787
- type: string;
46788
- };
46789
- can_tailscale_proxy_reach_tailscale_network: {
46790
- description: string;
46791
- nullable: boolean;
46792
- type: string;
46793
- };
46794
- created_at: {
46795
- format: string;
46796
- type: string;
46797
- };
46798
- error_code: {
46799
- description: string;
46800
- enum: string[];
46801
- type: string;
46802
- };
46803
- is_bridge_socks_server_healthy: {
46804
- description: string;
46805
- nullable: boolean;
46806
- type: string;
46807
- };
46808
- is_tailscale_proxy_reachable: {
46809
- description: string;
46810
- nullable: boolean;
46811
- type: string;
46812
- };
46813
- is_tailscale_proxy_socks_server_healthy: {
46814
- description: string;
46815
- nullable: boolean;
46816
- type: string;
46817
- };
46818
- message: {
46819
- type: string;
46820
- };
46821
- };
46822
- required: string[];
46823
- type: string;
46824
- } | {
46825
- description: string;
46826
- properties: {
46827
- created_at: {
46828
- format: string;
46829
- type: string;
46830
- };
46831
- error_code: {
46832
- description: string;
46833
- enum: string[];
46834
- type: string;
46835
- };
46836
- message: {
46837
- type: string;
46838
- };
46839
- can_tailscale_proxy_reach_bridge?: never;
46840
- can_tailscale_proxy_reach_tailscale_network?: never;
46841
- is_bridge_socks_server_healthy?: never;
46842
- is_tailscale_proxy_reachable?: never;
46843
- is_tailscale_proxy_socks_server_healthy?: never;
46844
- };
46845
- required: string[];
46846
- type: string;
46847
- })[];
46848
- };
46849
- type: string;
46850
- };
46851
- pairing_code: {
46852
- maxLength: number;
46853
- minLength: number;
46854
- type: string;
46855
- };
46856
- pairing_code_expires_at: {
46857
- format: string;
46858
- type: string;
46859
- };
46860
- tailscale_auth_key: {
46861
- nullable: boolean;
46862
- type: string;
46863
- };
46864
- tailscale_hostname: {
46865
- type: string;
46866
- };
46867
- telemetry_token: {
46868
- nullable: boolean;
46869
- type: string;
46870
- };
46871
- telemetry_token_expires_at: {
46872
- format: string;
46873
- nullable: boolean;
46874
- type: string;
46875
- };
46876
- telemetry_url: {
46877
- nullable: boolean;
46878
- type: string;
46879
- };
46880
- };
46881
- required: string[];
46882
- type: string;
46883
- 'x-route-path': string;
46884
- 'x-undocumented': string;
46919
+ $ref: string;
46885
46920
  };
46886
46921
  ok: {
46887
46922
  type: string;
@@ -46925,137 +46960,7 @@ declare const _default: {
46925
46960
  schema: {
46926
46961
  properties: {
46927
46962
  bridge_client_session: {
46928
- properties: {
46929
- bridge_client_machine_identifier_key: {
46930
- type: string;
46931
- };
46932
- bridge_client_name: {
46933
- type: string;
46934
- };
46935
- bridge_client_session_id: {
46936
- format: string;
46937
- type: string;
46938
- };
46939
- bridge_client_session_token: {
46940
- type: string;
46941
- };
46942
- bridge_client_time_zone: {
46943
- type: string;
46944
- };
46945
- created_at: {
46946
- format: string;
46947
- type: string;
46948
- };
46949
- errors: {
46950
- items: {
46951
- description: string;
46952
- discriminator: {
46953
- propertyName: string;
46954
- };
46955
- oneOf: ({
46956
- description: string;
46957
- properties: {
46958
- can_tailscale_proxy_reach_bridge: {
46959
- description: string;
46960
- nullable: boolean;
46961
- type: string;
46962
- };
46963
- can_tailscale_proxy_reach_tailscale_network: {
46964
- description: string;
46965
- nullable: boolean;
46966
- type: string;
46967
- };
46968
- created_at: {
46969
- format: string;
46970
- type: string;
46971
- };
46972
- error_code: {
46973
- description: string;
46974
- enum: string[];
46975
- type: string;
46976
- };
46977
- is_bridge_socks_server_healthy: {
46978
- description: string;
46979
- nullable: boolean;
46980
- type: string;
46981
- };
46982
- is_tailscale_proxy_reachable: {
46983
- description: string;
46984
- nullable: boolean;
46985
- type: string;
46986
- };
46987
- is_tailscale_proxy_socks_server_healthy: {
46988
- description: string;
46989
- nullable: boolean;
46990
- type: string;
46991
- };
46992
- message: {
46993
- type: string;
46994
- };
46995
- };
46996
- required: string[];
46997
- type: string;
46998
- } | {
46999
- description: string;
47000
- properties: {
47001
- created_at: {
47002
- format: string;
47003
- type: string;
47004
- };
47005
- error_code: {
47006
- description: string;
47007
- enum: string[];
47008
- type: string;
47009
- };
47010
- message: {
47011
- type: string;
47012
- };
47013
- can_tailscale_proxy_reach_bridge?: never;
47014
- can_tailscale_proxy_reach_tailscale_network?: never;
47015
- is_bridge_socks_server_healthy?: never;
47016
- is_tailscale_proxy_reachable?: never;
47017
- is_tailscale_proxy_socks_server_healthy?: never;
47018
- };
47019
- required: string[];
47020
- type: string;
47021
- })[];
47022
- };
47023
- type: string;
47024
- };
47025
- pairing_code: {
47026
- maxLength: number;
47027
- minLength: number;
47028
- type: string;
47029
- };
47030
- pairing_code_expires_at: {
47031
- format: string;
47032
- type: string;
47033
- };
47034
- tailscale_auth_key: {
47035
- nullable: boolean;
47036
- type: string;
47037
- };
47038
- tailscale_hostname: {
47039
- type: string;
47040
- };
47041
- telemetry_token: {
47042
- nullable: boolean;
47043
- type: string;
47044
- };
47045
- telemetry_token_expires_at: {
47046
- format: string;
47047
- nullable: boolean;
47048
- type: string;
47049
- };
47050
- telemetry_url: {
47051
- nullable: boolean;
47052
- type: string;
47053
- };
47054
- };
47055
- required: string[];
47056
- type: string;
47057
- 'x-route-path': string;
47058
- 'x-undocumented': string;
46963
+ $ref: string;
47059
46964
  };
47060
46965
  ok: {
47061
46966
  type: string;
@@ -47099,137 +47004,7 @@ declare const _default: {
47099
47004
  schema: {
47100
47005
  properties: {
47101
47006
  bridge_client_session: {
47102
- properties: {
47103
- bridge_client_machine_identifier_key: {
47104
- type: string;
47105
- };
47106
- bridge_client_name: {
47107
- type: string;
47108
- };
47109
- bridge_client_session_id: {
47110
- format: string;
47111
- type: string;
47112
- };
47113
- bridge_client_session_token: {
47114
- type: string;
47115
- };
47116
- bridge_client_time_zone: {
47117
- type: string;
47118
- };
47119
- created_at: {
47120
- format: string;
47121
- type: string;
47122
- };
47123
- errors: {
47124
- items: {
47125
- description: string;
47126
- discriminator: {
47127
- propertyName: string;
47128
- };
47129
- oneOf: ({
47130
- description: string;
47131
- properties: {
47132
- can_tailscale_proxy_reach_bridge: {
47133
- description: string;
47134
- nullable: boolean;
47135
- type: string;
47136
- };
47137
- can_tailscale_proxy_reach_tailscale_network: {
47138
- description: string;
47139
- nullable: boolean;
47140
- type: string;
47141
- };
47142
- created_at: {
47143
- format: string;
47144
- type: string;
47145
- };
47146
- error_code: {
47147
- description: string;
47148
- enum: string[];
47149
- type: string;
47150
- };
47151
- is_bridge_socks_server_healthy: {
47152
- description: string;
47153
- nullable: boolean;
47154
- type: string;
47155
- };
47156
- is_tailscale_proxy_reachable: {
47157
- description: string;
47158
- nullable: boolean;
47159
- type: string;
47160
- };
47161
- is_tailscale_proxy_socks_server_healthy: {
47162
- description: string;
47163
- nullable: boolean;
47164
- type: string;
47165
- };
47166
- message: {
47167
- type: string;
47168
- };
47169
- };
47170
- required: string[];
47171
- type: string;
47172
- } | {
47173
- description: string;
47174
- properties: {
47175
- created_at: {
47176
- format: string;
47177
- type: string;
47178
- };
47179
- error_code: {
47180
- description: string;
47181
- enum: string[];
47182
- type: string;
47183
- };
47184
- message: {
47185
- type: string;
47186
- };
47187
- can_tailscale_proxy_reach_bridge?: never;
47188
- can_tailscale_proxy_reach_tailscale_network?: never;
47189
- is_bridge_socks_server_healthy?: never;
47190
- is_tailscale_proxy_reachable?: never;
47191
- is_tailscale_proxy_socks_server_healthy?: never;
47192
- };
47193
- required: string[];
47194
- type: string;
47195
- })[];
47196
- };
47197
- type: string;
47198
- };
47199
- pairing_code: {
47200
- maxLength: number;
47201
- minLength: number;
47202
- type: string;
47203
- };
47204
- pairing_code_expires_at: {
47205
- format: string;
47206
- type: string;
47207
- };
47208
- tailscale_auth_key: {
47209
- nullable: boolean;
47210
- type: string;
47211
- };
47212
- tailscale_hostname: {
47213
- type: string;
47214
- };
47215
- telemetry_token: {
47216
- nullable: boolean;
47217
- type: string;
47218
- };
47219
- telemetry_token_expires_at: {
47220
- format: string;
47221
- nullable: boolean;
47222
- type: string;
47223
- };
47224
- telemetry_url: {
47225
- nullable: boolean;
47226
- type: string;
47227
- };
47228
- };
47229
- required: string[];
47230
- type: string;
47231
- 'x-route-path': string;
47232
- 'x-undocumented': string;
47007
+ $ref: string;
47233
47008
  };
47234
47009
  ok: {
47235
47010
  type: string;
@@ -47336,42 +47111,7 @@ declare const _default: {
47336
47111
  properties: {
47337
47112
  bridge_connected_systems: {
47338
47113
  items: {
47339
- properties: {
47340
- acs_system_display_name: {
47341
- type: string;
47342
- };
47343
- acs_system_id: {
47344
- format: string;
47345
- type: string;
47346
- };
47347
- bridge_created_at: {
47348
- format: string;
47349
- type: string;
47350
- };
47351
- bridge_id: {
47352
- format: string;
47353
- type: string;
47354
- };
47355
- connected_account_created_at: {
47356
- format: string;
47357
- type: string;
47358
- };
47359
- connected_account_id: {
47360
- format: string;
47361
- type: string;
47362
- };
47363
- workspace_display_name: {
47364
- type: string;
47365
- };
47366
- workspace_id: {
47367
- format: string;
47368
- type: string;
47369
- };
47370
- };
47371
- required: string[];
47372
- type: string;
47373
- 'x-route-path': string;
47374
- 'x-undocumented': string;
47114
+ $ref: string;
47375
47115
  };
47376
47116
  type: string;
47377
47117
  };
@@ -47414,42 +47154,7 @@ declare const _default: {
47414
47154
  properties: {
47415
47155
  bridge_connected_systems: {
47416
47156
  items: {
47417
- properties: {
47418
- acs_system_display_name: {
47419
- type: string;
47420
- };
47421
- acs_system_id: {
47422
- format: string;
47423
- type: string;
47424
- };
47425
- bridge_created_at: {
47426
- format: string;
47427
- type: string;
47428
- };
47429
- bridge_id: {
47430
- format: string;
47431
- type: string;
47432
- };
47433
- connected_account_created_at: {
47434
- format: string;
47435
- type: string;
47436
- };
47437
- connected_account_id: {
47438
- format: string;
47439
- type: string;
47440
- };
47441
- workspace_display_name: {
47442
- type: string;
47443
- };
47444
- workspace_id: {
47445
- format: string;
47446
- type: string;
47447
- };
47448
- };
47449
- required: string[];
47450
- type: string;
47451
- 'x-route-path': string;
47452
- 'x-undocumented': string;
47157
+ $ref: string;
47453
47158
  };
47454
47159
  type: string;
47455
47160
  };
@@ -47820,54 +47525,7 @@ declare const _default: {
47820
47525
  };
47821
47526
  partner_resources: {
47822
47527
  items: {
47823
- properties: {
47824
- custom_metadata: {
47825
- additionalProperties: {
47826
- type: string;
47827
- };
47828
- type: string;
47829
- };
47830
- customer_key: {
47831
- type: string;
47832
- };
47833
- description: {
47834
- type: string;
47835
- };
47836
- email_address: {
47837
- type: string;
47838
- };
47839
- ends_at: {
47840
- type: string;
47841
- };
47842
- location_keys: {
47843
- items: {
47844
- type: string;
47845
- };
47846
- type: string;
47847
- };
47848
- name: {
47849
- type: string;
47850
- };
47851
- partner_resource_key: {
47852
- type: string;
47853
- };
47854
- partner_resource_type: {
47855
- type: string;
47856
- };
47857
- phone_number: {
47858
- type: string;
47859
- };
47860
- starts_at: {
47861
- type: string;
47862
- };
47863
- user_identity_key: {
47864
- type: string;
47865
- };
47866
- };
47867
- required: string[];
47868
- type: string;
47869
- 'x-route-path': string;
47870
- 'x-undocumented': string;
47528
+ $ref: string;
47871
47529
  };
47872
47530
  type: string;
47873
47531
  };
@@ -49172,57 +48830,7 @@ declare const _default: {
49172
48830
  type: string;
49173
48831
  };
49174
48832
  thermostat_daily_program: {
49175
- description: string;
49176
- properties: {
49177
- created_at: {
49178
- description: string;
49179
- format: string;
49180
- type: string;
49181
- };
49182
- device_id: {
49183
- description: string;
49184
- format: string;
49185
- type: string;
49186
- };
49187
- name: {
49188
- description: string;
49189
- nullable: boolean;
49190
- type: string;
49191
- };
49192
- periods: {
49193
- description: string;
49194
- items: {
49195
- description: string;
49196
- properties: {
49197
- climate_preset_key: {
49198
- description: string;
49199
- type: string;
49200
- };
49201
- starts_at_time: {
49202
- description: string;
49203
- pattern: string;
49204
- type: string;
49205
- };
49206
- };
49207
- required: string[];
49208
- type: string;
49209
- };
49210
- type: string;
49211
- };
49212
- thermostat_daily_program_id: {
49213
- description: string;
49214
- format: string;
49215
- type: string;
49216
- };
49217
- workspace_id: {
49218
- description: string;
49219
- format: string;
49220
- type: string;
49221
- };
49222
- };
49223
- required: string[];
49224
- type: string;
49225
- 'x-route-path': string;
48833
+ $ref: string;
49226
48834
  };
49227
48835
  };
49228
48836
  required: string[];
@@ -52887,52 +52495,7 @@ declare const _default: {
52887
52495
  schema: {
52888
52496
  properties: {
52889
52497
  location: {
52890
- properties: {
52891
- created_at: {
52892
- description: string;
52893
- format: string;
52894
- type: string;
52895
- };
52896
- display_name: {
52897
- description: string;
52898
- type: string;
52899
- };
52900
- geolocation: {
52901
- description: string;
52902
- properties: {
52903
- latitude: {
52904
- format: string;
52905
- type: string;
52906
- };
52907
- longitude: {
52908
- format: string;
52909
- type: string;
52910
- };
52911
- };
52912
- required: string[];
52913
- type: string;
52914
- };
52915
- location_id: {
52916
- description: string;
52917
- format: string;
52918
- type: string;
52919
- };
52920
- name: {
52921
- description: string;
52922
- type: string;
52923
- };
52924
- time_zone: {
52925
- description: string;
52926
- type: string;
52927
- };
52928
- workspace_id: {
52929
- description: string;
52930
- format: string;
52931
- type: string;
52932
- };
52933
- };
52934
- required: string[];
52935
- type: string;
52498
+ $ref: string;
52936
52499
  };
52937
52500
  ok: {
52938
52501
  type: string;
@@ -53070,52 +52633,7 @@ declare const _default: {
53070
52633
  schema: {
53071
52634
  properties: {
53072
52635
  location: {
53073
- properties: {
53074
- created_at: {
53075
- description: string;
53076
- format: string;
53077
- type: string;
53078
- };
53079
- display_name: {
53080
- description: string;
53081
- type: string;
53082
- };
53083
- geolocation: {
53084
- description: string;
53085
- properties: {
53086
- latitude: {
53087
- format: string;
53088
- type: string;
53089
- };
53090
- longitude: {
53091
- format: string;
53092
- type: string;
53093
- };
53094
- };
53095
- required: string[];
53096
- type: string;
53097
- };
53098
- location_id: {
53099
- description: string;
53100
- format: string;
53101
- type: string;
53102
- };
53103
- name: {
53104
- description: string;
53105
- type: string;
53106
- };
53107
- time_zone: {
53108
- description: string;
53109
- type: string;
53110
- };
53111
- workspace_id: {
53112
- description: string;
53113
- format: string;
53114
- type: string;
53115
- };
53116
- };
53117
- required: string[];
53118
- type: string;
52636
+ $ref: string;
53119
52637
  };
53120
52638
  ok: {
53121
52639
  type: string;
@@ -53170,52 +52688,7 @@ declare const _default: {
53170
52688
  properties: {
53171
52689
  locations: {
53172
52690
  items: {
53173
- properties: {
53174
- created_at: {
53175
- description: string;
53176
- format: string;
53177
- type: string;
53178
- };
53179
- display_name: {
53180
- description: string;
53181
- type: string;
53182
- };
53183
- geolocation: {
53184
- description: string;
53185
- properties: {
53186
- latitude: {
53187
- format: string;
53188
- type: string;
53189
- };
53190
- longitude: {
53191
- format: string;
53192
- type: string;
53193
- };
53194
- };
53195
- required: string[];
53196
- type: string;
53197
- };
53198
- location_id: {
53199
- description: string;
53200
- format: string;
53201
- type: string;
53202
- };
53203
- name: {
53204
- description: string;
53205
- type: string;
53206
- };
53207
- time_zone: {
53208
- description: string;
53209
- type: string;
53210
- };
53211
- workspace_id: {
53212
- description: string;
53213
- format: string;
53214
- type: string;
53215
- };
53216
- };
53217
- required: string[];
53218
- type: string;
52691
+ $ref: string;
53219
52692
  };
53220
52693
  type: string;
53221
52694
  };
@@ -53268,52 +52741,7 @@ declare const _default: {
53268
52741
  properties: {
53269
52742
  locations: {
53270
52743
  items: {
53271
- properties: {
53272
- created_at: {
53273
- description: string;
53274
- format: string;
53275
- type: string;
53276
- };
53277
- display_name: {
53278
- description: string;
53279
- type: string;
53280
- };
53281
- geolocation: {
53282
- description: string;
53283
- properties: {
53284
- latitude: {
53285
- format: string;
53286
- type: string;
53287
- };
53288
- longitude: {
53289
- format: string;
53290
- type: string;
53291
- };
53292
- };
53293
- required: string[];
53294
- type: string;
53295
- };
53296
- location_id: {
53297
- description: string;
53298
- format: string;
53299
- type: string;
53300
- };
53301
- name: {
53302
- description: string;
53303
- type: string;
53304
- };
53305
- time_zone: {
53306
- description: string;
53307
- type: string;
53308
- };
53309
- workspace_id: {
53310
- description: string;
53311
- format: string;
53312
- type: string;
53313
- };
53314
- };
53315
- required: string[];
53316
- type: string;
52744
+ $ref: string;
53317
52745
  };
53318
52746
  type: string;
53319
52747
  };
@@ -53559,52 +52987,7 @@ declare const _default: {
53559
52987
  schema: {
53560
52988
  properties: {
53561
52989
  location: {
53562
- properties: {
53563
- created_at: {
53564
- description: string;
53565
- format: string;
53566
- type: string;
53567
- };
53568
- display_name: {
53569
- description: string;
53570
- type: string;
53571
- };
53572
- geolocation: {
53573
- description: string;
53574
- properties: {
53575
- latitude: {
53576
- format: string;
53577
- type: string;
53578
- };
53579
- longitude: {
53580
- format: string;
53581
- type: string;
53582
- };
53583
- };
53584
- required: string[];
53585
- type: string;
53586
- };
53587
- location_id: {
53588
- description: string;
53589
- format: string;
53590
- type: string;
53591
- };
53592
- name: {
53593
- description: string;
53594
- type: string;
53595
- };
53596
- time_zone: {
53597
- description: string;
53598
- type: string;
53599
- };
53600
- workspace_id: {
53601
- description: string;
53602
- format: string;
53603
- type: string;
53604
- };
53605
- };
53606
- required: string[];
53607
- type: string;
52990
+ $ref: string;
53608
52991
  };
53609
52992
  ok: {
53610
52993
  type: string;
@@ -53694,52 +53077,7 @@ declare const _default: {
53694
53077
  schema: {
53695
53078
  properties: {
53696
53079
  location: {
53697
- properties: {
53698
- created_at: {
53699
- description: string;
53700
- format: string;
53701
- type: string;
53702
- };
53703
- display_name: {
53704
- description: string;
53705
- type: string;
53706
- };
53707
- geolocation: {
53708
- description: string;
53709
- properties: {
53710
- latitude: {
53711
- format: string;
53712
- type: string;
53713
- };
53714
- longitude: {
53715
- format: string;
53716
- type: string;
53717
- };
53718
- };
53719
- required: string[];
53720
- type: string;
53721
- };
53722
- location_id: {
53723
- description: string;
53724
- format: string;
53725
- type: string;
53726
- };
53727
- name: {
53728
- description: string;
53729
- type: string;
53730
- };
53731
- time_zone: {
53732
- description: string;
53733
- type: string;
53734
- };
53735
- workspace_id: {
53736
- description: string;
53737
- format: string;
53738
- type: string;
53739
- };
53740
- };
53741
- required: string[];
53742
- type: string;
53080
+ $ref: string;
53743
53081
  };
53744
53082
  ok: {
53745
53083
  type: string;
@@ -54780,34 +54118,7 @@ declare const _default: {
54780
54118
  schema: {
54781
54119
  properties: {
54782
54120
  enrollment_automation: {
54783
- properties: {
54784
- acs_credential_provisioning_automation_id: {
54785
- format: string;
54786
- type: string;
54787
- };
54788
- created_at: {
54789
- format: string;
54790
- type: string;
54791
- };
54792
- credential_manager_acs_system_id: {
54793
- format: string;
54794
- type: string;
54795
- };
54796
- enrollment_automation_id: {
54797
- format: string;
54798
- type: string;
54799
- };
54800
- user_identity_id: {
54801
- format: string;
54802
- type: string;
54803
- };
54804
- workspace_id: {
54805
- format: string;
54806
- type: string;
54807
- };
54808
- };
54809
- required: string[];
54810
- type: string;
54121
+ $ref: string;
54811
54122
  };
54812
54123
  ok: {
54813
54124
  type: string;
@@ -71726,6 +71037,10 @@ interface Routes {
71726
71037
  location_id?: (string | null) | undefined;
71727
71038
  /** ID of the space for which you want to list entrances. */
71728
71039
  space_id?: string | undefined;
71040
+ /** ID of the access grant for which you want to retrieve all entrances. */
71041
+ access_grant_id?: string | undefined;
71042
+ /** ID of the access method for which you want to retrieve all entrances. */
71043
+ access_method_id?: string | undefined;
71729
71044
  };
71730
71045
  formData: {};
71731
71046
  jsonResponse: {
@@ -98870,8 +98185,6 @@ interface Routes {
98870
98185
  is_being_activated: boolean;
98871
98186
  };
98872
98187
  acs_credentials: Array<{
98873
- /** ID of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
98874
- acs_credential_id: string;
98875
98188
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
98876
98189
  acs_user_id?: string | undefined;
98877
98190
  acs_credential_pool_id?: string | undefined;
@@ -98981,6 +98294,7 @@ interface Routes {
98981
98294
  endpoint_id?: string | undefined;
98982
98295
  } | undefined;
98983
98296
  is_managed: true;
98297
+ acs_credential_id?: (string | undefined) | null;
98984
98298
  acs_entrances: Array<{
98985
98299
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
98986
98300
  acs_system_id: string;
@@ -113811,6 +113125,7 @@ interface Routes {
113811
113125
  commonParams: {};
113812
113126
  formData: {};
113813
113127
  jsonResponse: {
113128
+ /** */
113814
113129
  location: {
113815
113130
  /** Unique identifier for the location. */
113816
113131
  location_id: string;
@@ -113855,6 +113170,7 @@ interface Routes {
113855
113170
  };
113856
113171
  formData: {};
113857
113172
  jsonResponse: {
113173
+ /** */
113858
113174
  location: {
113859
113175
  /** Unique identifier for the location. */
113860
113176
  location_id: string;
@@ -113953,6 +113269,7 @@ interface Routes {
113953
113269
  commonParams: {};
113954
113270
  formData: {};
113955
113271
  jsonResponse: {
113272
+ /** */
113956
113273
  location: {
113957
113274
  /** Unique identifier for the location. */
113958
113275
  location_id: string;
@@ -114168,6 +113485,22 @@ interface Routes {
114168
113485
  created_at: string;
114169
113486
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
114170
113487
  workspace_id: string;
113488
+ /** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
113489
+ errors: Array<{
113490
+ /** Date and time at which Seam created the error. */
113491
+ created_at: string;
113492
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113493
+ message: string;
113494
+ }>;
113495
+ /** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
113496
+ warnings: Array<{
113497
+ /** Date and time at which Seam created the warning. */
113498
+ created_at: string;
113499
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113500
+ message: string;
113501
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113502
+ warning_code: 'being_deleted';
113503
+ }>;
114171
113504
  };
114172
113505
  };
114173
113506
  };
@@ -114240,13 +113573,18 @@ interface Routes {
114240
113573
  };
114241
113574
  formData: {};
114242
113575
  jsonResponse: {
113576
+ /** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development). */
114243
113577
  enrollment_automation: {
114244
- acs_credential_provisioning_automation_id: string;
113578
+ /** ID of the enrollment automation. */
113579
+ enrollment_automation_id: string;
113580
+ /** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
114245
113581
  credential_manager_acs_system_id: string;
113582
+ /** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
114246
113583
  user_identity_id: string;
113584
+ /** Date and time at which the enrollment automation was created. */
114247
113585
  created_at: string;
113586
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
114248
113587
  workspace_id: string;
114249
- enrollment_automation_id: string;
114250
113588
  };
114251
113589
  };
114252
113590
  };
@@ -114329,6 +113667,22 @@ interface Routes {
114329
113667
  created_at: string;
114330
113668
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
114331
113669
  workspace_id: string;
113670
+ /** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
113671
+ errors: Array<{
113672
+ /** Date and time at which Seam created the error. */
113673
+ created_at: string;
113674
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113675
+ message: string;
113676
+ }>;
113677
+ /** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
113678
+ warnings: Array<{
113679
+ /** Date and time at which Seam created the warning. */
113680
+ created_at: string;
113681
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113682
+ message: string;
113683
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113684
+ warning_code: 'being_deleted';
113685
+ }>;
114332
113686
  };
114333
113687
  };
114334
113688
  };
@@ -114372,6 +113726,22 @@ interface Routes {
114372
113726
  created_at: string;
114373
113727
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
114374
113728
  workspace_id: string;
113729
+ /** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
113730
+ errors: Array<{
113731
+ /** Date and time at which Seam created the error. */
113732
+ created_at: string;
113733
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113734
+ message: string;
113735
+ }>;
113736
+ /** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
113737
+ warnings: Array<{
113738
+ /** Date and time at which Seam created the warning. */
113739
+ created_at: string;
113740
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113741
+ message: string;
113742
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113743
+ warning_code: 'being_deleted';
113744
+ }>;
114375
113745
  }>;
114376
113746
  };
114377
113747
  };