@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
@@ -8239,6 +8239,61 @@ export interface Routes {
8239
8239
  error_code: 'failed_to_delete_on_acs_system'
8240
8240
  }
8241
8241
  >
8242
+ /** */
8243
+ pending_modifications?:
8244
+ | Array<
8245
+ | {
8246
+ created_at: string
8247
+ modification_code: 'profile'
8248
+ modified_from: {
8249
+ email_address?: (string | null) | undefined
8250
+ full_name?: (string | null) | undefined
8251
+ phone_number?: ((string | undefined) | null) | undefined
8252
+ }
8253
+ modified_to: {
8254
+ email_address?: (string | null) | undefined
8255
+ full_name?: (string | null) | undefined
8256
+ phone_number?: ((string | undefined) | null) | undefined
8257
+ }
8258
+ }
8259
+ | {
8260
+ created_at: string
8261
+ modification_code: 'access_schedule'
8262
+ modified_from: {
8263
+ /** 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. */
8264
+ starts_at: string
8265
+ /** 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. */
8266
+ ends_at: string | null
8267
+ }
8268
+ modified_to: {
8269
+ /** 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. */
8270
+ starts_at: string
8271
+ /** 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. */
8272
+ ends_at: string | null
8273
+ }
8274
+ }
8275
+ | {
8276
+ created_at: string
8277
+ modification_code: 'suspension_state'
8278
+ modified_from: {
8279
+ is_suspended: boolean
8280
+ }
8281
+ modified_to: {
8282
+ is_suspended: boolean
8283
+ }
8284
+ }
8285
+ | {
8286
+ created_at: string
8287
+ modification_code: 'acs_access_group_membership'
8288
+ modified_from: {
8289
+ acs_access_group_id: string | null
8290
+ }
8291
+ modified_to: {
8292
+ acs_access_group_id: string | null
8293
+ }
8294
+ }
8295
+ >
8296
+ | undefined
8242
8297
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
8243
8298
  full_name?: string | undefined
8244
8299
  /**
@@ -13290,6 +13345,61 @@ export interface Routes {
13290
13345
  error_code: 'failed_to_delete_on_acs_system'
13291
13346
  }
13292
13347
  >
13348
+ /** */
13349
+ pending_modifications?:
13350
+ | Array<
13351
+ | {
13352
+ created_at: string
13353
+ modification_code: 'profile'
13354
+ modified_from: {
13355
+ email_address?: (string | null) | undefined
13356
+ full_name?: (string | null) | undefined
13357
+ phone_number?: ((string | undefined) | null) | undefined
13358
+ }
13359
+ modified_to: {
13360
+ email_address?: (string | null) | undefined
13361
+ full_name?: (string | null) | undefined
13362
+ phone_number?: ((string | undefined) | null) | undefined
13363
+ }
13364
+ }
13365
+ | {
13366
+ created_at: string
13367
+ modification_code: 'access_schedule'
13368
+ modified_from: {
13369
+ /** 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. */
13370
+ starts_at: string
13371
+ /** 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. */
13372
+ ends_at: string | null
13373
+ }
13374
+ modified_to: {
13375
+ /** 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. */
13376
+ starts_at: string
13377
+ /** 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. */
13378
+ ends_at: string | null
13379
+ }
13380
+ }
13381
+ | {
13382
+ created_at: string
13383
+ modification_code: 'suspension_state'
13384
+ modified_from: {
13385
+ is_suspended: boolean
13386
+ }
13387
+ modified_to: {
13388
+ is_suspended: boolean
13389
+ }
13390
+ }
13391
+ | {
13392
+ created_at: string
13393
+ modification_code: 'acs_access_group_membership'
13394
+ modified_from: {
13395
+ acs_access_group_id: string | null
13396
+ }
13397
+ modified_to: {
13398
+ acs_access_group_id: string | null
13399
+ }
13400
+ }
13401
+ >
13402
+ | undefined
13293
13403
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
13294
13404
  full_name?: string | undefined
13295
13405
  /**
@@ -13442,6 +13552,61 @@ export interface Routes {
13442
13552
  error_code: 'failed_to_delete_on_acs_system'
13443
13553
  }
13444
13554
  >
13555
+ /** */
13556
+ pending_modifications?:
13557
+ | Array<
13558
+ | {
13559
+ created_at: string
13560
+ modification_code: 'profile'
13561
+ modified_from: {
13562
+ email_address?: (string | null) | undefined
13563
+ full_name?: (string | null) | undefined
13564
+ phone_number?: ((string | undefined) | null) | undefined
13565
+ }
13566
+ modified_to: {
13567
+ email_address?: (string | null) | undefined
13568
+ full_name?: (string | null) | undefined
13569
+ phone_number?: ((string | undefined) | null) | undefined
13570
+ }
13571
+ }
13572
+ | {
13573
+ created_at: string
13574
+ modification_code: 'access_schedule'
13575
+ modified_from: {
13576
+ /** 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. */
13577
+ starts_at: string
13578
+ /** 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. */
13579
+ ends_at: string | null
13580
+ }
13581
+ modified_to: {
13582
+ /** 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. */
13583
+ starts_at: string
13584
+ /** 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. */
13585
+ ends_at: string | null
13586
+ }
13587
+ }
13588
+ | {
13589
+ created_at: string
13590
+ modification_code: 'suspension_state'
13591
+ modified_from: {
13592
+ is_suspended: boolean
13593
+ }
13594
+ modified_to: {
13595
+ is_suspended: boolean
13596
+ }
13597
+ }
13598
+ | {
13599
+ created_at: string
13600
+ modification_code: 'acs_access_group_membership'
13601
+ modified_from: {
13602
+ acs_access_group_id: string | null
13603
+ }
13604
+ modified_to: {
13605
+ acs_access_group_id: string | null
13606
+ }
13607
+ }
13608
+ >
13609
+ | undefined
13445
13610
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
13446
13611
  full_name?: string | undefined
13447
13612
  /**
@@ -13594,6 +13759,61 @@ export interface Routes {
13594
13759
  error_code: 'failed_to_delete_on_acs_system'
13595
13760
  }
13596
13761
  >
13762
+ /** */
13763
+ pending_modifications?:
13764
+ | Array<
13765
+ | {
13766
+ created_at: string
13767
+ modification_code: 'profile'
13768
+ modified_from: {
13769
+ email_address?: (string | null) | undefined
13770
+ full_name?: (string | null) | undefined
13771
+ phone_number?: ((string | undefined) | null) | undefined
13772
+ }
13773
+ modified_to: {
13774
+ email_address?: (string | null) | undefined
13775
+ full_name?: (string | null) | undefined
13776
+ phone_number?: ((string | undefined) | null) | undefined
13777
+ }
13778
+ }
13779
+ | {
13780
+ created_at: string
13781
+ modification_code: 'access_schedule'
13782
+ modified_from: {
13783
+ /** 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. */
13784
+ starts_at: string
13785
+ /** 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. */
13786
+ ends_at: string | null
13787
+ }
13788
+ modified_to: {
13789
+ /** 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. */
13790
+ starts_at: string
13791
+ /** 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. */
13792
+ ends_at: string | null
13793
+ }
13794
+ }
13795
+ | {
13796
+ created_at: string
13797
+ modification_code: 'suspension_state'
13798
+ modified_from: {
13799
+ is_suspended: boolean
13800
+ }
13801
+ modified_to: {
13802
+ is_suspended: boolean
13803
+ }
13804
+ }
13805
+ | {
13806
+ created_at: string
13807
+ modification_code: 'acs_access_group_membership'
13808
+ modified_from: {
13809
+ acs_access_group_id: string | null
13810
+ }
13811
+ modified_to: {
13812
+ acs_access_group_id: string | null
13813
+ }
13814
+ }
13815
+ >
13816
+ | undefined
13597
13817
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
13598
13818
  full_name?: string | undefined
13599
13819
  /**
@@ -13878,6 +14098,61 @@ export interface Routes {
13878
14098
  error_code: 'failed_to_delete_on_acs_system'
13879
14099
  }
13880
14100
  >
14101
+ /** */
14102
+ pending_modifications?:
14103
+ | Array<
14104
+ | {
14105
+ created_at: string
14106
+ modification_code: 'profile'
14107
+ modified_from: {
14108
+ email_address?: (string | null) | undefined
14109
+ full_name?: (string | null) | undefined
14110
+ phone_number?: ((string | undefined) | null) | undefined
14111
+ }
14112
+ modified_to: {
14113
+ email_address?: (string | null) | undefined
14114
+ full_name?: (string | null) | undefined
14115
+ phone_number?: ((string | undefined) | null) | undefined
14116
+ }
14117
+ }
14118
+ | {
14119
+ created_at: string
14120
+ modification_code: 'access_schedule'
14121
+ modified_from: {
14122
+ /** 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. */
14123
+ starts_at: string
14124
+ /** 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. */
14125
+ ends_at: string | null
14126
+ }
14127
+ modified_to: {
14128
+ /** 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. */
14129
+ starts_at: string
14130
+ /** 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. */
14131
+ ends_at: string | null
14132
+ }
14133
+ }
14134
+ | {
14135
+ created_at: string
14136
+ modification_code: 'suspension_state'
14137
+ modified_from: {
14138
+ is_suspended: boolean
14139
+ }
14140
+ modified_to: {
14141
+ is_suspended: boolean
14142
+ }
14143
+ }
14144
+ | {
14145
+ created_at: string
14146
+ modification_code: 'acs_access_group_membership'
14147
+ modified_from: {
14148
+ acs_access_group_id: string | null
14149
+ }
14150
+ modified_to: {
14151
+ acs_access_group_id: string | null
14152
+ }
14153
+ }
14154
+ >
14155
+ | undefined
13881
14156
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
13882
14157
  full_name?: string | undefined
13883
14158
  /**
@@ -14020,6 +14295,61 @@ export interface Routes {
14020
14295
  error_code: 'failed_to_delete_on_acs_system'
14021
14296
  }
14022
14297
  >
14298
+ /** */
14299
+ pending_modifications?:
14300
+ | Array<
14301
+ | {
14302
+ created_at: string
14303
+ modification_code: 'profile'
14304
+ modified_from: {
14305
+ email_address?: (string | null) | undefined
14306
+ full_name?: (string | null) | undefined
14307
+ phone_number?: ((string | undefined) | null) | undefined
14308
+ }
14309
+ modified_to: {
14310
+ email_address?: (string | null) | undefined
14311
+ full_name?: (string | null) | undefined
14312
+ phone_number?: ((string | undefined) | null) | undefined
14313
+ }
14314
+ }
14315
+ | {
14316
+ created_at: string
14317
+ modification_code: 'access_schedule'
14318
+ modified_from: {
14319
+ /** 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. */
14320
+ starts_at: string
14321
+ /** 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. */
14322
+ ends_at: string | null
14323
+ }
14324
+ modified_to: {
14325
+ /** 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. */
14326
+ starts_at: string
14327
+ /** 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. */
14328
+ ends_at: string | null
14329
+ }
14330
+ }
14331
+ | {
14332
+ created_at: string
14333
+ modification_code: 'suspension_state'
14334
+ modified_from: {
14335
+ is_suspended: boolean
14336
+ }
14337
+ modified_to: {
14338
+ is_suspended: boolean
14339
+ }
14340
+ }
14341
+ | {
14342
+ created_at: string
14343
+ modification_code: 'acs_access_group_membership'
14344
+ modified_from: {
14345
+ acs_access_group_id: string | null
14346
+ }
14347
+ modified_to: {
14348
+ acs_access_group_id: string | null
14349
+ }
14350
+ }
14351
+ >
14352
+ | undefined
14023
14353
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
14024
14354
  full_name?: string | undefined
14025
14355
  /**
@@ -34291,6 +34621,30 @@ export interface Routes {
34291
34621
  bridge_client_name: string
34292
34622
  bridge_client_time_zone: string
34293
34623
  bridge_client_machine_identifier_key: string
34624
+ errors: Array<
34625
+ | {
34626
+ message: string
34627
+ created_at: string
34628
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34629
+ error_code: 'bridge_lan_unreachable'
34630
+ /** Seam cannot reach the tailscale proxy */
34631
+ is_tailscale_proxy_reachable: boolean
34632
+ /** Tailscale proxy's SOCKS server is unhealthy */
34633
+ is_tailscale_proxy_socks_server_healthy: boolean
34634
+ /** Tailscale proxy cannot reach the Tailscale network */
34635
+ can_tailscale_proxy_reach_tailscale_network: boolean
34636
+ /** Tailscale proxy cannot reach the bridge */
34637
+ can_tailscale_proxy_reach_bridge: boolean
34638
+ /** Bridge's SOCKS server is unhealthy */
34639
+ is_bridge_socks_server_healthy: boolean
34640
+ }
34641
+ | {
34642
+ message: string
34643
+ created_at: string
34644
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34645
+ error_code: 'no_communication_from_bridge'
34646
+ }
34647
+ >
34294
34648
  }
34295
34649
  }
34296
34650
  }
@@ -34314,6 +34668,30 @@ export interface Routes {
34314
34668
  bridge_client_name: string
34315
34669
  bridge_client_time_zone: string
34316
34670
  bridge_client_machine_identifier_key: string
34671
+ errors: Array<
34672
+ | {
34673
+ message: string
34674
+ created_at: string
34675
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34676
+ error_code: 'bridge_lan_unreachable'
34677
+ /** Seam cannot reach the tailscale proxy */
34678
+ is_tailscale_proxy_reachable: boolean
34679
+ /** Tailscale proxy's SOCKS server is unhealthy */
34680
+ is_tailscale_proxy_socks_server_healthy: boolean
34681
+ /** Tailscale proxy cannot reach the Tailscale network */
34682
+ can_tailscale_proxy_reach_tailscale_network: boolean
34683
+ /** Tailscale proxy cannot reach the bridge */
34684
+ can_tailscale_proxy_reach_bridge: boolean
34685
+ /** Bridge's SOCKS server is unhealthy */
34686
+ is_bridge_socks_server_healthy: boolean
34687
+ }
34688
+ | {
34689
+ message: string
34690
+ created_at: string
34691
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34692
+ error_code: 'no_communication_from_bridge'
34693
+ }
34694
+ >
34317
34695
  }
34318
34696
  }
34319
34697
  }
@@ -34337,6 +34715,30 @@ export interface Routes {
34337
34715
  bridge_client_name: string
34338
34716
  bridge_client_time_zone: string
34339
34717
  bridge_client_machine_identifier_key: string
34718
+ errors: Array<
34719
+ | {
34720
+ message: string
34721
+ created_at: string
34722
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34723
+ error_code: 'bridge_lan_unreachable'
34724
+ /** Seam cannot reach the tailscale proxy */
34725
+ is_tailscale_proxy_reachable: boolean
34726
+ /** Tailscale proxy's SOCKS server is unhealthy */
34727
+ is_tailscale_proxy_socks_server_healthy: boolean
34728
+ /** Tailscale proxy cannot reach the Tailscale network */
34729
+ can_tailscale_proxy_reach_tailscale_network: boolean
34730
+ /** Tailscale proxy cannot reach the bridge */
34731
+ can_tailscale_proxy_reach_bridge: boolean
34732
+ /** Bridge's SOCKS server is unhealthy */
34733
+ is_bridge_socks_server_healthy: boolean
34734
+ }
34735
+ | {
34736
+ message: string
34737
+ created_at: string
34738
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
34739
+ error_code: 'no_communication_from_bridge'
34740
+ }
34741
+ >
34340
34742
  }
34341
34743
  }
34342
34744
  }
@@ -47623,6 +48025,61 @@ export interface Routes {
47623
48025
  error_code: 'failed_to_delete_on_acs_system'
47624
48026
  }
47625
48027
  >
48028
+ /** */
48029
+ pending_modifications?:
48030
+ | Array<
48031
+ | {
48032
+ created_at: string
48033
+ modification_code: 'profile'
48034
+ modified_from: {
48035
+ email_address?: (string | null) | undefined
48036
+ full_name?: (string | null) | undefined
48037
+ phone_number?: ((string | undefined) | null) | undefined
48038
+ }
48039
+ modified_to: {
48040
+ email_address?: (string | null) | undefined
48041
+ full_name?: (string | null) | undefined
48042
+ phone_number?: ((string | undefined) | null) | undefined
48043
+ }
48044
+ }
48045
+ | {
48046
+ created_at: string
48047
+ modification_code: 'access_schedule'
48048
+ modified_from: {
48049
+ /** 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. */
48050
+ starts_at: string
48051
+ /** 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. */
48052
+ ends_at: string | null
48053
+ }
48054
+ modified_to: {
48055
+ /** 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. */
48056
+ starts_at: string
48057
+ /** 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. */
48058
+ ends_at: string | null
48059
+ }
48060
+ }
48061
+ | {
48062
+ created_at: string
48063
+ modification_code: 'suspension_state'
48064
+ modified_from: {
48065
+ is_suspended: boolean
48066
+ }
48067
+ modified_to: {
48068
+ is_suspended: boolean
48069
+ }
48070
+ }
48071
+ | {
48072
+ created_at: string
48073
+ modification_code: 'acs_access_group_membership'
48074
+ modified_from: {
48075
+ acs_access_group_id: string | null
48076
+ }
48077
+ modified_to: {
48078
+ acs_access_group_id: string | null
48079
+ }
48080
+ }
48081
+ >
48082
+ | undefined
47626
48083
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
47627
48084
  full_name?: string | undefined
47628
48085
  /**
@@ -1 +0,0 @@
1
- {"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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"}