@seamapi/types 1.381.0 → 1.383.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.
- package/dist/connect.cjs +285 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +353 -2
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +9 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js +3 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +62 -0
- package/lib/seam/connect/models/events/acs/users.js +12 -1
- package/lib/seam/connect/models/events/acs/users.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +31 -1
- package/lib/seam/connect/openapi.d.ts +226 -0
- package/lib/seam/connect/openapi.js +261 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +88 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +3 -0
- package/src/lib/seam/connect/models/events/acs/users.ts +15 -1
- package/src/lib/seam/connect/openapi.ts +278 -0
- package/src/lib/seam/connect/route-types.ts +93 -0
|
@@ -22645,6 +22645,22 @@ export interface Routes {
|
|
|
22645
22645
|
acs_credential_id: string
|
|
22646
22646
|
event_type: 'acs_credential.invalidated'
|
|
22647
22647
|
}
|
|
22648
|
+
| {
|
|
22649
|
+
/** ID of the event. */
|
|
22650
|
+
event_id: string
|
|
22651
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
22652
|
+
workspace_id: string
|
|
22653
|
+
/** Date and time at which the event was created. */
|
|
22654
|
+
created_at: string
|
|
22655
|
+
/** Date and time at which the event occurred. */
|
|
22656
|
+
occurred_at: string
|
|
22657
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
22658
|
+
connected_account_id?: string | undefined
|
|
22659
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
22660
|
+
acs_system_id: string
|
|
22661
|
+
acs_user_id: string
|
|
22662
|
+
event_type: 'acs_user.created'
|
|
22663
|
+
}
|
|
22648
22664
|
| {
|
|
22649
22665
|
/** ID of the event. */
|
|
22650
22666
|
event_id: string
|
|
@@ -23630,6 +23646,7 @@ export interface Routes {
|
|
|
23630
23646
|
| 'acs_credential.issued'
|
|
23631
23647
|
| 'acs_credential.reissued'
|
|
23632
23648
|
| 'acs_credential.invalidated'
|
|
23649
|
+
| 'acs_user.created'
|
|
23633
23650
|
| 'acs_user.deleted'
|
|
23634
23651
|
| 'acs_encoder.added'
|
|
23635
23652
|
| 'acs_encoder.removed'
|
|
@@ -23713,6 +23730,7 @@ export interface Routes {
|
|
|
23713
23730
|
| 'acs_credential.issued'
|
|
23714
23731
|
| 'acs_credential.reissued'
|
|
23715
23732
|
| 'acs_credential.invalidated'
|
|
23733
|
+
| 'acs_user.created'
|
|
23716
23734
|
| 'acs_user.deleted'
|
|
23717
23735
|
| 'acs_encoder.added'
|
|
23718
23736
|
| 'acs_encoder.removed'
|
|
@@ -24183,6 +24201,22 @@ export interface Routes {
|
|
|
24183
24201
|
acs_credential_id: string
|
|
24184
24202
|
event_type: 'acs_credential.invalidated'
|
|
24185
24203
|
}
|
|
24204
|
+
| {
|
|
24205
|
+
/** ID of the event. */
|
|
24206
|
+
event_id: string
|
|
24207
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
24208
|
+
workspace_id: string
|
|
24209
|
+
/** Date and time at which the event was created. */
|
|
24210
|
+
created_at: string
|
|
24211
|
+
/** Date and time at which the event occurred. */
|
|
24212
|
+
occurred_at: string
|
|
24213
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
24214
|
+
connected_account_id?: string | undefined
|
|
24215
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
24216
|
+
acs_system_id: string
|
|
24217
|
+
acs_user_id: string
|
|
24218
|
+
event_type: 'acs_user.created'
|
|
24219
|
+
}
|
|
24186
24220
|
| {
|
|
24187
24221
|
/** ID of the event. */
|
|
24188
24222
|
event_id: string
|
|
@@ -36954,6 +36988,9 @@ export interface Routes {
|
|
|
36954
36988
|
error_code: 'no_communication_from_bridge'
|
|
36955
36989
|
}
|
|
36956
36990
|
>
|
|
36991
|
+
telemetry_token: string | null
|
|
36992
|
+
telemetry_token_expires_at: string | null
|
|
36993
|
+
telemetry_url: string | null
|
|
36957
36994
|
}
|
|
36958
36995
|
}
|
|
36959
36996
|
}
|
|
@@ -37001,6 +37038,59 @@ export interface Routes {
|
|
|
37001
37038
|
error_code: 'no_communication_from_bridge'
|
|
37002
37039
|
}
|
|
37003
37040
|
>
|
|
37041
|
+
telemetry_token: string | null
|
|
37042
|
+
telemetry_token_expires_at: string | null
|
|
37043
|
+
telemetry_url: string | null
|
|
37044
|
+
}
|
|
37045
|
+
}
|
|
37046
|
+
}
|
|
37047
|
+
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
37048
|
+
route: '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'
|
|
37049
|
+
method: 'POST'
|
|
37050
|
+
queryParams: {}
|
|
37051
|
+
jsonBody: {}
|
|
37052
|
+
commonParams: {}
|
|
37053
|
+
formData: {}
|
|
37054
|
+
jsonResponse: {
|
|
37055
|
+
/** */
|
|
37056
|
+
bridge_client_session: {
|
|
37057
|
+
created_at: string
|
|
37058
|
+
bridge_client_session_id: string
|
|
37059
|
+
bridge_client_session_token: string
|
|
37060
|
+
pairing_code: string
|
|
37061
|
+
pairing_code_expires_at: string
|
|
37062
|
+
tailscale_hostname: string
|
|
37063
|
+
tailscale_auth_key: string | null
|
|
37064
|
+
bridge_client_name: string
|
|
37065
|
+
bridge_client_time_zone: string
|
|
37066
|
+
bridge_client_machine_identifier_key: string
|
|
37067
|
+
errors: Array<
|
|
37068
|
+
| {
|
|
37069
|
+
message: string
|
|
37070
|
+
created_at: string
|
|
37071
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
37072
|
+
error_code: 'bridge_lan_unreachable'
|
|
37073
|
+
/** Seam cannot reach the tailscale proxy */
|
|
37074
|
+
is_tailscale_proxy_reachable: boolean | null
|
|
37075
|
+
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
37076
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null
|
|
37077
|
+
/** Tailscale proxy cannot reach the Tailscale network */
|
|
37078
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null
|
|
37079
|
+
/** Tailscale proxy cannot reach the bridge */
|
|
37080
|
+
can_tailscale_proxy_reach_bridge: boolean | null
|
|
37081
|
+
/** Bridge's SOCKS server is unhealthy */
|
|
37082
|
+
is_bridge_socks_server_healthy: boolean | null
|
|
37083
|
+
}
|
|
37084
|
+
| {
|
|
37085
|
+
message: string
|
|
37086
|
+
created_at: string
|
|
37087
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
37088
|
+
error_code: 'no_communication_from_bridge'
|
|
37089
|
+
}
|
|
37090
|
+
>
|
|
37091
|
+
telemetry_token: string | null
|
|
37092
|
+
telemetry_token_expires_at: string | null
|
|
37093
|
+
telemetry_url: string | null
|
|
37004
37094
|
}
|
|
37005
37095
|
}
|
|
37006
37096
|
}
|
|
@@ -37048,6 +37138,9 @@ export interface Routes {
|
|
|
37048
37138
|
error_code: 'no_communication_from_bridge'
|
|
37049
37139
|
}
|
|
37050
37140
|
>
|
|
37141
|
+
telemetry_token: string | null
|
|
37142
|
+
telemetry_token_expires_at: string | null
|
|
37143
|
+
telemetry_url: string | null
|
|
37051
37144
|
}
|
|
37052
37145
|
}
|
|
37053
37146
|
}
|