@seamapi/types 1.365.0 → 1.366.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 (28) hide show
  1. package/dist/connect.cjs +370 -2
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1304 -14
  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/user-identities/user-identity.d.ts +2 -2
  17. package/lib/seam/connect/openapi.d.ts +432 -0
  18. package/lib/seam/connect/openapi.js +320 -0
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +336 -0
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +9 -2
  23. package/src/lib/seam/connect/models/acs/acs-users/index.ts +2 -0
  24. package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +56 -0
  25. package/src/lib/seam/connect/models/acs/index.ts +1 -1
  26. package/src/lib/seam/connect/openapi.ts +328 -0
  27. package/src/lib/seam/connect/route-types.ts +385 -0
  28. 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
 
@@ -18575,8 +19097,8 @@ declare const user_identity: z.ZodObject<{
18575
19097
  created_at: string;
18576
19098
  workspace_id: string;
18577
19099
  user_identity_id: string;
18578
- full_name: string | null;
18579
19100
  email_address: string | null;
19101
+ full_name: string | null;
18580
19102
  phone_number: string | null;
18581
19103
  user_identity_key: string | null;
18582
19104
  }, {
@@ -18584,8 +19106,8 @@ declare const user_identity: z.ZodObject<{
18584
19106
  created_at: string;
18585
19107
  workspace_id: string;
18586
19108
  user_identity_id: string;
18587
- full_name: string | null;
18588
19109
  email_address: string | null;
19110
+ full_name: string | null;
18589
19111
  phone_number: string | null;
18590
19112
  user_identity_key: string | null;
18591
19113
  }>;
@@ -19849,6 +20371,222 @@ declare const _default: {
19849
20371
  type: string;
19850
20372
  'x-undocumented': string;
19851
20373
  };
20374
+ pending_modifications: {
20375
+ items: {
20376
+ discriminator: {
20377
+ propertyName: string;
20378
+ };
20379
+ oneOf: ({
20380
+ properties: {
20381
+ created_at: {
20382
+ format: string;
20383
+ type: string;
20384
+ };
20385
+ modification_code: {
20386
+ enum: string[];
20387
+ type: string;
20388
+ };
20389
+ modified_from: {
20390
+ properties: {
20391
+ email_address: {
20392
+ format: string;
20393
+ nullable: boolean;
20394
+ type: string;
20395
+ };
20396
+ full_name: {
20397
+ nullable: boolean;
20398
+ type: string;
20399
+ };
20400
+ phone_number: {
20401
+ nullable: boolean;
20402
+ type: string;
20403
+ };
20404
+ ends_at?: never;
20405
+ starts_at?: never;
20406
+ is_suspended?: never;
20407
+ acs_access_group_id?: never;
20408
+ };
20409
+ type: string;
20410
+ required?: never;
20411
+ };
20412
+ modified_to: {
20413
+ properties: {
20414
+ email_address: {
20415
+ format: string;
20416
+ nullable: boolean;
20417
+ type: string;
20418
+ };
20419
+ full_name: {
20420
+ nullable: boolean;
20421
+ type: string;
20422
+ };
20423
+ phone_number: {
20424
+ nullable: boolean;
20425
+ type: string;
20426
+ };
20427
+ ends_at?: never;
20428
+ starts_at?: never;
20429
+ is_suspended?: never;
20430
+ acs_access_group_id?: never;
20431
+ };
20432
+ type: string;
20433
+ required?: never;
20434
+ };
20435
+ };
20436
+ required: string[];
20437
+ type: string;
20438
+ } | {
20439
+ properties: {
20440
+ created_at: {
20441
+ format: string;
20442
+ type: string;
20443
+ };
20444
+ modification_code: {
20445
+ enum: string[];
20446
+ type: string;
20447
+ };
20448
+ modified_from: {
20449
+ properties: {
20450
+ ends_at: {
20451
+ description: string;
20452
+ format: string;
20453
+ nullable: boolean;
20454
+ type: string;
20455
+ };
20456
+ starts_at: {
20457
+ description: string;
20458
+ format: string;
20459
+ type: string;
20460
+ };
20461
+ email_address?: never;
20462
+ full_name?: never;
20463
+ phone_number?: never;
20464
+ is_suspended?: never;
20465
+ acs_access_group_id?: never;
20466
+ };
20467
+ required: string[];
20468
+ type: string;
20469
+ };
20470
+ modified_to: {
20471
+ properties: {
20472
+ ends_at: {
20473
+ description: string;
20474
+ format: string;
20475
+ nullable: boolean;
20476
+ type: string;
20477
+ };
20478
+ starts_at: {
20479
+ description: string;
20480
+ format: string;
20481
+ type: string;
20482
+ };
20483
+ email_address?: never;
20484
+ full_name?: never;
20485
+ phone_number?: never;
20486
+ is_suspended?: never;
20487
+ acs_access_group_id?: never;
20488
+ };
20489
+ required: string[];
20490
+ type: string;
20491
+ };
20492
+ };
20493
+ required: string[];
20494
+ type: string;
20495
+ } | {
20496
+ properties: {
20497
+ created_at: {
20498
+ format: string;
20499
+ type: string;
20500
+ };
20501
+ modification_code: {
20502
+ enum: string[];
20503
+ type: string;
20504
+ };
20505
+ modified_from: {
20506
+ properties: {
20507
+ is_suspended: {
20508
+ type: string;
20509
+ };
20510
+ email_address?: never;
20511
+ full_name?: never;
20512
+ phone_number?: never;
20513
+ ends_at?: never;
20514
+ starts_at?: never;
20515
+ acs_access_group_id?: never;
20516
+ };
20517
+ required: string[];
20518
+ type: string;
20519
+ };
20520
+ modified_to: {
20521
+ properties: {
20522
+ is_suspended: {
20523
+ type: string;
20524
+ };
20525
+ email_address?: never;
20526
+ full_name?: never;
20527
+ phone_number?: never;
20528
+ ends_at?: never;
20529
+ starts_at?: never;
20530
+ acs_access_group_id?: never;
20531
+ };
20532
+ required: string[];
20533
+ type: string;
20534
+ };
20535
+ };
20536
+ required: string[];
20537
+ type: string;
20538
+ } | {
20539
+ properties: {
20540
+ created_at: {
20541
+ format: string;
20542
+ type: string;
20543
+ };
20544
+ modification_code: {
20545
+ enum: string[];
20546
+ type: string;
20547
+ };
20548
+ modified_from: {
20549
+ properties: {
20550
+ acs_access_group_id: {
20551
+ format: string;
20552
+ nullable: boolean;
20553
+ type: string;
20554
+ };
20555
+ email_address?: never;
20556
+ full_name?: never;
20557
+ phone_number?: never;
20558
+ ends_at?: never;
20559
+ starts_at?: never;
20560
+ is_suspended?: never;
20561
+ };
20562
+ required: string[];
20563
+ type: string;
20564
+ };
20565
+ modified_to: {
20566
+ properties: {
20567
+ acs_access_group_id: {
20568
+ format: string;
20569
+ nullable: boolean;
20570
+ type: string;
20571
+ };
20572
+ email_address?: never;
20573
+ full_name?: never;
20574
+ phone_number?: never;
20575
+ ends_at?: never;
20576
+ starts_at?: never;
20577
+ is_suspended?: never;
20578
+ };
20579
+ required: string[];
20580
+ type: string;
20581
+ };
20582
+ };
20583
+ required: string[];
20584
+ type: string;
20585
+ })[];
20586
+ };
20587
+ type: string;
20588
+ 'x-undocumented': string;
20589
+ };
19852
20590
  phone_number: {
19853
20591
  description: string;
19854
20592
  type: string;
@@ -26751,6 +27489,222 @@ declare const _default: {
26751
27489
  type: string;
26752
27490
  'x-undocumented': string;
26753
27491
  };
27492
+ pending_modifications: {
27493
+ items: {
27494
+ discriminator: {
27495
+ propertyName: string;
27496
+ };
27497
+ oneOf: ({
27498
+ properties: {
27499
+ created_at: {
27500
+ format: string;
27501
+ type: string;
27502
+ };
27503
+ modification_code: {
27504
+ enum: string[];
27505
+ type: string;
27506
+ };
27507
+ modified_from: {
27508
+ properties: {
27509
+ email_address: {
27510
+ format: string;
27511
+ nullable: boolean;
27512
+ type: string;
27513
+ };
27514
+ full_name: {
27515
+ nullable: boolean;
27516
+ type: string;
27517
+ };
27518
+ phone_number: {
27519
+ nullable: boolean;
27520
+ type: string;
27521
+ };
27522
+ ends_at?: never;
27523
+ starts_at?: never;
27524
+ is_suspended?: never;
27525
+ acs_access_group_id?: never;
27526
+ };
27527
+ type: string;
27528
+ required?: never;
27529
+ };
27530
+ modified_to: {
27531
+ properties: {
27532
+ email_address: {
27533
+ format: string;
27534
+ nullable: boolean;
27535
+ type: string;
27536
+ };
27537
+ full_name: {
27538
+ nullable: boolean;
27539
+ type: string;
27540
+ };
27541
+ phone_number: {
27542
+ nullable: boolean;
27543
+ type: string;
27544
+ };
27545
+ ends_at?: never;
27546
+ starts_at?: never;
27547
+ is_suspended?: never;
27548
+ acs_access_group_id?: never;
27549
+ };
27550
+ type: string;
27551
+ required?: never;
27552
+ };
27553
+ };
27554
+ required: string[];
27555
+ type: string;
27556
+ } | {
27557
+ properties: {
27558
+ created_at: {
27559
+ format: string;
27560
+ type: string;
27561
+ };
27562
+ modification_code: {
27563
+ enum: string[];
27564
+ type: string;
27565
+ };
27566
+ modified_from: {
27567
+ properties: {
27568
+ ends_at: {
27569
+ description: string;
27570
+ format: string;
27571
+ nullable: boolean;
27572
+ type: string;
27573
+ };
27574
+ starts_at: {
27575
+ description: string;
27576
+ format: string;
27577
+ type: string;
27578
+ };
27579
+ email_address?: never;
27580
+ full_name?: never;
27581
+ phone_number?: never;
27582
+ is_suspended?: never;
27583
+ acs_access_group_id?: never;
27584
+ };
27585
+ required: string[];
27586
+ type: string;
27587
+ };
27588
+ modified_to: {
27589
+ properties: {
27590
+ ends_at: {
27591
+ description: string;
27592
+ format: string;
27593
+ nullable: boolean;
27594
+ type: string;
27595
+ };
27596
+ starts_at: {
27597
+ description: string;
27598
+ format: string;
27599
+ type: string;
27600
+ };
27601
+ email_address?: never;
27602
+ full_name?: never;
27603
+ phone_number?: never;
27604
+ is_suspended?: never;
27605
+ acs_access_group_id?: never;
27606
+ };
27607
+ required: string[];
27608
+ type: string;
27609
+ };
27610
+ };
27611
+ required: string[];
27612
+ type: string;
27613
+ } | {
27614
+ properties: {
27615
+ created_at: {
27616
+ format: string;
27617
+ type: string;
27618
+ };
27619
+ modification_code: {
27620
+ enum: string[];
27621
+ type: string;
27622
+ };
27623
+ modified_from: {
27624
+ properties: {
27625
+ is_suspended: {
27626
+ type: string;
27627
+ };
27628
+ email_address?: never;
27629
+ full_name?: never;
27630
+ phone_number?: never;
27631
+ ends_at?: never;
27632
+ starts_at?: never;
27633
+ acs_access_group_id?: never;
27634
+ };
27635
+ required: string[];
27636
+ type: string;
27637
+ };
27638
+ modified_to: {
27639
+ properties: {
27640
+ is_suspended: {
27641
+ type: string;
27642
+ };
27643
+ email_address?: never;
27644
+ full_name?: never;
27645
+ phone_number?: never;
27646
+ ends_at?: never;
27647
+ starts_at?: never;
27648
+ acs_access_group_id?: never;
27649
+ };
27650
+ required: string[];
27651
+ type: string;
27652
+ };
27653
+ };
27654
+ required: string[];
27655
+ type: string;
27656
+ } | {
27657
+ properties: {
27658
+ created_at: {
27659
+ format: string;
27660
+ type: string;
27661
+ };
27662
+ modification_code: {
27663
+ enum: string[];
27664
+ type: string;
27665
+ };
27666
+ modified_from: {
27667
+ properties: {
27668
+ acs_access_group_id: {
27669
+ format: string;
27670
+ nullable: boolean;
27671
+ type: string;
27672
+ };
27673
+ email_address?: never;
27674
+ full_name?: never;
27675
+ phone_number?: never;
27676
+ ends_at?: never;
27677
+ starts_at?: never;
27678
+ is_suspended?: never;
27679
+ };
27680
+ required: string[];
27681
+ type: string;
27682
+ };
27683
+ modified_to: {
27684
+ properties: {
27685
+ acs_access_group_id: {
27686
+ format: string;
27687
+ nullable: boolean;
27688
+ type: string;
27689
+ };
27690
+ email_address?: never;
27691
+ full_name?: never;
27692
+ phone_number?: never;
27693
+ ends_at?: never;
27694
+ starts_at?: never;
27695
+ is_suspended?: never;
27696
+ };
27697
+ required: string[];
27698
+ type: string;
27699
+ };
27700
+ };
27701
+ required: string[];
27702
+ type: string;
27703
+ })[];
27704
+ };
27705
+ type: string;
27706
+ 'x-undocumented': string;
27707
+ };
26754
27708
  phone_number: {
26755
27709
  description: string;
26756
27710
  type: string;
@@ -51602,6 +52556,54 @@ interface Routes {
51602
52556
  message: string;
51603
52557
  error_code: 'failed_to_delete_on_acs_system';
51604
52558
  }>;
52559
+ /** */
52560
+ pending_modifications?: Array<{
52561
+ created_at: string;
52562
+ modification_code: 'profile';
52563
+ modified_from: {
52564
+ email_address?: (string | null) | undefined;
52565
+ full_name?: (string | null) | undefined;
52566
+ phone_number?: ((string | undefined) | null) | undefined;
52567
+ };
52568
+ modified_to: {
52569
+ email_address?: (string | null) | undefined;
52570
+ full_name?: (string | null) | undefined;
52571
+ phone_number?: ((string | undefined) | null) | undefined;
52572
+ };
52573
+ } | {
52574
+ created_at: string;
52575
+ modification_code: 'access_schedule';
52576
+ modified_from: {
52577
+ /** 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. */
52578
+ starts_at: string;
52579
+ /** 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. */
52580
+ ends_at: string | null;
52581
+ };
52582
+ modified_to: {
52583
+ /** 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. */
52584
+ starts_at: string;
52585
+ /** 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. */
52586
+ ends_at: string | null;
52587
+ };
52588
+ } | {
52589
+ created_at: string;
52590
+ modification_code: 'suspension_state';
52591
+ modified_from: {
52592
+ is_suspended: boolean;
52593
+ };
52594
+ modified_to: {
52595
+ is_suspended: boolean;
52596
+ };
52597
+ } | {
52598
+ created_at: string;
52599
+ modification_code: 'acs_access_group_membership';
52600
+ modified_from: {
52601
+ acs_access_group_id: string | null;
52602
+ };
52603
+ modified_to: {
52604
+ acs_access_group_id: string | null;
52605
+ };
52606
+ }> | undefined;
51605
52607
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
51606
52608
  full_name?: string | undefined;
51607
52609
  /**
@@ -55785,6 +56787,54 @@ interface Routes {
55785
56787
  message: string;
55786
56788
  error_code: 'failed_to_delete_on_acs_system';
55787
56789
  }>;
56790
+ /** */
56791
+ pending_modifications?: Array<{
56792
+ created_at: string;
56793
+ modification_code: 'profile';
56794
+ modified_from: {
56795
+ email_address?: (string | null) | undefined;
56796
+ full_name?: (string | null) | undefined;
56797
+ phone_number?: ((string | undefined) | null) | undefined;
56798
+ };
56799
+ modified_to: {
56800
+ email_address?: (string | null) | undefined;
56801
+ full_name?: (string | null) | undefined;
56802
+ phone_number?: ((string | undefined) | null) | undefined;
56803
+ };
56804
+ } | {
56805
+ created_at: string;
56806
+ modification_code: 'access_schedule';
56807
+ modified_from: {
56808
+ /** 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. */
56809
+ starts_at: string;
56810
+ /** 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. */
56811
+ ends_at: string | null;
56812
+ };
56813
+ modified_to: {
56814
+ /** 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. */
56815
+ starts_at: string;
56816
+ /** 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. */
56817
+ ends_at: string | null;
56818
+ };
56819
+ } | {
56820
+ created_at: string;
56821
+ modification_code: 'suspension_state';
56822
+ modified_from: {
56823
+ is_suspended: boolean;
56824
+ };
56825
+ modified_to: {
56826
+ is_suspended: boolean;
56827
+ };
56828
+ } | {
56829
+ created_at: string;
56830
+ modification_code: 'acs_access_group_membership';
56831
+ modified_from: {
56832
+ acs_access_group_id: string | null;
56833
+ };
56834
+ modified_to: {
56835
+ acs_access_group_id: string | null;
56836
+ };
56837
+ }> | undefined;
55788
56838
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
55789
56839
  full_name?: string | undefined;
55790
56840
  /**
@@ -55911,6 +56961,54 @@ interface Routes {
55911
56961
  message: string;
55912
56962
  error_code: 'failed_to_delete_on_acs_system';
55913
56963
  }>;
56964
+ /** */
56965
+ pending_modifications?: Array<{
56966
+ created_at: string;
56967
+ modification_code: 'profile';
56968
+ modified_from: {
56969
+ email_address?: (string | null) | undefined;
56970
+ full_name?: (string | null) | undefined;
56971
+ phone_number?: ((string | undefined) | null) | undefined;
56972
+ };
56973
+ modified_to: {
56974
+ email_address?: (string | null) | undefined;
56975
+ full_name?: (string | null) | undefined;
56976
+ phone_number?: ((string | undefined) | null) | undefined;
56977
+ };
56978
+ } | {
56979
+ created_at: string;
56980
+ modification_code: 'access_schedule';
56981
+ modified_from: {
56982
+ /** 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. */
56983
+ starts_at: string;
56984
+ /** 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. */
56985
+ ends_at: string | null;
56986
+ };
56987
+ modified_to: {
56988
+ /** 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. */
56989
+ starts_at: string;
56990
+ /** 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. */
56991
+ ends_at: string | null;
56992
+ };
56993
+ } | {
56994
+ created_at: string;
56995
+ modification_code: 'suspension_state';
56996
+ modified_from: {
56997
+ is_suspended: boolean;
56998
+ };
56999
+ modified_to: {
57000
+ is_suspended: boolean;
57001
+ };
57002
+ } | {
57003
+ created_at: string;
57004
+ modification_code: 'acs_access_group_membership';
57005
+ modified_from: {
57006
+ acs_access_group_id: string | null;
57007
+ };
57008
+ modified_to: {
57009
+ acs_access_group_id: string | null;
57010
+ };
57011
+ }> | undefined;
55914
57012
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
55915
57013
  full_name?: string | undefined;
55916
57014
  /**
@@ -56037,6 +57135,54 @@ interface Routes {
56037
57135
  message: string;
56038
57136
  error_code: 'failed_to_delete_on_acs_system';
56039
57137
  }>;
57138
+ /** */
57139
+ pending_modifications?: Array<{
57140
+ created_at: string;
57141
+ modification_code: 'profile';
57142
+ modified_from: {
57143
+ email_address?: (string | null) | undefined;
57144
+ full_name?: (string | null) | undefined;
57145
+ phone_number?: ((string | undefined) | null) | undefined;
57146
+ };
57147
+ modified_to: {
57148
+ email_address?: (string | null) | undefined;
57149
+ full_name?: (string | null) | undefined;
57150
+ phone_number?: ((string | undefined) | null) | undefined;
57151
+ };
57152
+ } | {
57153
+ created_at: string;
57154
+ modification_code: 'access_schedule';
57155
+ modified_from: {
57156
+ /** 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. */
57157
+ starts_at: string;
57158
+ /** 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. */
57159
+ ends_at: string | null;
57160
+ };
57161
+ modified_to: {
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
+ } | {
57168
+ created_at: string;
57169
+ modification_code: 'suspension_state';
57170
+ modified_from: {
57171
+ is_suspended: boolean;
57172
+ };
57173
+ modified_to: {
57174
+ is_suspended: boolean;
57175
+ };
57176
+ } | {
57177
+ created_at: string;
57178
+ modification_code: 'acs_access_group_membership';
57179
+ modified_from: {
57180
+ acs_access_group_id: string | null;
57181
+ };
57182
+ modified_to: {
57183
+ acs_access_group_id: string | null;
57184
+ };
57185
+ }> | undefined;
56040
57186
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56041
57187
  full_name?: string | undefined;
56042
57188
  /**
@@ -56272,6 +57418,54 @@ interface Routes {
56272
57418
  message: string;
56273
57419
  error_code: 'failed_to_delete_on_acs_system';
56274
57420
  }>;
57421
+ /** */
57422
+ pending_modifications?: Array<{
57423
+ created_at: string;
57424
+ modification_code: 'profile';
57425
+ modified_from: {
57426
+ email_address?: (string | null) | undefined;
57427
+ full_name?: (string | null) | undefined;
57428
+ phone_number?: ((string | undefined) | null) | undefined;
57429
+ };
57430
+ modified_to: {
57431
+ email_address?: (string | null) | undefined;
57432
+ full_name?: (string | null) | undefined;
57433
+ phone_number?: ((string | undefined) | null) | undefined;
57434
+ };
57435
+ } | {
57436
+ created_at: string;
57437
+ modification_code: 'access_schedule';
57438
+ modified_from: {
57439
+ /** 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. */
57440
+ starts_at: string;
57441
+ /** 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. */
57442
+ ends_at: string | null;
57443
+ };
57444
+ modified_to: {
57445
+ /** 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. */
57446
+ starts_at: string;
57447
+ /** 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. */
57448
+ ends_at: string | null;
57449
+ };
57450
+ } | {
57451
+ created_at: string;
57452
+ modification_code: 'suspension_state';
57453
+ modified_from: {
57454
+ is_suspended: boolean;
57455
+ };
57456
+ modified_to: {
57457
+ is_suspended: boolean;
57458
+ };
57459
+ } | {
57460
+ created_at: string;
57461
+ modification_code: 'acs_access_group_membership';
57462
+ modified_from: {
57463
+ acs_access_group_id: string | null;
57464
+ };
57465
+ modified_to: {
57466
+ acs_access_group_id: string | null;
57467
+ };
57468
+ }> | undefined;
56275
57469
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56276
57470
  full_name?: string | undefined;
56277
57471
  /**
@@ -56388,6 +57582,54 @@ interface Routes {
56388
57582
  message: string;
56389
57583
  error_code: 'failed_to_delete_on_acs_system';
56390
57584
  }>;
57585
+ /** */
57586
+ pending_modifications?: Array<{
57587
+ created_at: string;
57588
+ modification_code: 'profile';
57589
+ modified_from: {
57590
+ email_address?: (string | null) | undefined;
57591
+ full_name?: (string | null) | undefined;
57592
+ phone_number?: ((string | undefined) | null) | undefined;
57593
+ };
57594
+ modified_to: {
57595
+ email_address?: (string | null) | undefined;
57596
+ full_name?: (string | null) | undefined;
57597
+ phone_number?: ((string | undefined) | null) | undefined;
57598
+ };
57599
+ } | {
57600
+ created_at: string;
57601
+ modification_code: 'access_schedule';
57602
+ modified_from: {
57603
+ /** 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. */
57604
+ starts_at: string;
57605
+ /** 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. */
57606
+ ends_at: string | null;
57607
+ };
57608
+ modified_to: {
57609
+ /** 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. */
57610
+ starts_at: string;
57611
+ /** 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. */
57612
+ ends_at: string | null;
57613
+ };
57614
+ } | {
57615
+ created_at: string;
57616
+ modification_code: 'suspension_state';
57617
+ modified_from: {
57618
+ is_suspended: boolean;
57619
+ };
57620
+ modified_to: {
57621
+ is_suspended: boolean;
57622
+ };
57623
+ } | {
57624
+ created_at: string;
57625
+ modification_code: 'acs_access_group_membership';
57626
+ modified_from: {
57627
+ acs_access_group_id: string | null;
57628
+ };
57629
+ modified_to: {
57630
+ acs_access_group_id: string | null;
57631
+ };
57632
+ }> | undefined;
56391
57633
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
56392
57634
  full_name?: string | undefined;
56393
57635
  /**
@@ -83281,6 +84523,54 @@ interface Routes {
83281
84523
  message: string;
83282
84524
  error_code: 'failed_to_delete_on_acs_system';
83283
84525
  }>;
84526
+ /** */
84527
+ pending_modifications?: Array<{
84528
+ created_at: string;
84529
+ modification_code: 'profile';
84530
+ modified_from: {
84531
+ email_address?: (string | null) | undefined;
84532
+ full_name?: (string | null) | undefined;
84533
+ phone_number?: ((string | undefined) | null) | undefined;
84534
+ };
84535
+ modified_to: {
84536
+ email_address?: (string | null) | undefined;
84537
+ full_name?: (string | null) | undefined;
84538
+ phone_number?: ((string | undefined) | null) | undefined;
84539
+ };
84540
+ } | {
84541
+ created_at: string;
84542
+ modification_code: 'access_schedule';
84543
+ modified_from: {
84544
+ /** 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. */
84545
+ starts_at: string;
84546
+ /** 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. */
84547
+ ends_at: string | null;
84548
+ };
84549
+ modified_to: {
84550
+ /** 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. */
84551
+ starts_at: string;
84552
+ /** 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. */
84553
+ ends_at: string | null;
84554
+ };
84555
+ } | {
84556
+ created_at: string;
84557
+ modification_code: 'suspension_state';
84558
+ modified_from: {
84559
+ is_suspended: boolean;
84560
+ };
84561
+ modified_to: {
84562
+ is_suspended: boolean;
84563
+ };
84564
+ } | {
84565
+ created_at: string;
84566
+ modification_code: 'acs_access_group_membership';
84567
+ modified_from: {
84568
+ acs_access_group_id: string | null;
84569
+ };
84570
+ modified_to: {
84571
+ acs_access_group_id: string | null;
84572
+ };
84573
+ }> | undefined;
83284
84574
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
83285
84575
  full_name?: string | undefined;
83286
84576
  /**