@seamapi/types 1.365.0 → 1.367.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +708 -7
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1802 -95
  4. package/lib/seam/connect/models/acs/{acs-user.d.ts → acs-users/acs-user.d.ts} +540 -18
  5. package/lib/seam/connect/models/acs/{acs-user.js → acs-users/acs-user.js} +9 -2
  6. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -0
  7. package/lib/seam/connect/models/acs/acs-users/index.d.ts +2 -0
  8. package/lib/seam/connect/models/acs/acs-users/index.js +3 -0
  9. package/lib/seam/connect/models/acs/acs-users/index.js.map +1 -0
  10. package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +176 -0
  11. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +42 -0
  12. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -0
  13. package/lib/seam/connect/models/acs/index.d.ts +1 -1
  14. package/lib/seam/connect/models/acs/index.js +1 -1
  15. package/lib/seam/connect/models/acs/index.js.map +1 -1
  16. package/lib/seam/connect/models/bridges/bridge_client_session.d.ts +235 -0
  17. package/lib/seam/connect/models/bridges/bridge_client_session.js +47 -0
  18. package/lib/seam/connect/models/bridges/bridge_client_session.js.map +1 -1
  19. package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
  20. package/lib/seam/connect/openapi.d.ts +716 -0
  21. package/lib/seam/connect/openapi.js +628 -0
  22. package/lib/seam/connect/openapi.js.map +1 -1
  23. package/lib/seam/connect/route-types.d.ts +399 -0
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +9 -2
  26. package/src/lib/seam/connect/models/acs/acs-users/index.ts +2 -0
  27. package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +56 -0
  28. package/src/lib/seam/connect/models/acs/index.ts +1 -1
  29. package/src/lib/seam/connect/models/bridges/bridge_client_session.ts +62 -0
  30. package/src/lib/seam/connect/openapi.ts +676 -0
  31. package/src/lib/seam/connect/route-types.ts +457 -0
  32. package/lib/seam/connect/models/acs/acs-user.js.map +0 -1
@@ -4743,6 +4743,181 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
4743
4743
  created_at: string;
4744
4744
  error_code: "failed_to_delete_on_acs_system";
4745
4745
  }>]>, "many">;
4746
+ pending_modifications: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"modification_code", [z.ZodObject<z.objectUtil.extendShape<{
4747
+ created_at: z.ZodString;
4748
+ }, {
4749
+ modification_code: z.ZodLiteral<"profile">;
4750
+ modified_from: z.ZodObject<{
4751
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4752
+ full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4753
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
4754
+ }, "strip", z.ZodTypeAny, {
4755
+ email_address?: string | null | undefined;
4756
+ full_name?: string | null | undefined;
4757
+ phone_number?: string | null | undefined;
4758
+ }, {
4759
+ email_address?: string | null | undefined;
4760
+ full_name?: string | null | undefined;
4761
+ phone_number?: string | null | undefined;
4762
+ }>;
4763
+ modified_to: z.ZodObject<{
4764
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4765
+ full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4766
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
4767
+ }, "strip", z.ZodTypeAny, {
4768
+ email_address?: string | null | undefined;
4769
+ full_name?: string | null | undefined;
4770
+ phone_number?: string | null | undefined;
4771
+ }, {
4772
+ email_address?: string | null | undefined;
4773
+ full_name?: string | null | undefined;
4774
+ phone_number?: string | null | undefined;
4775
+ }>;
4776
+ }>, "strip", z.ZodTypeAny, {
4777
+ created_at: string;
4778
+ modification_code: "profile";
4779
+ modified_from: {
4780
+ email_address?: string | null | undefined;
4781
+ full_name?: string | null | undefined;
4782
+ phone_number?: string | null | undefined;
4783
+ };
4784
+ modified_to: {
4785
+ email_address?: string | null | undefined;
4786
+ full_name?: string | null | undefined;
4787
+ phone_number?: string | null | undefined;
4788
+ };
4789
+ }, {
4790
+ created_at: string;
4791
+ modification_code: "profile";
4792
+ modified_from: {
4793
+ email_address?: string | null | undefined;
4794
+ full_name?: string | null | undefined;
4795
+ phone_number?: string | null | undefined;
4796
+ };
4797
+ modified_to: {
4798
+ email_address?: string | null | undefined;
4799
+ full_name?: string | null | undefined;
4800
+ phone_number?: string | null | undefined;
4801
+ };
4802
+ }>, z.ZodObject<z.objectUtil.extendShape<{
4803
+ created_at: z.ZodString;
4804
+ }, {
4805
+ modification_code: z.ZodLiteral<"access_schedule">;
4806
+ modified_from: z.ZodObject<{
4807
+ starts_at: z.ZodString;
4808
+ ends_at: z.ZodNullable<z.ZodString>;
4809
+ }, "strip", z.ZodTypeAny, {
4810
+ starts_at: string;
4811
+ ends_at: string | null;
4812
+ }, {
4813
+ starts_at: string;
4814
+ ends_at: string | null;
4815
+ }>;
4816
+ modified_to: z.ZodObject<{
4817
+ starts_at: z.ZodString;
4818
+ ends_at: z.ZodNullable<z.ZodString>;
4819
+ }, "strip", z.ZodTypeAny, {
4820
+ starts_at: string;
4821
+ ends_at: string | null;
4822
+ }, {
4823
+ starts_at: string;
4824
+ ends_at: string | null;
4825
+ }>;
4826
+ }>, "strip", z.ZodTypeAny, {
4827
+ created_at: string;
4828
+ modification_code: "access_schedule";
4829
+ modified_from: {
4830
+ starts_at: string;
4831
+ ends_at: string | null;
4832
+ };
4833
+ modified_to: {
4834
+ starts_at: string;
4835
+ ends_at: string | null;
4836
+ };
4837
+ }, {
4838
+ created_at: string;
4839
+ modification_code: "access_schedule";
4840
+ modified_from: {
4841
+ starts_at: string;
4842
+ ends_at: string | null;
4843
+ };
4844
+ modified_to: {
4845
+ starts_at: string;
4846
+ ends_at: string | null;
4847
+ };
4848
+ }>, z.ZodObject<z.objectUtil.extendShape<{
4849
+ created_at: z.ZodString;
4850
+ }, {
4851
+ modification_code: z.ZodLiteral<"suspension_state">;
4852
+ modified_from: z.ZodObject<{
4853
+ is_suspended: z.ZodBoolean;
4854
+ }, "strip", z.ZodTypeAny, {
4855
+ is_suspended: boolean;
4856
+ }, {
4857
+ is_suspended: boolean;
4858
+ }>;
4859
+ modified_to: z.ZodObject<{
4860
+ is_suspended: z.ZodBoolean;
4861
+ }, "strip", z.ZodTypeAny, {
4862
+ is_suspended: boolean;
4863
+ }, {
4864
+ is_suspended: boolean;
4865
+ }>;
4866
+ }>, "strip", z.ZodTypeAny, {
4867
+ created_at: string;
4868
+ modification_code: "suspension_state";
4869
+ modified_from: {
4870
+ is_suspended: boolean;
4871
+ };
4872
+ modified_to: {
4873
+ is_suspended: boolean;
4874
+ };
4875
+ }, {
4876
+ created_at: string;
4877
+ modification_code: "suspension_state";
4878
+ modified_from: {
4879
+ is_suspended: boolean;
4880
+ };
4881
+ modified_to: {
4882
+ is_suspended: boolean;
4883
+ };
4884
+ }>, z.ZodObject<z.objectUtil.extendShape<{
4885
+ created_at: z.ZodString;
4886
+ }, {
4887
+ modification_code: z.ZodLiteral<"acs_access_group_membership">;
4888
+ modified_from: z.ZodObject<{
4889
+ acs_access_group_id: z.ZodNullable<z.ZodString>;
4890
+ }, "strip", z.ZodTypeAny, {
4891
+ acs_access_group_id: string | null;
4892
+ }, {
4893
+ acs_access_group_id: string | null;
4894
+ }>;
4895
+ modified_to: z.ZodObject<{
4896
+ acs_access_group_id: z.ZodNullable<z.ZodString>;
4897
+ }, "strip", z.ZodTypeAny, {
4898
+ acs_access_group_id: string | null;
4899
+ }, {
4900
+ acs_access_group_id: string | null;
4901
+ }>;
4902
+ }>, "strip", z.ZodTypeAny, {
4903
+ created_at: string;
4904
+ modification_code: "acs_access_group_membership";
4905
+ modified_from: {
4906
+ acs_access_group_id: string | null;
4907
+ };
4908
+ modified_to: {
4909
+ acs_access_group_id: string | null;
4910
+ };
4911
+ }, {
4912
+ created_at: string;
4913
+ modification_code: "acs_access_group_membership";
4914
+ modified_from: {
4915
+ acs_access_group_id: string | null;
4916
+ };
4917
+ modified_to: {
4918
+ acs_access_group_id: string | null;
4919
+ };
4920
+ }>]>, "many">>;
4746
4921
  }, {
4747
4922
  full_name: z.ZodOptional<z.ZodString>;
4748
4923
  email: z.ZodOptional<z.ZodString>;
@@ -4797,18 +4972,61 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
4797
4972
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
4798
4973
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
4799
4974
  user_identity_id?: string | undefined;
4800
- full_name?: string | undefined;
4801
4975
  email_address?: string | undefined;
4976
+ full_name?: string | undefined;
4802
4977
  phone_number?: string | undefined;
4803
- hid_acs_system_id?: string | undefined;
4804
- is_suspended?: boolean | undefined;
4805
4978
  access_schedule?: {
4806
4979
  starts_at: string;
4807
4980
  ends_at: string | null;
4808
4981
  } | undefined;
4982
+ is_suspended?: boolean | undefined;
4983
+ hid_acs_system_id?: string | undefined;
4809
4984
  user_identity_full_name?: string | null | undefined;
4810
4985
  user_identity_email_address?: string | null | undefined;
4811
4986
  user_identity_phone_number?: string | null | undefined;
4987
+ pending_modifications?: ({
4988
+ created_at: string;
4989
+ modification_code: "profile";
4990
+ modified_from: {
4991
+ email_address?: string | null | undefined;
4992
+ full_name?: string | null | undefined;
4993
+ phone_number?: string | null | undefined;
4994
+ };
4995
+ modified_to: {
4996
+ email_address?: string | null | undefined;
4997
+ full_name?: string | null | undefined;
4998
+ phone_number?: string | null | undefined;
4999
+ };
5000
+ } | {
5001
+ created_at: string;
5002
+ modification_code: "access_schedule";
5003
+ modified_from: {
5004
+ starts_at: string;
5005
+ ends_at: string | null;
5006
+ };
5007
+ modified_to: {
5008
+ starts_at: string;
5009
+ ends_at: string | null;
5010
+ };
5011
+ } | {
5012
+ created_at: string;
5013
+ modification_code: "suspension_state";
5014
+ modified_from: {
5015
+ is_suspended: boolean;
5016
+ };
5017
+ modified_to: {
5018
+ is_suspended: boolean;
5019
+ };
5020
+ } | {
5021
+ created_at: string;
5022
+ modification_code: "acs_access_group_membership";
5023
+ modified_from: {
5024
+ acs_access_group_id: string | null;
5025
+ };
5026
+ modified_to: {
5027
+ acs_access_group_id: string | null;
5028
+ };
5029
+ })[] | undefined;
4812
5030
  }, {
4813
5031
  display_name: string;
4814
5032
  created_at: string;
@@ -4856,18 +5074,61 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
4856
5074
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
4857
5075
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
4858
5076
  user_identity_id?: string | undefined;
4859
- full_name?: string | undefined;
4860
5077
  email_address?: string | undefined;
5078
+ full_name?: string | undefined;
4861
5079
  phone_number?: string | undefined;
4862
- hid_acs_system_id?: string | undefined;
4863
- is_suspended?: boolean | undefined;
4864
5080
  access_schedule?: {
4865
5081
  starts_at: string;
4866
5082
  ends_at: string | null;
4867
5083
  } | undefined;
5084
+ is_suspended?: boolean | undefined;
5085
+ hid_acs_system_id?: string | undefined;
4868
5086
  user_identity_full_name?: string | null | undefined;
4869
5087
  user_identity_email_address?: string | null | undefined;
4870
5088
  user_identity_phone_number?: string | null | undefined;
5089
+ pending_modifications?: ({
5090
+ created_at: string;
5091
+ modification_code: "profile";
5092
+ modified_from: {
5093
+ email_address?: string | null | undefined;
5094
+ full_name?: string | null | undefined;
5095
+ phone_number?: string | null | undefined;
5096
+ };
5097
+ modified_to: {
5098
+ email_address?: string | null | undefined;
5099
+ full_name?: string | null | undefined;
5100
+ phone_number?: string | null | undefined;
5101
+ };
5102
+ } | {
5103
+ created_at: string;
5104
+ modification_code: "access_schedule";
5105
+ modified_from: {
5106
+ starts_at: string;
5107
+ ends_at: string | null;
5108
+ };
5109
+ modified_to: {
5110
+ starts_at: string;
5111
+ ends_at: string | null;
5112
+ };
5113
+ } | {
5114
+ created_at: string;
5115
+ modification_code: "suspension_state";
5116
+ modified_from: {
5117
+ is_suspended: boolean;
5118
+ };
5119
+ modified_to: {
5120
+ is_suspended: boolean;
5121
+ };
5122
+ } | {
5123
+ created_at: string;
5124
+ modification_code: "acs_access_group_membership";
5125
+ modified_from: {
5126
+ acs_access_group_id: string | null;
5127
+ };
5128
+ modified_to: {
5129
+ acs_access_group_id: string | null;
5130
+ };
5131
+ })[] | undefined;
4871
5132
  }>;
4872
5133
  declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4873
5134
  acs_user_id: z.ZodString;
@@ -5001,6 +5262,181 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5001
5262
  created_at: string;
5002
5263
  error_code: "failed_to_delete_on_acs_system";
5003
5264
  }>]>, "many">;
5265
+ pending_modifications: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"modification_code", [z.ZodObject<z.objectUtil.extendShape<{
5266
+ created_at: z.ZodString;
5267
+ }, {
5268
+ modification_code: z.ZodLiteral<"profile">;
5269
+ modified_from: z.ZodObject<{
5270
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5271
+ full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5272
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
5273
+ }, "strip", z.ZodTypeAny, {
5274
+ email_address?: string | null | undefined;
5275
+ full_name?: string | null | undefined;
5276
+ phone_number?: string | null | undefined;
5277
+ }, {
5278
+ email_address?: string | null | undefined;
5279
+ full_name?: string | null | undefined;
5280
+ phone_number?: string | null | undefined;
5281
+ }>;
5282
+ modified_to: z.ZodObject<{
5283
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5284
+ full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5285
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
5286
+ }, "strip", z.ZodTypeAny, {
5287
+ email_address?: string | null | undefined;
5288
+ full_name?: string | null | undefined;
5289
+ phone_number?: string | null | undefined;
5290
+ }, {
5291
+ email_address?: string | null | undefined;
5292
+ full_name?: string | null | undefined;
5293
+ phone_number?: string | null | undefined;
5294
+ }>;
5295
+ }>, "strip", z.ZodTypeAny, {
5296
+ created_at: string;
5297
+ modification_code: "profile";
5298
+ modified_from: {
5299
+ email_address?: string | null | undefined;
5300
+ full_name?: string | null | undefined;
5301
+ phone_number?: string | null | undefined;
5302
+ };
5303
+ modified_to: {
5304
+ email_address?: string | null | undefined;
5305
+ full_name?: string | null | undefined;
5306
+ phone_number?: string | null | undefined;
5307
+ };
5308
+ }, {
5309
+ created_at: string;
5310
+ modification_code: "profile";
5311
+ modified_from: {
5312
+ email_address?: string | null | undefined;
5313
+ full_name?: string | null | undefined;
5314
+ phone_number?: string | null | undefined;
5315
+ };
5316
+ modified_to: {
5317
+ email_address?: string | null | undefined;
5318
+ full_name?: string | null | undefined;
5319
+ phone_number?: string | null | undefined;
5320
+ };
5321
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5322
+ created_at: z.ZodString;
5323
+ }, {
5324
+ modification_code: z.ZodLiteral<"access_schedule">;
5325
+ modified_from: z.ZodObject<{
5326
+ starts_at: z.ZodString;
5327
+ ends_at: z.ZodNullable<z.ZodString>;
5328
+ }, "strip", z.ZodTypeAny, {
5329
+ starts_at: string;
5330
+ ends_at: string | null;
5331
+ }, {
5332
+ starts_at: string;
5333
+ ends_at: string | null;
5334
+ }>;
5335
+ modified_to: z.ZodObject<{
5336
+ starts_at: z.ZodString;
5337
+ ends_at: z.ZodNullable<z.ZodString>;
5338
+ }, "strip", z.ZodTypeAny, {
5339
+ starts_at: string;
5340
+ ends_at: string | null;
5341
+ }, {
5342
+ starts_at: string;
5343
+ ends_at: string | null;
5344
+ }>;
5345
+ }>, "strip", z.ZodTypeAny, {
5346
+ created_at: string;
5347
+ modification_code: "access_schedule";
5348
+ modified_from: {
5349
+ starts_at: string;
5350
+ ends_at: string | null;
5351
+ };
5352
+ modified_to: {
5353
+ starts_at: string;
5354
+ ends_at: string | null;
5355
+ };
5356
+ }, {
5357
+ created_at: string;
5358
+ modification_code: "access_schedule";
5359
+ modified_from: {
5360
+ starts_at: string;
5361
+ ends_at: string | null;
5362
+ };
5363
+ modified_to: {
5364
+ starts_at: string;
5365
+ ends_at: string | null;
5366
+ };
5367
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5368
+ created_at: z.ZodString;
5369
+ }, {
5370
+ modification_code: z.ZodLiteral<"suspension_state">;
5371
+ modified_from: z.ZodObject<{
5372
+ is_suspended: z.ZodBoolean;
5373
+ }, "strip", z.ZodTypeAny, {
5374
+ is_suspended: boolean;
5375
+ }, {
5376
+ is_suspended: boolean;
5377
+ }>;
5378
+ modified_to: z.ZodObject<{
5379
+ is_suspended: z.ZodBoolean;
5380
+ }, "strip", z.ZodTypeAny, {
5381
+ is_suspended: boolean;
5382
+ }, {
5383
+ is_suspended: boolean;
5384
+ }>;
5385
+ }>, "strip", z.ZodTypeAny, {
5386
+ created_at: string;
5387
+ modification_code: "suspension_state";
5388
+ modified_from: {
5389
+ is_suspended: boolean;
5390
+ };
5391
+ modified_to: {
5392
+ is_suspended: boolean;
5393
+ };
5394
+ }, {
5395
+ created_at: string;
5396
+ modification_code: "suspension_state";
5397
+ modified_from: {
5398
+ is_suspended: boolean;
5399
+ };
5400
+ modified_to: {
5401
+ is_suspended: boolean;
5402
+ };
5403
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5404
+ created_at: z.ZodString;
5405
+ }, {
5406
+ modification_code: z.ZodLiteral<"acs_access_group_membership">;
5407
+ modified_from: z.ZodObject<{
5408
+ acs_access_group_id: z.ZodNullable<z.ZodString>;
5409
+ }, "strip", z.ZodTypeAny, {
5410
+ acs_access_group_id: string | null;
5411
+ }, {
5412
+ acs_access_group_id: string | null;
5413
+ }>;
5414
+ modified_to: z.ZodObject<{
5415
+ acs_access_group_id: z.ZodNullable<z.ZodString>;
5416
+ }, "strip", z.ZodTypeAny, {
5417
+ acs_access_group_id: string | null;
5418
+ }, {
5419
+ acs_access_group_id: string | null;
5420
+ }>;
5421
+ }>, "strip", z.ZodTypeAny, {
5422
+ created_at: string;
5423
+ modification_code: "acs_access_group_membership";
5424
+ modified_from: {
5425
+ acs_access_group_id: string | null;
5426
+ };
5427
+ modified_to: {
5428
+ acs_access_group_id: string | null;
5429
+ };
5430
+ }, {
5431
+ created_at: string;
5432
+ modification_code: "acs_access_group_membership";
5433
+ modified_from: {
5434
+ acs_access_group_id: string | null;
5435
+ };
5436
+ modified_to: {
5437
+ acs_access_group_id: string | null;
5438
+ };
5439
+ }>]>, "many">>;
5004
5440
  }, {
5005
5441
  full_name: z.ZodOptional<z.ZodString>;
5006
5442
  email: z.ZodOptional<z.ZodString>;
@@ -5055,18 +5491,61 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5055
5491
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
5056
5492
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
5057
5493
  user_identity_id?: string | undefined;
5058
- full_name?: string | undefined;
5059
5494
  email_address?: string | undefined;
5495
+ full_name?: string | undefined;
5060
5496
  phone_number?: string | undefined;
5061
- hid_acs_system_id?: string | undefined;
5062
- is_suspended?: boolean | undefined;
5063
5497
  access_schedule?: {
5064
5498
  starts_at: string;
5065
5499
  ends_at: string | null;
5066
5500
  } | undefined;
5501
+ is_suspended?: boolean | undefined;
5502
+ hid_acs_system_id?: string | undefined;
5067
5503
  user_identity_full_name?: string | null | undefined;
5068
5504
  user_identity_email_address?: string | null | undefined;
5069
5505
  user_identity_phone_number?: string | null | undefined;
5506
+ pending_modifications?: ({
5507
+ created_at: string;
5508
+ modification_code: "profile";
5509
+ modified_from: {
5510
+ email_address?: string | null | undefined;
5511
+ full_name?: string | null | undefined;
5512
+ phone_number?: string | null | undefined;
5513
+ };
5514
+ modified_to: {
5515
+ email_address?: string | null | undefined;
5516
+ full_name?: string | null | undefined;
5517
+ phone_number?: string | null | undefined;
5518
+ };
5519
+ } | {
5520
+ created_at: string;
5521
+ modification_code: "access_schedule";
5522
+ modified_from: {
5523
+ starts_at: string;
5524
+ ends_at: string | null;
5525
+ };
5526
+ modified_to: {
5527
+ starts_at: string;
5528
+ ends_at: string | null;
5529
+ };
5530
+ } | {
5531
+ created_at: string;
5532
+ modification_code: "suspension_state";
5533
+ modified_from: {
5534
+ is_suspended: boolean;
5535
+ };
5536
+ modified_to: {
5537
+ is_suspended: boolean;
5538
+ };
5539
+ } | {
5540
+ created_at: string;
5541
+ modification_code: "acs_access_group_membership";
5542
+ modified_from: {
5543
+ acs_access_group_id: string | null;
5544
+ };
5545
+ modified_to: {
5546
+ acs_access_group_id: string | null;
5547
+ };
5548
+ })[] | undefined;
5070
5549
  }, {
5071
5550
  display_name: string;
5072
5551
  created_at: string;
@@ -5114,18 +5593,61 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5114
5593
  is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
5115
5594
  latest_desired_state_synced_with_provider_at?: string | null | undefined;
5116
5595
  user_identity_id?: string | undefined;
5117
- full_name?: string | undefined;
5118
5596
  email_address?: string | undefined;
5597
+ full_name?: string | undefined;
5119
5598
  phone_number?: string | undefined;
5120
- hid_acs_system_id?: string | undefined;
5121
- is_suspended?: boolean | undefined;
5122
5599
  access_schedule?: {
5123
5600
  starts_at: string;
5124
5601
  ends_at: string | null;
5125
5602
  } | undefined;
5603
+ is_suspended?: boolean | undefined;
5604
+ hid_acs_system_id?: string | undefined;
5126
5605
  user_identity_full_name?: string | null | undefined;
5127
5606
  user_identity_email_address?: string | null | undefined;
5128
5607
  user_identity_phone_number?: string | null | undefined;
5608
+ pending_modifications?: ({
5609
+ created_at: string;
5610
+ modification_code: "profile";
5611
+ modified_from: {
5612
+ email_address?: string | null | undefined;
5613
+ full_name?: string | null | undefined;
5614
+ phone_number?: string | null | undefined;
5615
+ };
5616
+ modified_to: {
5617
+ email_address?: string | null | undefined;
5618
+ full_name?: string | null | undefined;
5619
+ phone_number?: string | null | undefined;
5620
+ };
5621
+ } | {
5622
+ created_at: string;
5623
+ modification_code: "access_schedule";
5624
+ modified_from: {
5625
+ starts_at: string;
5626
+ ends_at: string | null;
5627
+ };
5628
+ modified_to: {
5629
+ starts_at: string;
5630
+ ends_at: string | null;
5631
+ };
5632
+ } | {
5633
+ created_at: string;
5634
+ modification_code: "suspension_state";
5635
+ modified_from: {
5636
+ is_suspended: boolean;
5637
+ };
5638
+ modified_to: {
5639
+ is_suspended: boolean;
5640
+ };
5641
+ } | {
5642
+ created_at: string;
5643
+ modification_code: "acs_access_group_membership";
5644
+ modified_from: {
5645
+ acs_access_group_id: string | null;
5646
+ };
5647
+ modified_to: {
5648
+ acs_access_group_id: string | null;
5649
+ };
5650
+ })[] | undefined;
5129
5651
  }>;
5130
5652
  type AcsUser = z.output<typeof acs_user>;
5131
5653
 
@@ -8734,8 +9256,64 @@ declare const bridge_client_session: z.ZodObject<{
8734
9256
  bridge_client_name: z.ZodString;
8735
9257
  bridge_client_time_zone: z.ZodString;
8736
9258
  bridge_client_machine_identifier_key: z.ZodString;
9259
+ errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
9260
+ message: z.ZodString;
9261
+ created_at: z.ZodString;
9262
+ }, {
9263
+ error_code: z.ZodLiteral<"bridge_lan_unreachable">;
9264
+ is_tailscale_proxy_reachable: z.ZodBoolean;
9265
+ is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
9266
+ can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
9267
+ can_tailscale_proxy_reach_bridge: z.ZodBoolean;
9268
+ is_bridge_socks_server_healthy: z.ZodBoolean;
9269
+ }>, "strip", z.ZodTypeAny, {
9270
+ message: string;
9271
+ created_at: string;
9272
+ error_code: "bridge_lan_unreachable";
9273
+ is_tailscale_proxy_reachable: boolean;
9274
+ is_tailscale_proxy_socks_server_healthy: boolean;
9275
+ can_tailscale_proxy_reach_tailscale_network: boolean;
9276
+ can_tailscale_proxy_reach_bridge: boolean;
9277
+ is_bridge_socks_server_healthy: boolean;
9278
+ }, {
9279
+ message: string;
9280
+ created_at: string;
9281
+ error_code: "bridge_lan_unreachable";
9282
+ is_tailscale_proxy_reachable: boolean;
9283
+ is_tailscale_proxy_socks_server_healthy: boolean;
9284
+ can_tailscale_proxy_reach_tailscale_network: boolean;
9285
+ can_tailscale_proxy_reach_bridge: boolean;
9286
+ is_bridge_socks_server_healthy: boolean;
9287
+ }>, z.ZodObject<z.objectUtil.extendShape<{
9288
+ message: z.ZodString;
9289
+ created_at: z.ZodString;
9290
+ }, {
9291
+ error_code: z.ZodLiteral<"no_communication_from_bridge">;
9292
+ }>, "strip", z.ZodTypeAny, {
9293
+ message: string;
9294
+ created_at: string;
9295
+ error_code: "no_communication_from_bridge";
9296
+ }, {
9297
+ message: string;
9298
+ created_at: string;
9299
+ error_code: "no_communication_from_bridge";
9300
+ }>]>, "many">;
8737
9301
  }, "strip", z.ZodTypeAny, {
8738
9302
  created_at: string;
9303
+ errors: ({
9304
+ message: string;
9305
+ created_at: string;
9306
+ error_code: "bridge_lan_unreachable";
9307
+ is_tailscale_proxy_reachable: boolean;
9308
+ is_tailscale_proxy_socks_server_healthy: boolean;
9309
+ can_tailscale_proxy_reach_tailscale_network: boolean;
9310
+ can_tailscale_proxy_reach_bridge: boolean;
9311
+ is_bridge_socks_server_healthy: boolean;
9312
+ } | {
9313
+ message: string;
9314
+ created_at: string;
9315
+ error_code: "no_communication_from_bridge";
9316
+ })[];
8739
9317
  bridge_client_session_id: string;
8740
9318
  bridge_client_session_token: string;
8741
9319
  pairing_code: string;
@@ -8747,6 +9325,20 @@ declare const bridge_client_session: z.ZodObject<{
8747
9325
  bridge_client_machine_identifier_key: string;
8748
9326
  }, {
8749
9327
  created_at: string;
9328
+ errors: ({
9329
+ message: string;
9330
+ created_at: string;
9331
+ error_code: "bridge_lan_unreachable";
9332
+ is_tailscale_proxy_reachable: boolean;
9333
+ is_tailscale_proxy_socks_server_healthy: boolean;
9334
+ can_tailscale_proxy_reach_tailscale_network: boolean;
9335
+ can_tailscale_proxy_reach_bridge: boolean;
9336
+ is_bridge_socks_server_healthy: boolean;
9337
+ } | {
9338
+ message: string;
9339
+ created_at: string;
9340
+ error_code: "no_communication_from_bridge";
9341
+ })[];
8750
9342
  bridge_client_session_id: string;
8751
9343
  bridge_client_session_token: string;
8752
9344
  pairing_code: string;
@@ -18575,8 +19167,8 @@ declare const user_identity: z.ZodObject<{
18575
19167
  created_at: string;
18576
19168
  workspace_id: string;
18577
19169
  user_identity_id: string;
18578
- full_name: string | null;
18579
19170
  email_address: string | null;
19171
+ full_name: string | null;
18580
19172
  phone_number: string | null;
18581
19173
  user_identity_key: string | null;
18582
19174
  }, {
@@ -18584,8 +19176,8 @@ declare const user_identity: z.ZodObject<{
18584
19176
  created_at: string;
18585
19177
  workspace_id: string;
18586
19178
  user_identity_id: string;
18587
- full_name: string | null;
18588
19179
  email_address: string | null;
19180
+ full_name: string | null;
18589
19181
  phone_number: string | null;
18590
19182
  user_identity_key: string | null;
18591
19183
  }>;
@@ -19849,6 +20441,222 @@ declare const _default: {
19849
20441
  type: string;
19850
20442
  'x-undocumented': string;
19851
20443
  };
20444
+ pending_modifications: {
20445
+ items: {
20446
+ discriminator: {
20447
+ propertyName: string;
20448
+ };
20449
+ oneOf: ({
20450
+ properties: {
20451
+ created_at: {
20452
+ format: string;
20453
+ type: string;
20454
+ };
20455
+ modification_code: {
20456
+ enum: string[];
20457
+ type: string;
20458
+ };
20459
+ modified_from: {
20460
+ properties: {
20461
+ email_address: {
20462
+ format: string;
20463
+ nullable: boolean;
20464
+ type: string;
20465
+ };
20466
+ full_name: {
20467
+ nullable: boolean;
20468
+ type: string;
20469
+ };
20470
+ phone_number: {
20471
+ nullable: boolean;
20472
+ type: string;
20473
+ };
20474
+ ends_at?: never;
20475
+ starts_at?: never;
20476
+ is_suspended?: never;
20477
+ acs_access_group_id?: never;
20478
+ };
20479
+ type: string;
20480
+ required?: never;
20481
+ };
20482
+ modified_to: {
20483
+ properties: {
20484
+ email_address: {
20485
+ format: string;
20486
+ nullable: boolean;
20487
+ type: string;
20488
+ };
20489
+ full_name: {
20490
+ nullable: boolean;
20491
+ type: string;
20492
+ };
20493
+ phone_number: {
20494
+ nullable: boolean;
20495
+ type: string;
20496
+ };
20497
+ ends_at?: never;
20498
+ starts_at?: never;
20499
+ is_suspended?: never;
20500
+ acs_access_group_id?: never;
20501
+ };
20502
+ type: string;
20503
+ required?: never;
20504
+ };
20505
+ };
20506
+ required: string[];
20507
+ type: string;
20508
+ } | {
20509
+ properties: {
20510
+ created_at: {
20511
+ format: string;
20512
+ type: string;
20513
+ };
20514
+ modification_code: {
20515
+ enum: string[];
20516
+ type: string;
20517
+ };
20518
+ modified_from: {
20519
+ properties: {
20520
+ ends_at: {
20521
+ description: string;
20522
+ format: string;
20523
+ nullable: boolean;
20524
+ type: string;
20525
+ };
20526
+ starts_at: {
20527
+ description: string;
20528
+ format: string;
20529
+ type: string;
20530
+ };
20531
+ email_address?: never;
20532
+ full_name?: never;
20533
+ phone_number?: never;
20534
+ is_suspended?: never;
20535
+ acs_access_group_id?: never;
20536
+ };
20537
+ required: string[];
20538
+ type: string;
20539
+ };
20540
+ modified_to: {
20541
+ properties: {
20542
+ ends_at: {
20543
+ description: string;
20544
+ format: string;
20545
+ nullable: boolean;
20546
+ type: string;
20547
+ };
20548
+ starts_at: {
20549
+ description: string;
20550
+ format: string;
20551
+ type: string;
20552
+ };
20553
+ email_address?: never;
20554
+ full_name?: never;
20555
+ phone_number?: never;
20556
+ is_suspended?: never;
20557
+ acs_access_group_id?: never;
20558
+ };
20559
+ required: string[];
20560
+ type: string;
20561
+ };
20562
+ };
20563
+ required: string[];
20564
+ type: string;
20565
+ } | {
20566
+ properties: {
20567
+ created_at: {
20568
+ format: string;
20569
+ type: string;
20570
+ };
20571
+ modification_code: {
20572
+ enum: string[];
20573
+ type: string;
20574
+ };
20575
+ modified_from: {
20576
+ properties: {
20577
+ is_suspended: {
20578
+ type: string;
20579
+ };
20580
+ email_address?: never;
20581
+ full_name?: never;
20582
+ phone_number?: never;
20583
+ ends_at?: never;
20584
+ starts_at?: never;
20585
+ acs_access_group_id?: never;
20586
+ };
20587
+ required: string[];
20588
+ type: string;
20589
+ };
20590
+ modified_to: {
20591
+ properties: {
20592
+ is_suspended: {
20593
+ type: string;
20594
+ };
20595
+ email_address?: never;
20596
+ full_name?: never;
20597
+ phone_number?: never;
20598
+ ends_at?: never;
20599
+ starts_at?: never;
20600
+ acs_access_group_id?: never;
20601
+ };
20602
+ required: string[];
20603
+ type: string;
20604
+ };
20605
+ };
20606
+ required: string[];
20607
+ type: string;
20608
+ } | {
20609
+ properties: {
20610
+ created_at: {
20611
+ format: string;
20612
+ type: string;
20613
+ };
20614
+ modification_code: {
20615
+ enum: string[];
20616
+ type: string;
20617
+ };
20618
+ modified_from: {
20619
+ properties: {
20620
+ acs_access_group_id: {
20621
+ format: string;
20622
+ nullable: boolean;
20623
+ type: string;
20624
+ };
20625
+ email_address?: never;
20626
+ full_name?: never;
20627
+ phone_number?: never;
20628
+ ends_at?: never;
20629
+ starts_at?: never;
20630
+ is_suspended?: never;
20631
+ };
20632
+ required: string[];
20633
+ type: string;
20634
+ };
20635
+ modified_to: {
20636
+ properties: {
20637
+ acs_access_group_id: {
20638
+ format: string;
20639
+ nullable: boolean;
20640
+ type: string;
20641
+ };
20642
+ email_address?: never;
20643
+ full_name?: never;
20644
+ phone_number?: never;
20645
+ ends_at?: never;
20646
+ starts_at?: never;
20647
+ is_suspended?: never;
20648
+ };
20649
+ required: string[];
20650
+ type: string;
20651
+ };
20652
+ };
20653
+ required: string[];
20654
+ type: string;
20655
+ })[];
20656
+ };
20657
+ type: string;
20658
+ 'x-undocumented': string;
20659
+ };
19852
20660
  phone_number: {
19853
20661
  description: string;
19854
20662
  type: string;
@@ -26751,6 +27559,222 @@ declare const _default: {
26751
27559
  type: string;
26752
27560
  'x-undocumented': string;
26753
27561
  };
27562
+ pending_modifications: {
27563
+ items: {
27564
+ discriminator: {
27565
+ propertyName: string;
27566
+ };
27567
+ oneOf: ({
27568
+ properties: {
27569
+ created_at: {
27570
+ format: string;
27571
+ type: string;
27572
+ };
27573
+ modification_code: {
27574
+ enum: string[];
27575
+ type: string;
27576
+ };
27577
+ modified_from: {
27578
+ properties: {
27579
+ email_address: {
27580
+ format: string;
27581
+ nullable: boolean;
27582
+ type: string;
27583
+ };
27584
+ full_name: {
27585
+ nullable: boolean;
27586
+ type: string;
27587
+ };
27588
+ phone_number: {
27589
+ nullable: boolean;
27590
+ type: string;
27591
+ };
27592
+ ends_at?: never;
27593
+ starts_at?: never;
27594
+ is_suspended?: never;
27595
+ acs_access_group_id?: never;
27596
+ };
27597
+ type: string;
27598
+ required?: never;
27599
+ };
27600
+ modified_to: {
27601
+ properties: {
27602
+ email_address: {
27603
+ format: string;
27604
+ nullable: boolean;
27605
+ type: string;
27606
+ };
27607
+ full_name: {
27608
+ nullable: boolean;
27609
+ type: string;
27610
+ };
27611
+ phone_number: {
27612
+ nullable: boolean;
27613
+ type: string;
27614
+ };
27615
+ ends_at?: never;
27616
+ starts_at?: never;
27617
+ is_suspended?: never;
27618
+ acs_access_group_id?: never;
27619
+ };
27620
+ type: string;
27621
+ required?: never;
27622
+ };
27623
+ };
27624
+ required: string[];
27625
+ type: string;
27626
+ } | {
27627
+ properties: {
27628
+ created_at: {
27629
+ format: string;
27630
+ type: string;
27631
+ };
27632
+ modification_code: {
27633
+ enum: string[];
27634
+ type: string;
27635
+ };
27636
+ modified_from: {
27637
+ properties: {
27638
+ ends_at: {
27639
+ description: string;
27640
+ format: string;
27641
+ nullable: boolean;
27642
+ type: string;
27643
+ };
27644
+ starts_at: {
27645
+ description: string;
27646
+ format: string;
27647
+ type: string;
27648
+ };
27649
+ email_address?: never;
27650
+ full_name?: never;
27651
+ phone_number?: never;
27652
+ is_suspended?: never;
27653
+ acs_access_group_id?: never;
27654
+ };
27655
+ required: string[];
27656
+ type: string;
27657
+ };
27658
+ modified_to: {
27659
+ properties: {
27660
+ ends_at: {
27661
+ description: string;
27662
+ format: string;
27663
+ nullable: boolean;
27664
+ type: string;
27665
+ };
27666
+ starts_at: {
27667
+ description: string;
27668
+ format: string;
27669
+ type: string;
27670
+ };
27671
+ email_address?: never;
27672
+ full_name?: never;
27673
+ phone_number?: never;
27674
+ is_suspended?: never;
27675
+ acs_access_group_id?: never;
27676
+ };
27677
+ required: string[];
27678
+ type: string;
27679
+ };
27680
+ };
27681
+ required: string[];
27682
+ type: string;
27683
+ } | {
27684
+ properties: {
27685
+ created_at: {
27686
+ format: string;
27687
+ type: string;
27688
+ };
27689
+ modification_code: {
27690
+ enum: string[];
27691
+ type: string;
27692
+ };
27693
+ modified_from: {
27694
+ properties: {
27695
+ is_suspended: {
27696
+ type: string;
27697
+ };
27698
+ email_address?: never;
27699
+ full_name?: never;
27700
+ phone_number?: never;
27701
+ ends_at?: never;
27702
+ starts_at?: never;
27703
+ acs_access_group_id?: never;
27704
+ };
27705
+ required: string[];
27706
+ type: string;
27707
+ };
27708
+ modified_to: {
27709
+ properties: {
27710
+ is_suspended: {
27711
+ type: string;
27712
+ };
27713
+ email_address?: never;
27714
+ full_name?: never;
27715
+ phone_number?: never;
27716
+ ends_at?: never;
27717
+ starts_at?: never;
27718
+ acs_access_group_id?: never;
27719
+ };
27720
+ required: string[];
27721
+ type: string;
27722
+ };
27723
+ };
27724
+ required: string[];
27725
+ type: string;
27726
+ } | {
27727
+ properties: {
27728
+ created_at: {
27729
+ format: string;
27730
+ type: string;
27731
+ };
27732
+ modification_code: {
27733
+ enum: string[];
27734
+ type: string;
27735
+ };
27736
+ modified_from: {
27737
+ properties: {
27738
+ acs_access_group_id: {
27739
+ format: string;
27740
+ nullable: boolean;
27741
+ type: string;
27742
+ };
27743
+ email_address?: never;
27744
+ full_name?: never;
27745
+ phone_number?: never;
27746
+ ends_at?: never;
27747
+ starts_at?: never;
27748
+ is_suspended?: never;
27749
+ };
27750
+ required: string[];
27751
+ type: string;
27752
+ };
27753
+ modified_to: {
27754
+ properties: {
27755
+ acs_access_group_id: {
27756
+ format: string;
27757
+ nullable: boolean;
27758
+ type: string;
27759
+ };
27760
+ email_address?: never;
27761
+ full_name?: never;
27762
+ phone_number?: never;
27763
+ ends_at?: never;
27764
+ starts_at?: never;
27765
+ is_suspended?: never;
27766
+ };
27767
+ required: string[];
27768
+ type: string;
27769
+ };
27770
+ };
27771
+ required: string[];
27772
+ type: string;
27773
+ })[];
27774
+ };
27775
+ type: string;
27776
+ 'x-undocumented': string;
27777
+ };
26754
27778
  phone_number: {
26755
27779
  description: string;
26756
27780
  type: string;
@@ -38717,6 +39741,77 @@ declare const _default: {
38717
39741
  format: string;
38718
39742
  type: string;
38719
39743
  };
39744
+ errors: {
39745
+ items: {
39746
+ description: string;
39747
+ discriminator: {
39748
+ propertyName: string;
39749
+ };
39750
+ oneOf: ({
39751
+ description: string;
39752
+ properties: {
39753
+ can_tailscale_proxy_reach_bridge: {
39754
+ description: string;
39755
+ type: string;
39756
+ };
39757
+ can_tailscale_proxy_reach_tailscale_network: {
39758
+ description: string;
39759
+ type: string;
39760
+ };
39761
+ created_at: {
39762
+ format: string;
39763
+ type: string;
39764
+ };
39765
+ error_code: {
39766
+ description: string;
39767
+ enum: string[];
39768
+ type: string;
39769
+ };
39770
+ is_bridge_socks_server_healthy: {
39771
+ description: string;
39772
+ type: string;
39773
+ };
39774
+ is_tailscale_proxy_reachable: {
39775
+ description: string;
39776
+ type: string;
39777
+ };
39778
+ is_tailscale_proxy_socks_server_healthy: {
39779
+ description: string;
39780
+ type: string;
39781
+ };
39782
+ message: {
39783
+ type: string;
39784
+ };
39785
+ };
39786
+ required: string[];
39787
+ type: string;
39788
+ } | {
39789
+ description: string;
39790
+ properties: {
39791
+ created_at: {
39792
+ format: string;
39793
+ type: string;
39794
+ };
39795
+ error_code: {
39796
+ description: string;
39797
+ enum: string[];
39798
+ type: string;
39799
+ };
39800
+ message: {
39801
+ type: string;
39802
+ };
39803
+ can_tailscale_proxy_reach_bridge?: never;
39804
+ can_tailscale_proxy_reach_tailscale_network?: never;
39805
+ is_bridge_socks_server_healthy?: never;
39806
+ is_tailscale_proxy_reachable?: never;
39807
+ is_tailscale_proxy_socks_server_healthy?: never;
39808
+ };
39809
+ required: string[];
39810
+ type: string;
39811
+ })[];
39812
+ };
39813
+ type: string;
39814
+ };
38720
39815
  pairing_code: {
38721
39816
  maxLength: number;
38722
39817
  minLength: number;
@@ -38800,87 +39895,229 @@ declare const _default: {
38800
39895
  };
38801
39896
  created_at: {
38802
39897
  format: string;
38803
- type: string;
38804
- };
38805
- pairing_code: {
38806
- maxLength: number;
38807
- minLength: number;
38808
- type: string;
38809
- };
38810
- pairing_code_expires_at: {
38811
- format: string;
38812
- type: string;
38813
- };
38814
- tailscale_auth_key: {
38815
- nullable: boolean;
38816
- type: string;
38817
- };
38818
- tailscale_hostname: {
38819
- type: string;
38820
- };
38821
- };
38822
- required: string[];
38823
- type: string;
38824
- 'x-route-path': string;
38825
- 'x-undocumented': string;
38826
- };
38827
- ok: {
38828
- type: string;
38829
- };
38830
- };
38831
- required: string[];
38832
- type: string;
38833
- };
38834
- };
38835
- };
38836
- description: string;
38837
- };
38838
- 400: {
38839
- description: string;
38840
- };
38841
- 401: {
38842
- description: string;
38843
- };
38844
- };
38845
- security: {
38846
- bridge_client_session: never[];
38847
- }[];
38848
- summary: string;
38849
- tags: never[];
38850
- 'x-fern-ignore': boolean;
38851
- 'x-response-key': string;
38852
- 'x-title': string;
38853
- 'x-undocumented': string;
38854
- };
38855
- post: {
38856
- description: string;
38857
- operationId: string;
38858
- responses: {
38859
- 200: {
38860
- content: {
38861
- 'application/json': {
38862
- schema: {
38863
- properties: {
38864
- bridge_client_session: {
38865
- properties: {
38866
- bridge_client_machine_identifier_key: {
38867
- type: string;
38868
- };
38869
- bridge_client_name: {
38870
- type: string;
38871
- };
38872
- bridge_client_session_id: {
38873
- format: string;
38874
- type: string;
38875
- };
38876
- bridge_client_session_token: {
38877
- type: string;
38878
- };
38879
- bridge_client_time_zone: {
38880
- type: string;
38881
- };
38882
- created_at: {
38883
- format: string;
39898
+ type: string;
39899
+ };
39900
+ errors: {
39901
+ items: {
39902
+ description: string;
39903
+ discriminator: {
39904
+ propertyName: string;
39905
+ };
39906
+ oneOf: ({
39907
+ description: string;
39908
+ properties: {
39909
+ can_tailscale_proxy_reach_bridge: {
39910
+ description: string;
39911
+ type: string;
39912
+ };
39913
+ can_tailscale_proxy_reach_tailscale_network: {
39914
+ description: string;
39915
+ type: string;
39916
+ };
39917
+ created_at: {
39918
+ format: string;
39919
+ type: string;
39920
+ };
39921
+ error_code: {
39922
+ description: string;
39923
+ enum: string[];
39924
+ type: string;
39925
+ };
39926
+ is_bridge_socks_server_healthy: {
39927
+ description: string;
39928
+ type: string;
39929
+ };
39930
+ is_tailscale_proxy_reachable: {
39931
+ description: string;
39932
+ type: string;
39933
+ };
39934
+ is_tailscale_proxy_socks_server_healthy: {
39935
+ description: string;
39936
+ type: string;
39937
+ };
39938
+ message: {
39939
+ type: string;
39940
+ };
39941
+ };
39942
+ required: string[];
39943
+ type: string;
39944
+ } | {
39945
+ description: string;
39946
+ properties: {
39947
+ created_at: {
39948
+ format: string;
39949
+ type: string;
39950
+ };
39951
+ error_code: {
39952
+ description: string;
39953
+ enum: string[];
39954
+ type: string;
39955
+ };
39956
+ message: {
39957
+ type: string;
39958
+ };
39959
+ can_tailscale_proxy_reach_bridge?: never;
39960
+ can_tailscale_proxy_reach_tailscale_network?: never;
39961
+ is_bridge_socks_server_healthy?: never;
39962
+ is_tailscale_proxy_reachable?: never;
39963
+ is_tailscale_proxy_socks_server_healthy?: never;
39964
+ };
39965
+ required: string[];
39966
+ type: string;
39967
+ })[];
39968
+ };
39969
+ type: string;
39970
+ };
39971
+ pairing_code: {
39972
+ maxLength: number;
39973
+ minLength: number;
39974
+ type: string;
39975
+ };
39976
+ pairing_code_expires_at: {
39977
+ format: string;
39978
+ type: string;
39979
+ };
39980
+ tailscale_auth_key: {
39981
+ nullable: boolean;
39982
+ type: string;
39983
+ };
39984
+ tailscale_hostname: {
39985
+ type: string;
39986
+ };
39987
+ };
39988
+ required: string[];
39989
+ type: string;
39990
+ 'x-route-path': string;
39991
+ 'x-undocumented': string;
39992
+ };
39993
+ ok: {
39994
+ type: string;
39995
+ };
39996
+ };
39997
+ required: string[];
39998
+ type: string;
39999
+ };
40000
+ };
40001
+ };
40002
+ description: string;
40003
+ };
40004
+ 400: {
40005
+ description: string;
40006
+ };
40007
+ 401: {
40008
+ description: string;
40009
+ };
40010
+ };
40011
+ security: {
40012
+ bridge_client_session: never[];
40013
+ }[];
40014
+ summary: string;
40015
+ tags: never[];
40016
+ 'x-fern-ignore': boolean;
40017
+ 'x-response-key': string;
40018
+ 'x-title': string;
40019
+ 'x-undocumented': string;
40020
+ };
40021
+ post: {
40022
+ description: string;
40023
+ operationId: string;
40024
+ responses: {
40025
+ 200: {
40026
+ content: {
40027
+ 'application/json': {
40028
+ schema: {
40029
+ properties: {
40030
+ bridge_client_session: {
40031
+ properties: {
40032
+ bridge_client_machine_identifier_key: {
40033
+ type: string;
40034
+ };
40035
+ bridge_client_name: {
40036
+ type: string;
40037
+ };
40038
+ bridge_client_session_id: {
40039
+ format: string;
40040
+ type: string;
40041
+ };
40042
+ bridge_client_session_token: {
40043
+ type: string;
40044
+ };
40045
+ bridge_client_time_zone: {
40046
+ type: string;
40047
+ };
40048
+ created_at: {
40049
+ format: string;
40050
+ type: string;
40051
+ };
40052
+ errors: {
40053
+ items: {
40054
+ description: string;
40055
+ discriminator: {
40056
+ propertyName: string;
40057
+ };
40058
+ oneOf: ({
40059
+ description: string;
40060
+ properties: {
40061
+ can_tailscale_proxy_reach_bridge: {
40062
+ description: string;
40063
+ type: string;
40064
+ };
40065
+ can_tailscale_proxy_reach_tailscale_network: {
40066
+ description: string;
40067
+ type: string;
40068
+ };
40069
+ created_at: {
40070
+ format: string;
40071
+ type: string;
40072
+ };
40073
+ error_code: {
40074
+ description: string;
40075
+ enum: string[];
40076
+ type: string;
40077
+ };
40078
+ is_bridge_socks_server_healthy: {
40079
+ description: string;
40080
+ type: string;
40081
+ };
40082
+ is_tailscale_proxy_reachable: {
40083
+ description: string;
40084
+ type: string;
40085
+ };
40086
+ is_tailscale_proxy_socks_server_healthy: {
40087
+ description: string;
40088
+ type: string;
40089
+ };
40090
+ message: {
40091
+ type: string;
40092
+ };
40093
+ };
40094
+ required: string[];
40095
+ type: string;
40096
+ } | {
40097
+ description: string;
40098
+ properties: {
40099
+ created_at: {
40100
+ format: string;
40101
+ type: string;
40102
+ };
40103
+ error_code: {
40104
+ description: string;
40105
+ enum: string[];
40106
+ type: string;
40107
+ };
40108
+ message: {
40109
+ type: string;
40110
+ };
40111
+ can_tailscale_proxy_reach_bridge?: never;
40112
+ can_tailscale_proxy_reach_tailscale_network?: never;
40113
+ is_bridge_socks_server_healthy?: never;
40114
+ is_tailscale_proxy_reachable?: never;
40115
+ is_tailscale_proxy_socks_server_healthy?: never;
40116
+ };
40117
+ required: string[];
40118
+ type: string;
40119
+ })[];
40120
+ };
38884
40121
  type: string;
38885
40122
  };
38886
40123
  pairing_code: {
@@ -38968,6 +40205,77 @@ declare const _default: {
38968
40205
  format: string;
38969
40206
  type: string;
38970
40207
  };
40208
+ errors: {
40209
+ items: {
40210
+ description: string;
40211
+ discriminator: {
40212
+ propertyName: string;
40213
+ };
40214
+ oneOf: ({
40215
+ description: string;
40216
+ properties: {
40217
+ can_tailscale_proxy_reach_bridge: {
40218
+ description: string;
40219
+ type: string;
40220
+ };
40221
+ can_tailscale_proxy_reach_tailscale_network: {
40222
+ description: string;
40223
+ type: string;
40224
+ };
40225
+ created_at: {
40226
+ format: string;
40227
+ type: string;
40228
+ };
40229
+ error_code: {
40230
+ description: string;
40231
+ enum: string[];
40232
+ type: string;
40233
+ };
40234
+ is_bridge_socks_server_healthy: {
40235
+ description: string;
40236
+ type: string;
40237
+ };
40238
+ is_tailscale_proxy_reachable: {
40239
+ description: string;
40240
+ type: string;
40241
+ };
40242
+ is_tailscale_proxy_socks_server_healthy: {
40243
+ description: string;
40244
+ type: string;
40245
+ };
40246
+ message: {
40247
+ type: string;
40248
+ };
40249
+ };
40250
+ required: string[];
40251
+ type: string;
40252
+ } | {
40253
+ description: string;
40254
+ properties: {
40255
+ created_at: {
40256
+ format: string;
40257
+ type: string;
40258
+ };
40259
+ error_code: {
40260
+ description: string;
40261
+ enum: string[];
40262
+ type: string;
40263
+ };
40264
+ message: {
40265
+ type: string;
40266
+ };
40267
+ can_tailscale_proxy_reach_bridge?: never;
40268
+ can_tailscale_proxy_reach_tailscale_network?: never;
40269
+ is_bridge_socks_server_healthy?: never;
40270
+ is_tailscale_proxy_reachable?: never;
40271
+ is_tailscale_proxy_socks_server_healthy?: never;
40272
+ };
40273
+ required: string[];
40274
+ type: string;
40275
+ })[];
40276
+ };
40277
+ type: string;
40278
+ };
38971
40279
  pairing_code: {
38972
40280
  maxLength: number;
38973
40281
  minLength: number;
@@ -51602,6 +52910,54 @@ interface Routes {
51602
52910
  message: string;
51603
52911
  error_code: 'failed_to_delete_on_acs_system';
51604
52912
  }>;
52913
+ /** */
52914
+ pending_modifications?: Array<{
52915
+ created_at: string;
52916
+ modification_code: 'profile';
52917
+ modified_from: {
52918
+ email_address?: (string | null) | undefined;
52919
+ full_name?: (string | null) | undefined;
52920
+ phone_number?: ((string | undefined) | null) | undefined;
52921
+ };
52922
+ modified_to: {
52923
+ email_address?: (string | null) | undefined;
52924
+ full_name?: (string | null) | undefined;
52925
+ phone_number?: ((string | undefined) | null) | undefined;
52926
+ };
52927
+ } | {
52928
+ created_at: string;
52929
+ modification_code: 'access_schedule';
52930
+ modified_from: {
52931
+ /** 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. */
52932
+ starts_at: string;
52933
+ /** 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. */
52934
+ ends_at: string | null;
52935
+ };
52936
+ modified_to: {
52937
+ /** 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. */
52938
+ starts_at: string;
52939
+ /** 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. */
52940
+ ends_at: string | null;
52941
+ };
52942
+ } | {
52943
+ created_at: string;
52944
+ modification_code: 'suspension_state';
52945
+ modified_from: {
52946
+ is_suspended: boolean;
52947
+ };
52948
+ modified_to: {
52949
+ is_suspended: boolean;
52950
+ };
52951
+ } | {
52952
+ created_at: string;
52953
+ modification_code: 'acs_access_group_membership';
52954
+ modified_from: {
52955
+ acs_access_group_id: string | null;
52956
+ };
52957
+ modified_to: {
52958
+ acs_access_group_id: string | null;
52959
+ };
52960
+ }> | undefined;
51605
52961
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
51606
52962
  full_name?: string | undefined;
51607
52963
  /**
@@ -55785,6 +57141,54 @@ interface Routes {
55785
57141
  message: string;
55786
57142
  error_code: 'failed_to_delete_on_acs_system';
55787
57143
  }>;
57144
+ /** */
57145
+ pending_modifications?: Array<{
57146
+ created_at: string;
57147
+ modification_code: 'profile';
57148
+ modified_from: {
57149
+ email_address?: (string | null) | undefined;
57150
+ full_name?: (string | null) | undefined;
57151
+ phone_number?: ((string | undefined) | null) | undefined;
57152
+ };
57153
+ modified_to: {
57154
+ email_address?: (string | null) | undefined;
57155
+ full_name?: (string | null) | undefined;
57156
+ phone_number?: ((string | undefined) | null) | undefined;
57157
+ };
57158
+ } | {
57159
+ created_at: string;
57160
+ modification_code: 'access_schedule';
57161
+ modified_from: {
57162
+ /** 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. */
57163
+ starts_at: string;
57164
+ /** 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. */
57165
+ ends_at: string | null;
57166
+ };
57167
+ modified_to: {
57168
+ /** 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. */
57169
+ starts_at: string;
57170
+ /** 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. */
57171
+ ends_at: string | null;
57172
+ };
57173
+ } | {
57174
+ created_at: string;
57175
+ modification_code: 'suspension_state';
57176
+ modified_from: {
57177
+ is_suspended: boolean;
57178
+ };
57179
+ modified_to: {
57180
+ is_suspended: boolean;
57181
+ };
57182
+ } | {
57183
+ created_at: string;
57184
+ modification_code: 'acs_access_group_membership';
57185
+ modified_from: {
57186
+ acs_access_group_id: string | null;
57187
+ };
57188
+ modified_to: {
57189
+ acs_access_group_id: string | null;
57190
+ };
57191
+ }> | undefined;
55788
57192
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
55789
57193
  full_name?: string | undefined;
55790
57194
  /**
@@ -55911,6 +57315,54 @@ interface Routes {
55911
57315
  message: string;
55912
57316
  error_code: 'failed_to_delete_on_acs_system';
55913
57317
  }>;
57318
+ /** */
57319
+ pending_modifications?: Array<{
57320
+ created_at: string;
57321
+ modification_code: 'profile';
57322
+ modified_from: {
57323
+ email_address?: (string | null) | undefined;
57324
+ full_name?: (string | null) | undefined;
57325
+ phone_number?: ((string | undefined) | null) | undefined;
57326
+ };
57327
+ modified_to: {
57328
+ email_address?: (string | null) | undefined;
57329
+ full_name?: (string | null) | undefined;
57330
+ phone_number?: ((string | undefined) | null) | undefined;
57331
+ };
57332
+ } | {
57333
+ created_at: string;
57334
+ modification_code: 'access_schedule';
57335
+ modified_from: {
57336
+ /** 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. */
57337
+ starts_at: string;
57338
+ /** 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. */
57339
+ ends_at: string | null;
57340
+ };
57341
+ modified_to: {
57342
+ /** 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. */
57343
+ starts_at: string;
57344
+ /** 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. */
57345
+ ends_at: string | null;
57346
+ };
57347
+ } | {
57348
+ created_at: string;
57349
+ modification_code: 'suspension_state';
57350
+ modified_from: {
57351
+ is_suspended: boolean;
57352
+ };
57353
+ modified_to: {
57354
+ is_suspended: boolean;
57355
+ };
57356
+ } | {
57357
+ created_at: string;
57358
+ modification_code: 'acs_access_group_membership';
57359
+ modified_from: {
57360
+ acs_access_group_id: string | null;
57361
+ };
57362
+ modified_to: {
57363
+ acs_access_group_id: string | null;
57364
+ };
57365
+ }> | undefined;
55914
57366
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
55915
57367
  full_name?: string | undefined;
55916
57368
  /**
@@ -56037,6 +57489,54 @@ interface Routes {
56037
57489
  message: string;
56038
57490
  error_code: 'failed_to_delete_on_acs_system';
56039
57491
  }>;
57492
+ /** */
57493
+ pending_modifications?: Array<{
57494
+ created_at: string;
57495
+ modification_code: 'profile';
57496
+ modified_from: {
57497
+ email_address?: (string | null) | undefined;
57498
+ full_name?: (string | null) | undefined;
57499
+ phone_number?: ((string | undefined) | null) | undefined;
57500
+ };
57501
+ modified_to: {
57502
+ email_address?: (string | null) | undefined;
57503
+ full_name?: (string | null) | undefined;
57504
+ phone_number?: ((string | undefined) | null) | undefined;
57505
+ };
57506
+ } | {
57507
+ created_at: string;
57508
+ modification_code: 'access_schedule';
57509
+ modified_from: {
57510
+ /** 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. */
57511
+ starts_at: string;
57512
+ /** 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. */
57513
+ ends_at: string | null;
57514
+ };
57515
+ modified_to: {
57516
+ /** 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. */
57517
+ starts_at: string;
57518
+ /** 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. */
57519
+ ends_at: string | null;
57520
+ };
57521
+ } | {
57522
+ created_at: string;
57523
+ modification_code: 'suspension_state';
57524
+ modified_from: {
57525
+ is_suspended: boolean;
57526
+ };
57527
+ modified_to: {
57528
+ is_suspended: boolean;
57529
+ };
57530
+ } | {
57531
+ created_at: string;
57532
+ modification_code: 'acs_access_group_membership';
57533
+ modified_from: {
57534
+ acs_access_group_id: string | null;
57535
+ };
57536
+ modified_to: {
57537
+ acs_access_group_id: string | null;
57538
+ };
57539
+ }> | undefined;
56040
57540
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56041
57541
  full_name?: string | undefined;
56042
57542
  /**
@@ -56272,6 +57772,54 @@ interface Routes {
56272
57772
  message: string;
56273
57773
  error_code: 'failed_to_delete_on_acs_system';
56274
57774
  }>;
57775
+ /** */
57776
+ pending_modifications?: Array<{
57777
+ created_at: string;
57778
+ modification_code: 'profile';
57779
+ modified_from: {
57780
+ email_address?: (string | null) | undefined;
57781
+ full_name?: (string | null) | undefined;
57782
+ phone_number?: ((string | undefined) | null) | undefined;
57783
+ };
57784
+ modified_to: {
57785
+ email_address?: (string | null) | undefined;
57786
+ full_name?: (string | null) | undefined;
57787
+ phone_number?: ((string | undefined) | null) | undefined;
57788
+ };
57789
+ } | {
57790
+ created_at: string;
57791
+ modification_code: 'access_schedule';
57792
+ modified_from: {
57793
+ /** 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. */
57794
+ starts_at: string;
57795
+ /** 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. */
57796
+ ends_at: string | null;
57797
+ };
57798
+ modified_to: {
57799
+ /** 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. */
57800
+ starts_at: string;
57801
+ /** 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. */
57802
+ ends_at: string | null;
57803
+ };
57804
+ } | {
57805
+ created_at: string;
57806
+ modification_code: 'suspension_state';
57807
+ modified_from: {
57808
+ is_suspended: boolean;
57809
+ };
57810
+ modified_to: {
57811
+ is_suspended: boolean;
57812
+ };
57813
+ } | {
57814
+ created_at: string;
57815
+ modification_code: 'acs_access_group_membership';
57816
+ modified_from: {
57817
+ acs_access_group_id: string | null;
57818
+ };
57819
+ modified_to: {
57820
+ acs_access_group_id: string | null;
57821
+ };
57822
+ }> | undefined;
56275
57823
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56276
57824
  full_name?: string | undefined;
56277
57825
  /**
@@ -56388,6 +57936,54 @@ interface Routes {
56388
57936
  message: string;
56389
57937
  error_code: 'failed_to_delete_on_acs_system';
56390
57938
  }>;
57939
+ /** */
57940
+ pending_modifications?: Array<{
57941
+ created_at: string;
57942
+ modification_code: 'profile';
57943
+ modified_from: {
57944
+ email_address?: (string | null) | undefined;
57945
+ full_name?: (string | null) | undefined;
57946
+ phone_number?: ((string | undefined) | null) | undefined;
57947
+ };
57948
+ modified_to: {
57949
+ email_address?: (string | null) | undefined;
57950
+ full_name?: (string | null) | undefined;
57951
+ phone_number?: ((string | undefined) | null) | undefined;
57952
+ };
57953
+ } | {
57954
+ created_at: string;
57955
+ modification_code: 'access_schedule';
57956
+ modified_from: {
57957
+ /** 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. */
57958
+ starts_at: string;
57959
+ /** 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. */
57960
+ ends_at: string | null;
57961
+ };
57962
+ modified_to: {
57963
+ /** 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. */
57964
+ starts_at: string;
57965
+ /** 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. */
57966
+ ends_at: string | null;
57967
+ };
57968
+ } | {
57969
+ created_at: string;
57970
+ modification_code: 'suspension_state';
57971
+ modified_from: {
57972
+ is_suspended: boolean;
57973
+ };
57974
+ modified_to: {
57975
+ is_suspended: boolean;
57976
+ };
57977
+ } | {
57978
+ created_at: string;
57979
+ modification_code: 'acs_access_group_membership';
57980
+ modified_from: {
57981
+ acs_access_group_id: string | null;
57982
+ };
57983
+ modified_to: {
57984
+ acs_access_group_id: string | null;
57985
+ };
57986
+ }> | undefined;
56391
57987
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56392
57988
  full_name?: string | undefined;
56393
57989
  /**
@@ -72459,6 +74055,27 @@ interface Routes {
72459
74055
  bridge_client_name: string;
72460
74056
  bridge_client_time_zone: string;
72461
74057
  bridge_client_machine_identifier_key: string;
74058
+ errors: Array<{
74059
+ message: string;
74060
+ created_at: string;
74061
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74062
+ error_code: 'bridge_lan_unreachable';
74063
+ /** Seam cannot reach the tailscale proxy */
74064
+ is_tailscale_proxy_reachable: boolean;
74065
+ /** Tailscale proxy's SOCKS server is unhealthy */
74066
+ is_tailscale_proxy_socks_server_healthy: boolean;
74067
+ /** Tailscale proxy cannot reach the Tailscale network */
74068
+ can_tailscale_proxy_reach_tailscale_network: boolean;
74069
+ /** Tailscale proxy cannot reach the bridge */
74070
+ can_tailscale_proxy_reach_bridge: boolean;
74071
+ /** Bridge's SOCKS server is unhealthy */
74072
+ is_bridge_socks_server_healthy: boolean;
74073
+ } | {
74074
+ message: string;
74075
+ created_at: string;
74076
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74077
+ error_code: 'no_communication_from_bridge';
74078
+ }>;
72462
74079
  };
72463
74080
  };
72464
74081
  };
@@ -72482,6 +74099,27 @@ interface Routes {
72482
74099
  bridge_client_name: string;
72483
74100
  bridge_client_time_zone: string;
72484
74101
  bridge_client_machine_identifier_key: string;
74102
+ errors: Array<{
74103
+ message: string;
74104
+ created_at: string;
74105
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74106
+ error_code: 'bridge_lan_unreachable';
74107
+ /** Seam cannot reach the tailscale proxy */
74108
+ is_tailscale_proxy_reachable: boolean;
74109
+ /** Tailscale proxy's SOCKS server is unhealthy */
74110
+ is_tailscale_proxy_socks_server_healthy: boolean;
74111
+ /** Tailscale proxy cannot reach the Tailscale network */
74112
+ can_tailscale_proxy_reach_tailscale_network: boolean;
74113
+ /** Tailscale proxy cannot reach the bridge */
74114
+ can_tailscale_proxy_reach_bridge: boolean;
74115
+ /** Bridge's SOCKS server is unhealthy */
74116
+ is_bridge_socks_server_healthy: boolean;
74117
+ } | {
74118
+ message: string;
74119
+ created_at: string;
74120
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74121
+ error_code: 'no_communication_from_bridge';
74122
+ }>;
72485
74123
  };
72486
74124
  };
72487
74125
  };
@@ -72505,6 +74143,27 @@ interface Routes {
72505
74143
  bridge_client_name: string;
72506
74144
  bridge_client_time_zone: string;
72507
74145
  bridge_client_machine_identifier_key: string;
74146
+ errors: Array<{
74147
+ message: string;
74148
+ created_at: string;
74149
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74150
+ error_code: 'bridge_lan_unreachable';
74151
+ /** Seam cannot reach the tailscale proxy */
74152
+ is_tailscale_proxy_reachable: boolean;
74153
+ /** Tailscale proxy's SOCKS server is unhealthy */
74154
+ is_tailscale_proxy_socks_server_healthy: boolean;
74155
+ /** Tailscale proxy cannot reach the Tailscale network */
74156
+ can_tailscale_proxy_reach_tailscale_network: boolean;
74157
+ /** Tailscale proxy cannot reach the bridge */
74158
+ can_tailscale_proxy_reach_bridge: boolean;
74159
+ /** Bridge's SOCKS server is unhealthy */
74160
+ is_bridge_socks_server_healthy: boolean;
74161
+ } | {
74162
+ message: string;
74163
+ created_at: string;
74164
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74165
+ error_code: 'no_communication_from_bridge';
74166
+ }>;
72508
74167
  };
72509
74168
  };
72510
74169
  };
@@ -83281,6 +84940,54 @@ interface Routes {
83281
84940
  message: string;
83282
84941
  error_code: 'failed_to_delete_on_acs_system';
83283
84942
  }>;
84943
+ /** */
84944
+ pending_modifications?: Array<{
84945
+ created_at: string;
84946
+ modification_code: 'profile';
84947
+ modified_from: {
84948
+ email_address?: (string | null) | undefined;
84949
+ full_name?: (string | null) | undefined;
84950
+ phone_number?: ((string | undefined) | null) | undefined;
84951
+ };
84952
+ modified_to: {
84953
+ email_address?: (string | null) | undefined;
84954
+ full_name?: (string | null) | undefined;
84955
+ phone_number?: ((string | undefined) | null) | undefined;
84956
+ };
84957
+ } | {
84958
+ created_at: string;
84959
+ modification_code: 'access_schedule';
84960
+ modified_from: {
84961
+ /** 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. */
84962
+ starts_at: string;
84963
+ /** 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. */
84964
+ ends_at: string | null;
84965
+ };
84966
+ modified_to: {
84967
+ /** 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. */
84968
+ starts_at: string;
84969
+ /** 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. */
84970
+ ends_at: string | null;
84971
+ };
84972
+ } | {
84973
+ created_at: string;
84974
+ modification_code: 'suspension_state';
84975
+ modified_from: {
84976
+ is_suspended: boolean;
84977
+ };
84978
+ modified_to: {
84979
+ is_suspended: boolean;
84980
+ };
84981
+ } | {
84982
+ created_at: string;
84983
+ modification_code: 'acs_access_group_membership';
84984
+ modified_from: {
84985
+ acs_access_group_id: string | null;
84986
+ };
84987
+ modified_to: {
84988
+ acs_access_group_id: string | null;
84989
+ };
84990
+ }> | undefined;
83284
84991
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
83285
84992
  full_name?: string | undefined;
83286
84993
  /**