@seamapi/types 1.377.0 → 1.378.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 +92 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +224 -118
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +28 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +195 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +16 -3
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +80 -80
- package/lib/seam/connect/models/bridges/bridge-client-session.js +5 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +94 -8
- package/lib/seam/connect/openapi.js +78 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -57
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +17 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +79 -16
- package/src/lib/seam/connect/route-types.ts +77 -57
|
@@ -4,29 +4,29 @@ export declare const bridge_lan_unreachable: z.ZodObject<z.objectUtil.extendShap
|
|
|
4
4
|
created_at: z.ZodString;
|
|
5
5
|
}, {
|
|
6
6
|
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
7
|
-
is_tailscale_proxy_reachable: z.ZodBoolean
|
|
8
|
-
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean
|
|
9
|
-
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean
|
|
10
|
-
can_tailscale_proxy_reach_bridge: z.ZodBoolean
|
|
11
|
-
is_bridge_socks_server_healthy: z.ZodBoolean
|
|
7
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
8
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
10
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
11
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
12
12
|
}>, "strip", z.ZodTypeAny, {
|
|
13
13
|
message: string;
|
|
14
14
|
created_at: string;
|
|
15
15
|
error_code: "bridge_lan_unreachable";
|
|
16
|
-
is_tailscale_proxy_reachable: boolean;
|
|
17
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
18
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
19
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
20
|
-
is_bridge_socks_server_healthy: boolean;
|
|
16
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
17
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
18
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
19
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
20
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
21
21
|
}, {
|
|
22
22
|
message: string;
|
|
23
23
|
created_at: string;
|
|
24
24
|
error_code: "bridge_lan_unreachable";
|
|
25
|
-
is_tailscale_proxy_reachable: boolean;
|
|
26
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
27
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
28
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
29
|
-
is_bridge_socks_server_healthy: boolean;
|
|
25
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
26
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
27
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
28
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
29
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
30
30
|
}>;
|
|
31
31
|
export declare const no_communication_from_bridge: z.ZodObject<z.objectUtil.extendShape<{
|
|
32
32
|
message: z.ZodString;
|
|
@@ -47,29 +47,29 @@ export declare const bridge_client_session_error: z.ZodDiscriminatedUnion<"error
|
|
|
47
47
|
created_at: z.ZodString;
|
|
48
48
|
}, {
|
|
49
49
|
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
50
|
-
is_tailscale_proxy_reachable: z.ZodBoolean
|
|
51
|
-
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean
|
|
52
|
-
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean
|
|
53
|
-
can_tailscale_proxy_reach_bridge: z.ZodBoolean
|
|
54
|
-
is_bridge_socks_server_healthy: z.ZodBoolean
|
|
50
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
51
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
52
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
53
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
54
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
55
55
|
}>, "strip", z.ZodTypeAny, {
|
|
56
56
|
message: string;
|
|
57
57
|
created_at: string;
|
|
58
58
|
error_code: "bridge_lan_unreachable";
|
|
59
|
-
is_tailscale_proxy_reachable: boolean;
|
|
60
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
61
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
62
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
63
|
-
is_bridge_socks_server_healthy: boolean;
|
|
59
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
60
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
61
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
62
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
63
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
64
64
|
}, {
|
|
65
65
|
message: string;
|
|
66
66
|
created_at: string;
|
|
67
67
|
error_code: "bridge_lan_unreachable";
|
|
68
|
-
is_tailscale_proxy_reachable: boolean;
|
|
69
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
70
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
71
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
72
|
-
is_bridge_socks_server_healthy: boolean;
|
|
68
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
69
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
70
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
71
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
72
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
73
73
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
74
74
|
message: z.ZodString;
|
|
75
75
|
created_at: z.ZodString;
|
|
@@ -91,29 +91,29 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
91
91
|
created_at: z.ZodString;
|
|
92
92
|
}, {
|
|
93
93
|
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
94
|
-
is_tailscale_proxy_reachable: z.ZodBoolean
|
|
95
|
-
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean
|
|
96
|
-
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean
|
|
97
|
-
can_tailscale_proxy_reach_bridge: z.ZodBoolean
|
|
98
|
-
is_bridge_socks_server_healthy: z.ZodBoolean
|
|
94
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
95
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
96
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
97
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
98
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
99
99
|
}>, "strip", z.ZodTypeAny, {
|
|
100
100
|
message: string;
|
|
101
101
|
created_at: string;
|
|
102
102
|
error_code: "bridge_lan_unreachable";
|
|
103
|
-
is_tailscale_proxy_reachable: boolean;
|
|
104
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
105
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
106
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
107
|
-
is_bridge_socks_server_healthy: boolean;
|
|
103
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
104
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
105
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
106
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
107
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
108
108
|
}, {
|
|
109
109
|
message: string;
|
|
110
110
|
created_at: string;
|
|
111
111
|
error_code: "bridge_lan_unreachable";
|
|
112
|
-
is_tailscale_proxy_reachable: boolean;
|
|
113
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
114
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
115
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
116
|
-
is_bridge_socks_server_healthy: boolean;
|
|
112
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
113
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
114
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
115
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
116
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
117
117
|
}>>>;
|
|
118
118
|
no_communication_from_bridge: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
119
119
|
message: z.ZodString;
|
|
@@ -134,11 +134,11 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
134
134
|
message: string;
|
|
135
135
|
created_at: string;
|
|
136
136
|
error_code: "bridge_lan_unreachable";
|
|
137
|
-
is_tailscale_proxy_reachable: boolean;
|
|
138
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
139
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
140
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
141
|
-
is_bridge_socks_server_healthy: boolean;
|
|
137
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
138
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
139
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
140
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
141
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
142
142
|
} | null | undefined;
|
|
143
143
|
no_communication_from_bridge?: {
|
|
144
144
|
message: string;
|
|
@@ -150,11 +150,11 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
150
150
|
message: string;
|
|
151
151
|
created_at: string;
|
|
152
152
|
error_code: "bridge_lan_unreachable";
|
|
153
|
-
is_tailscale_proxy_reachable: boolean;
|
|
154
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
155
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
156
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
157
|
-
is_bridge_socks_server_healthy: boolean;
|
|
153
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
154
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
155
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
156
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
157
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
158
158
|
} | null | undefined;
|
|
159
159
|
no_communication_from_bridge?: {
|
|
160
160
|
message: string;
|
|
@@ -179,29 +179,29 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
179
179
|
created_at: z.ZodString;
|
|
180
180
|
}, {
|
|
181
181
|
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
182
|
-
is_tailscale_proxy_reachable: z.ZodBoolean
|
|
183
|
-
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean
|
|
184
|
-
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean
|
|
185
|
-
can_tailscale_proxy_reach_bridge: z.ZodBoolean
|
|
186
|
-
is_bridge_socks_server_healthy: z.ZodBoolean
|
|
182
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
183
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
184
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
185
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
186
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
187
187
|
}>, "strip", z.ZodTypeAny, {
|
|
188
188
|
message: string;
|
|
189
189
|
created_at: string;
|
|
190
190
|
error_code: "bridge_lan_unreachable";
|
|
191
|
-
is_tailscale_proxy_reachable: boolean;
|
|
192
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
193
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
194
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
195
|
-
is_bridge_socks_server_healthy: boolean;
|
|
191
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
192
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
193
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
194
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
195
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
196
196
|
}, {
|
|
197
197
|
message: string;
|
|
198
198
|
created_at: string;
|
|
199
199
|
error_code: "bridge_lan_unreachable";
|
|
200
|
-
is_tailscale_proxy_reachable: boolean;
|
|
201
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
202
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
203
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
204
|
-
is_bridge_socks_server_healthy: boolean;
|
|
200
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
201
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
202
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
203
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
204
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
205
205
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
206
206
|
message: z.ZodString;
|
|
207
207
|
created_at: z.ZodString;
|
|
@@ -222,11 +222,11 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
222
222
|
message: string;
|
|
223
223
|
created_at: string;
|
|
224
224
|
error_code: "bridge_lan_unreachable";
|
|
225
|
-
is_tailscale_proxy_reachable: boolean;
|
|
226
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
227
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
228
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
229
|
-
is_bridge_socks_server_healthy: boolean;
|
|
225
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
226
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
227
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
228
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
229
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
230
230
|
} | {
|
|
231
231
|
message: string;
|
|
232
232
|
created_at: string;
|
|
@@ -247,11 +247,11 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
247
247
|
message: string;
|
|
248
248
|
created_at: string;
|
|
249
249
|
error_code: "bridge_lan_unreachable";
|
|
250
|
-
is_tailscale_proxy_reachable: boolean;
|
|
251
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
252
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
253
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
254
|
-
is_bridge_socks_server_healthy: boolean;
|
|
250
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
251
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
252
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
253
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
254
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
255
255
|
} | {
|
|
256
256
|
message: string;
|
|
257
257
|
created_at: string;
|
|
@@ -11,18 +11,23 @@ export const bridge_lan_unreachable = common_bridge_client_session_error
|
|
|
11
11
|
.describe(error_code_description),
|
|
12
12
|
is_tailscale_proxy_reachable: z
|
|
13
13
|
.boolean()
|
|
14
|
+
.nullable()
|
|
14
15
|
.describe('Seam cannot reach the tailscale proxy'),
|
|
15
16
|
is_tailscale_proxy_socks_server_healthy: z
|
|
16
17
|
.boolean()
|
|
18
|
+
.nullable()
|
|
17
19
|
.describe("Tailscale proxy's SOCKS server is unhealthy"),
|
|
18
20
|
can_tailscale_proxy_reach_tailscale_network: z
|
|
19
21
|
.boolean()
|
|
22
|
+
.nullable()
|
|
20
23
|
.describe('Tailscale proxy cannot reach the Tailscale network'),
|
|
21
24
|
can_tailscale_proxy_reach_bridge: z
|
|
22
25
|
.boolean()
|
|
26
|
+
.nullable()
|
|
23
27
|
.describe('Tailscale proxy cannot reach the bridge'),
|
|
24
28
|
is_bridge_socks_server_healthy: z
|
|
25
29
|
.boolean()
|
|
30
|
+
.nullable()
|
|
26
31
|
.describe("Bridge's SOCKS server is unhealthy"),
|
|
27
32
|
})
|
|
28
33
|
.describe("Seam cannot reach the bridge's LAN");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bridge-client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge-client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,CAAC,MAAM,sBAAsB,GAAG,kCAAkC;KACrE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,wBAAwB,CAAC;SACjC,QAAQ,CAAC,sBAAsB,CAAC;IACnC,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,CAAC,uCAAuC,CAAC;IACpD,uCAAuC,EAAE,CAAC;SACvC,OAAO,EAAE;SACT,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,CAAC,yCAAyC,CAAC;IACtD,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAA;AAEjD,MAAM,CAAC,MAAM,4BAA4B,GAAG,kCAAkC;KAC3E,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,8BAA8B,CAAC;SACvC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAEzD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,kBAAkB,CAAC,YAAY,EAAE;IAChC,sBAAsB;IACtB,4BAA4B;CAC7B,CAAC;KACD,QAAQ,CAAC,oDAAoD,CAAC,CAAA;AAMjE,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,sBAAsB,EAAE,sBAAsB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpE,4BAA4B,EAAE,4BAA4B;SACvD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAClC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;IAChD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC;CAC7C,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"bridge-client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge-client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,CAAC,MAAM,sBAAsB,GAAG,kCAAkC;KACrE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,wBAAwB,CAAC;SACjC,QAAQ,CAAC,sBAAsB,CAAC;IACnC,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,uCAAuC,EAAE,CAAC;SACvC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAA;AAEjD,MAAM,CAAC,MAAM,4BAA4B,GAAG,kCAAkC;KAC3E,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,8BAA8B,CAAC;SACvC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAEzD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,kBAAkB,CAAC,YAAY,EAAE;IAChC,sBAAsB;IACtB,4BAA4B;CAC7B,CAAC;KACD,QAAQ,CAAC,oDAAoD,CAAC,CAAA;AAMjE,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,sBAAsB,EAAE,sBAAsB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpE,4BAA4B,EAAE,4BAA4B;SACvD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAClC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;IAChD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC;CAC7C,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
@@ -1317,14 +1317,13 @@ declare const _default: {
|
|
|
1317
1317
|
from: {
|
|
1318
1318
|
properties: {
|
|
1319
1319
|
ends_at: {
|
|
1320
|
-
description: string;
|
|
1321
1320
|
format: string;
|
|
1322
1321
|
nullable: boolean;
|
|
1323
1322
|
type: string;
|
|
1324
1323
|
};
|
|
1325
1324
|
starts_at: {
|
|
1326
|
-
description: string;
|
|
1327
1325
|
format: string;
|
|
1326
|
+
nullable: boolean;
|
|
1328
1327
|
type: string;
|
|
1329
1328
|
};
|
|
1330
1329
|
email_address?: never;
|
|
@@ -1343,14 +1342,13 @@ declare const _default: {
|
|
|
1343
1342
|
to: {
|
|
1344
1343
|
properties: {
|
|
1345
1344
|
ends_at: {
|
|
1346
|
-
description: string;
|
|
1347
1345
|
format: string;
|
|
1348
1346
|
nullable: boolean;
|
|
1349
1347
|
type: string;
|
|
1350
1348
|
};
|
|
1351
1349
|
starts_at: {
|
|
1352
|
-
description: string;
|
|
1353
1350
|
format: string;
|
|
1351
|
+
nullable: boolean;
|
|
1354
1352
|
type: string;
|
|
1355
1353
|
};
|
|
1356
1354
|
email_address?: never;
|
|
@@ -8615,14 +8613,13 @@ declare const _default: {
|
|
|
8615
8613
|
from: {
|
|
8616
8614
|
properties: {
|
|
8617
8615
|
ends_at: {
|
|
8618
|
-
description: string;
|
|
8619
8616
|
format: string;
|
|
8620
8617
|
nullable: boolean;
|
|
8621
8618
|
type: string;
|
|
8622
8619
|
};
|
|
8623
8620
|
starts_at: {
|
|
8624
|
-
description: string;
|
|
8625
8621
|
format: string;
|
|
8622
|
+
nullable: boolean;
|
|
8626
8623
|
type: string;
|
|
8627
8624
|
};
|
|
8628
8625
|
email_address?: never;
|
|
@@ -8641,14 +8638,13 @@ declare const _default: {
|
|
|
8641
8638
|
to: {
|
|
8642
8639
|
properties: {
|
|
8643
8640
|
ends_at: {
|
|
8644
|
-
description: string;
|
|
8645
8641
|
format: string;
|
|
8646
8642
|
nullable: boolean;
|
|
8647
8643
|
type: string;
|
|
8648
8644
|
};
|
|
8649
8645
|
starts_at: {
|
|
8650
|
-
description: string;
|
|
8651
8646
|
format: string;
|
|
8647
|
+
nullable: boolean;
|
|
8652
8648
|
type: string;
|
|
8653
8649
|
};
|
|
8654
8650
|
email_address?: never;
|
|
@@ -13684,6 +13680,76 @@ declare const _default: {
|
|
|
13684
13680
|
'x-title': string;
|
|
13685
13681
|
};
|
|
13686
13682
|
};
|
|
13683
|
+
'/acs/encoders/get': {
|
|
13684
|
+
post: {
|
|
13685
|
+
description: string;
|
|
13686
|
+
operationId: string;
|
|
13687
|
+
requestBody: {
|
|
13688
|
+
content: {
|
|
13689
|
+
'application/json': {
|
|
13690
|
+
schema: {
|
|
13691
|
+
properties: {
|
|
13692
|
+
acs_encoder_id: {
|
|
13693
|
+
description: string;
|
|
13694
|
+
format: string;
|
|
13695
|
+
type: string;
|
|
13696
|
+
};
|
|
13697
|
+
};
|
|
13698
|
+
required: string[];
|
|
13699
|
+
type: string;
|
|
13700
|
+
};
|
|
13701
|
+
};
|
|
13702
|
+
};
|
|
13703
|
+
};
|
|
13704
|
+
responses: {
|
|
13705
|
+
200: {
|
|
13706
|
+
content: {
|
|
13707
|
+
'application/json': {
|
|
13708
|
+
schema: {
|
|
13709
|
+
properties: {
|
|
13710
|
+
acs_encoder: {
|
|
13711
|
+
$ref: string;
|
|
13712
|
+
};
|
|
13713
|
+
ok: {
|
|
13714
|
+
type: string;
|
|
13715
|
+
};
|
|
13716
|
+
};
|
|
13717
|
+
required: string[];
|
|
13718
|
+
type: string;
|
|
13719
|
+
};
|
|
13720
|
+
};
|
|
13721
|
+
};
|
|
13722
|
+
description: string;
|
|
13723
|
+
};
|
|
13724
|
+
400: {
|
|
13725
|
+
description: string;
|
|
13726
|
+
};
|
|
13727
|
+
401: {
|
|
13728
|
+
description: string;
|
|
13729
|
+
};
|
|
13730
|
+
};
|
|
13731
|
+
security: ({
|
|
13732
|
+
pat_with_workspace: never[];
|
|
13733
|
+
console_session_with_workspace?: never;
|
|
13734
|
+
api_key?: never;
|
|
13735
|
+
} | {
|
|
13736
|
+
console_session_with_workspace: never[];
|
|
13737
|
+
pat_with_workspace?: never;
|
|
13738
|
+
api_key?: never;
|
|
13739
|
+
} | {
|
|
13740
|
+
api_key: never[];
|
|
13741
|
+
pat_with_workspace?: never;
|
|
13742
|
+
console_session_with_workspace?: never;
|
|
13743
|
+
})[];
|
|
13744
|
+
summary: string;
|
|
13745
|
+
tags: string[];
|
|
13746
|
+
'x-fern-sdk-group-name': string[];
|
|
13747
|
+
'x-fern-sdk-method-name': string;
|
|
13748
|
+
'x-fern-sdk-return-value': string;
|
|
13749
|
+
'x-response-key': string;
|
|
13750
|
+
'x-title': string;
|
|
13751
|
+
};
|
|
13752
|
+
};
|
|
13687
13753
|
'/acs/encoders/list': {
|
|
13688
13754
|
post: {
|
|
13689
13755
|
description: string;
|
|
@@ -21044,10 +21110,12 @@ declare const _default: {
|
|
|
21044
21110
|
properties: {
|
|
21045
21111
|
can_tailscale_proxy_reach_bridge: {
|
|
21046
21112
|
description: string;
|
|
21113
|
+
nullable: boolean;
|
|
21047
21114
|
type: string;
|
|
21048
21115
|
};
|
|
21049
21116
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21050
21117
|
description: string;
|
|
21118
|
+
nullable: boolean;
|
|
21051
21119
|
type: string;
|
|
21052
21120
|
};
|
|
21053
21121
|
created_at: {
|
|
@@ -21061,14 +21129,17 @@ declare const _default: {
|
|
|
21061
21129
|
};
|
|
21062
21130
|
is_bridge_socks_server_healthy: {
|
|
21063
21131
|
description: string;
|
|
21132
|
+
nullable: boolean;
|
|
21064
21133
|
type: string;
|
|
21065
21134
|
};
|
|
21066
21135
|
is_tailscale_proxy_reachable: {
|
|
21067
21136
|
description: string;
|
|
21137
|
+
nullable: boolean;
|
|
21068
21138
|
type: string;
|
|
21069
21139
|
};
|
|
21070
21140
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21071
21141
|
description: string;
|
|
21142
|
+
nullable: boolean;
|
|
21072
21143
|
type: string;
|
|
21073
21144
|
};
|
|
21074
21145
|
message: {
|
|
@@ -21200,10 +21271,12 @@ declare const _default: {
|
|
|
21200
21271
|
properties: {
|
|
21201
21272
|
can_tailscale_proxy_reach_bridge: {
|
|
21202
21273
|
description: string;
|
|
21274
|
+
nullable: boolean;
|
|
21203
21275
|
type: string;
|
|
21204
21276
|
};
|
|
21205
21277
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21206
21278
|
description: string;
|
|
21279
|
+
nullable: boolean;
|
|
21207
21280
|
type: string;
|
|
21208
21281
|
};
|
|
21209
21282
|
created_at: {
|
|
@@ -21217,14 +21290,17 @@ declare const _default: {
|
|
|
21217
21290
|
};
|
|
21218
21291
|
is_bridge_socks_server_healthy: {
|
|
21219
21292
|
description: string;
|
|
21293
|
+
nullable: boolean;
|
|
21220
21294
|
type: string;
|
|
21221
21295
|
};
|
|
21222
21296
|
is_tailscale_proxy_reachable: {
|
|
21223
21297
|
description: string;
|
|
21298
|
+
nullable: boolean;
|
|
21224
21299
|
type: string;
|
|
21225
21300
|
};
|
|
21226
21301
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21227
21302
|
description: string;
|
|
21303
|
+
nullable: boolean;
|
|
21228
21304
|
type: string;
|
|
21229
21305
|
};
|
|
21230
21306
|
message: {
|
|
@@ -21352,10 +21428,12 @@ declare const _default: {
|
|
|
21352
21428
|
properties: {
|
|
21353
21429
|
can_tailscale_proxy_reach_bridge: {
|
|
21354
21430
|
description: string;
|
|
21431
|
+
nullable: boolean;
|
|
21355
21432
|
type: string;
|
|
21356
21433
|
};
|
|
21357
21434
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21358
21435
|
description: string;
|
|
21436
|
+
nullable: boolean;
|
|
21359
21437
|
type: string;
|
|
21360
21438
|
};
|
|
21361
21439
|
created_at: {
|
|
@@ -21369,14 +21447,17 @@ declare const _default: {
|
|
|
21369
21447
|
};
|
|
21370
21448
|
is_bridge_socks_server_healthy: {
|
|
21371
21449
|
description: string;
|
|
21450
|
+
nullable: boolean;
|
|
21372
21451
|
type: string;
|
|
21373
21452
|
};
|
|
21374
21453
|
is_tailscale_proxy_reachable: {
|
|
21375
21454
|
description: string;
|
|
21455
|
+
nullable: boolean;
|
|
21376
21456
|
type: string;
|
|
21377
21457
|
};
|
|
21378
21458
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21379
21459
|
description: string;
|
|
21460
|
+
nullable: boolean;
|
|
21380
21461
|
type: string;
|
|
21381
21462
|
};
|
|
21382
21463
|
message: {
|
|
@@ -21508,10 +21589,12 @@ declare const _default: {
|
|
|
21508
21589
|
properties: {
|
|
21509
21590
|
can_tailscale_proxy_reach_bridge: {
|
|
21510
21591
|
description: string;
|
|
21592
|
+
nullable: boolean;
|
|
21511
21593
|
type: string;
|
|
21512
21594
|
};
|
|
21513
21595
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21514
21596
|
description: string;
|
|
21597
|
+
nullable: boolean;
|
|
21515
21598
|
type: string;
|
|
21516
21599
|
};
|
|
21517
21600
|
created_at: {
|
|
@@ -21525,14 +21608,17 @@ declare const _default: {
|
|
|
21525
21608
|
};
|
|
21526
21609
|
is_bridge_socks_server_healthy: {
|
|
21527
21610
|
description: string;
|
|
21611
|
+
nullable: boolean;
|
|
21528
21612
|
type: string;
|
|
21529
21613
|
};
|
|
21530
21614
|
is_tailscale_proxy_reachable: {
|
|
21531
21615
|
description: string;
|
|
21616
|
+
nullable: boolean;
|
|
21532
21617
|
type: string;
|
|
21533
21618
|
};
|
|
21534
21619
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21535
21620
|
description: string;
|
|
21621
|
+
nullable: boolean;
|
|
21536
21622
|
type: string;
|
|
21537
21623
|
};
|
|
21538
21624
|
message: {
|