@seamapi/types 1.377.0 → 1.379.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 +166 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +356 -118
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +88 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +256 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +17 -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 +124 -8
- package/lib/seam/connect/openapi.js +150 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +119 -57
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +18 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +151 -28
- package/src/lib/seam/connect/route-types.ts +119 -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"}
|
|
@@ -1240,6 +1240,9 @@ declare const _default: {
|
|
|
1240
1240
|
format: string;
|
|
1241
1241
|
type: string;
|
|
1242
1242
|
};
|
|
1243
|
+
message: {
|
|
1244
|
+
type: string;
|
|
1245
|
+
};
|
|
1243
1246
|
mutation_code: {
|
|
1244
1247
|
enum: string[];
|
|
1245
1248
|
type: string;
|
|
@@ -1278,6 +1281,9 @@ declare const _default: {
|
|
|
1278
1281
|
type: string;
|
|
1279
1282
|
required?: never;
|
|
1280
1283
|
};
|
|
1284
|
+
message: {
|
|
1285
|
+
type: string;
|
|
1286
|
+
};
|
|
1281
1287
|
mutation_code: {
|
|
1282
1288
|
enum: string[];
|
|
1283
1289
|
type: string;
|
|
@@ -1317,14 +1323,13 @@ declare const _default: {
|
|
|
1317
1323
|
from: {
|
|
1318
1324
|
properties: {
|
|
1319
1325
|
ends_at: {
|
|
1320
|
-
description: string;
|
|
1321
1326
|
format: string;
|
|
1322
1327
|
nullable: boolean;
|
|
1323
1328
|
type: string;
|
|
1324
1329
|
};
|
|
1325
1330
|
starts_at: {
|
|
1326
|
-
description: string;
|
|
1327
1331
|
format: string;
|
|
1332
|
+
nullable: boolean;
|
|
1328
1333
|
type: string;
|
|
1329
1334
|
};
|
|
1330
1335
|
email_address?: never;
|
|
@@ -1336,6 +1341,9 @@ declare const _default: {
|
|
|
1336
1341
|
required: string[];
|
|
1337
1342
|
type: string;
|
|
1338
1343
|
};
|
|
1344
|
+
message: {
|
|
1345
|
+
type: string;
|
|
1346
|
+
};
|
|
1339
1347
|
mutation_code: {
|
|
1340
1348
|
enum: string[];
|
|
1341
1349
|
type: string;
|
|
@@ -1343,14 +1351,13 @@ declare const _default: {
|
|
|
1343
1351
|
to: {
|
|
1344
1352
|
properties: {
|
|
1345
1353
|
ends_at: {
|
|
1346
|
-
description: string;
|
|
1347
1354
|
format: string;
|
|
1348
1355
|
nullable: boolean;
|
|
1349
1356
|
type: string;
|
|
1350
1357
|
};
|
|
1351
1358
|
starts_at: {
|
|
1352
|
-
description: string;
|
|
1353
1359
|
format: string;
|
|
1360
|
+
nullable: boolean;
|
|
1354
1361
|
type: string;
|
|
1355
1362
|
};
|
|
1356
1363
|
email_address?: never;
|
|
@@ -1386,6 +1393,9 @@ declare const _default: {
|
|
|
1386
1393
|
required: string[];
|
|
1387
1394
|
type: string;
|
|
1388
1395
|
};
|
|
1396
|
+
message: {
|
|
1397
|
+
type: string;
|
|
1398
|
+
};
|
|
1389
1399
|
mutation_code: {
|
|
1390
1400
|
enum: string[];
|
|
1391
1401
|
type: string;
|
|
@@ -1431,6 +1441,9 @@ declare const _default: {
|
|
|
1431
1441
|
required: string[];
|
|
1432
1442
|
type: string;
|
|
1433
1443
|
};
|
|
1444
|
+
message: {
|
|
1445
|
+
type: string;
|
|
1446
|
+
};
|
|
1434
1447
|
mutation_code: {
|
|
1435
1448
|
enum: string[];
|
|
1436
1449
|
type: string;
|
|
@@ -8538,6 +8551,9 @@ declare const _default: {
|
|
|
8538
8551
|
format: string;
|
|
8539
8552
|
type: string;
|
|
8540
8553
|
};
|
|
8554
|
+
message: {
|
|
8555
|
+
type: string;
|
|
8556
|
+
};
|
|
8541
8557
|
mutation_code: {
|
|
8542
8558
|
enum: string[];
|
|
8543
8559
|
type: string;
|
|
@@ -8576,6 +8592,9 @@ declare const _default: {
|
|
|
8576
8592
|
type: string;
|
|
8577
8593
|
required?: never;
|
|
8578
8594
|
};
|
|
8595
|
+
message: {
|
|
8596
|
+
type: string;
|
|
8597
|
+
};
|
|
8579
8598
|
mutation_code: {
|
|
8580
8599
|
enum: string[];
|
|
8581
8600
|
type: string;
|
|
@@ -8615,14 +8634,13 @@ declare const _default: {
|
|
|
8615
8634
|
from: {
|
|
8616
8635
|
properties: {
|
|
8617
8636
|
ends_at: {
|
|
8618
|
-
description: string;
|
|
8619
8637
|
format: string;
|
|
8620
8638
|
nullable: boolean;
|
|
8621
8639
|
type: string;
|
|
8622
8640
|
};
|
|
8623
8641
|
starts_at: {
|
|
8624
|
-
description: string;
|
|
8625
8642
|
format: string;
|
|
8643
|
+
nullable: boolean;
|
|
8626
8644
|
type: string;
|
|
8627
8645
|
};
|
|
8628
8646
|
email_address?: never;
|
|
@@ -8634,6 +8652,9 @@ declare const _default: {
|
|
|
8634
8652
|
required: string[];
|
|
8635
8653
|
type: string;
|
|
8636
8654
|
};
|
|
8655
|
+
message: {
|
|
8656
|
+
type: string;
|
|
8657
|
+
};
|
|
8637
8658
|
mutation_code: {
|
|
8638
8659
|
enum: string[];
|
|
8639
8660
|
type: string;
|
|
@@ -8641,14 +8662,13 @@ declare const _default: {
|
|
|
8641
8662
|
to: {
|
|
8642
8663
|
properties: {
|
|
8643
8664
|
ends_at: {
|
|
8644
|
-
description: string;
|
|
8645
8665
|
format: string;
|
|
8646
8666
|
nullable: boolean;
|
|
8647
8667
|
type: string;
|
|
8648
8668
|
};
|
|
8649
8669
|
starts_at: {
|
|
8650
|
-
description: string;
|
|
8651
8670
|
format: string;
|
|
8671
|
+
nullable: boolean;
|
|
8652
8672
|
type: string;
|
|
8653
8673
|
};
|
|
8654
8674
|
email_address?: never;
|
|
@@ -8684,6 +8704,9 @@ declare const _default: {
|
|
|
8684
8704
|
required: string[];
|
|
8685
8705
|
type: string;
|
|
8686
8706
|
};
|
|
8707
|
+
message: {
|
|
8708
|
+
type: string;
|
|
8709
|
+
};
|
|
8687
8710
|
mutation_code: {
|
|
8688
8711
|
enum: string[];
|
|
8689
8712
|
type: string;
|
|
@@ -8729,6 +8752,9 @@ declare const _default: {
|
|
|
8729
8752
|
required: string[];
|
|
8730
8753
|
type: string;
|
|
8731
8754
|
};
|
|
8755
|
+
message: {
|
|
8756
|
+
type: string;
|
|
8757
|
+
};
|
|
8732
8758
|
mutation_code: {
|
|
8733
8759
|
enum: string[];
|
|
8734
8760
|
type: string;
|
|
@@ -13684,6 +13710,76 @@ declare const _default: {
|
|
|
13684
13710
|
'x-title': string;
|
|
13685
13711
|
};
|
|
13686
13712
|
};
|
|
13713
|
+
'/acs/encoders/get': {
|
|
13714
|
+
post: {
|
|
13715
|
+
description: string;
|
|
13716
|
+
operationId: string;
|
|
13717
|
+
requestBody: {
|
|
13718
|
+
content: {
|
|
13719
|
+
'application/json': {
|
|
13720
|
+
schema: {
|
|
13721
|
+
properties: {
|
|
13722
|
+
acs_encoder_id: {
|
|
13723
|
+
description: string;
|
|
13724
|
+
format: string;
|
|
13725
|
+
type: string;
|
|
13726
|
+
};
|
|
13727
|
+
};
|
|
13728
|
+
required: string[];
|
|
13729
|
+
type: string;
|
|
13730
|
+
};
|
|
13731
|
+
};
|
|
13732
|
+
};
|
|
13733
|
+
};
|
|
13734
|
+
responses: {
|
|
13735
|
+
200: {
|
|
13736
|
+
content: {
|
|
13737
|
+
'application/json': {
|
|
13738
|
+
schema: {
|
|
13739
|
+
properties: {
|
|
13740
|
+
acs_encoder: {
|
|
13741
|
+
$ref: string;
|
|
13742
|
+
};
|
|
13743
|
+
ok: {
|
|
13744
|
+
type: string;
|
|
13745
|
+
};
|
|
13746
|
+
};
|
|
13747
|
+
required: string[];
|
|
13748
|
+
type: string;
|
|
13749
|
+
};
|
|
13750
|
+
};
|
|
13751
|
+
};
|
|
13752
|
+
description: string;
|
|
13753
|
+
};
|
|
13754
|
+
400: {
|
|
13755
|
+
description: string;
|
|
13756
|
+
};
|
|
13757
|
+
401: {
|
|
13758
|
+
description: string;
|
|
13759
|
+
};
|
|
13760
|
+
};
|
|
13761
|
+
security: ({
|
|
13762
|
+
pat_with_workspace: never[];
|
|
13763
|
+
console_session_with_workspace?: never;
|
|
13764
|
+
api_key?: never;
|
|
13765
|
+
} | {
|
|
13766
|
+
console_session_with_workspace: never[];
|
|
13767
|
+
pat_with_workspace?: never;
|
|
13768
|
+
api_key?: never;
|
|
13769
|
+
} | {
|
|
13770
|
+
api_key: never[];
|
|
13771
|
+
pat_with_workspace?: never;
|
|
13772
|
+
console_session_with_workspace?: never;
|
|
13773
|
+
})[];
|
|
13774
|
+
summary: string;
|
|
13775
|
+
tags: string[];
|
|
13776
|
+
'x-fern-sdk-group-name': string[];
|
|
13777
|
+
'x-fern-sdk-method-name': string;
|
|
13778
|
+
'x-fern-sdk-return-value': string;
|
|
13779
|
+
'x-response-key': string;
|
|
13780
|
+
'x-title': string;
|
|
13781
|
+
};
|
|
13782
|
+
};
|
|
13687
13783
|
'/acs/encoders/list': {
|
|
13688
13784
|
post: {
|
|
13689
13785
|
description: string;
|
|
@@ -21044,10 +21140,12 @@ declare const _default: {
|
|
|
21044
21140
|
properties: {
|
|
21045
21141
|
can_tailscale_proxy_reach_bridge: {
|
|
21046
21142
|
description: string;
|
|
21143
|
+
nullable: boolean;
|
|
21047
21144
|
type: string;
|
|
21048
21145
|
};
|
|
21049
21146
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21050
21147
|
description: string;
|
|
21148
|
+
nullable: boolean;
|
|
21051
21149
|
type: string;
|
|
21052
21150
|
};
|
|
21053
21151
|
created_at: {
|
|
@@ -21061,14 +21159,17 @@ declare const _default: {
|
|
|
21061
21159
|
};
|
|
21062
21160
|
is_bridge_socks_server_healthy: {
|
|
21063
21161
|
description: string;
|
|
21162
|
+
nullable: boolean;
|
|
21064
21163
|
type: string;
|
|
21065
21164
|
};
|
|
21066
21165
|
is_tailscale_proxy_reachable: {
|
|
21067
21166
|
description: string;
|
|
21167
|
+
nullable: boolean;
|
|
21068
21168
|
type: string;
|
|
21069
21169
|
};
|
|
21070
21170
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21071
21171
|
description: string;
|
|
21172
|
+
nullable: boolean;
|
|
21072
21173
|
type: string;
|
|
21073
21174
|
};
|
|
21074
21175
|
message: {
|
|
@@ -21200,10 +21301,12 @@ declare const _default: {
|
|
|
21200
21301
|
properties: {
|
|
21201
21302
|
can_tailscale_proxy_reach_bridge: {
|
|
21202
21303
|
description: string;
|
|
21304
|
+
nullable: boolean;
|
|
21203
21305
|
type: string;
|
|
21204
21306
|
};
|
|
21205
21307
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21206
21308
|
description: string;
|
|
21309
|
+
nullable: boolean;
|
|
21207
21310
|
type: string;
|
|
21208
21311
|
};
|
|
21209
21312
|
created_at: {
|
|
@@ -21217,14 +21320,17 @@ declare const _default: {
|
|
|
21217
21320
|
};
|
|
21218
21321
|
is_bridge_socks_server_healthy: {
|
|
21219
21322
|
description: string;
|
|
21323
|
+
nullable: boolean;
|
|
21220
21324
|
type: string;
|
|
21221
21325
|
};
|
|
21222
21326
|
is_tailscale_proxy_reachable: {
|
|
21223
21327
|
description: string;
|
|
21328
|
+
nullable: boolean;
|
|
21224
21329
|
type: string;
|
|
21225
21330
|
};
|
|
21226
21331
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21227
21332
|
description: string;
|
|
21333
|
+
nullable: boolean;
|
|
21228
21334
|
type: string;
|
|
21229
21335
|
};
|
|
21230
21336
|
message: {
|
|
@@ -21352,10 +21458,12 @@ declare const _default: {
|
|
|
21352
21458
|
properties: {
|
|
21353
21459
|
can_tailscale_proxy_reach_bridge: {
|
|
21354
21460
|
description: string;
|
|
21461
|
+
nullable: boolean;
|
|
21355
21462
|
type: string;
|
|
21356
21463
|
};
|
|
21357
21464
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21358
21465
|
description: string;
|
|
21466
|
+
nullable: boolean;
|
|
21359
21467
|
type: string;
|
|
21360
21468
|
};
|
|
21361
21469
|
created_at: {
|
|
@@ -21369,14 +21477,17 @@ declare const _default: {
|
|
|
21369
21477
|
};
|
|
21370
21478
|
is_bridge_socks_server_healthy: {
|
|
21371
21479
|
description: string;
|
|
21480
|
+
nullable: boolean;
|
|
21372
21481
|
type: string;
|
|
21373
21482
|
};
|
|
21374
21483
|
is_tailscale_proxy_reachable: {
|
|
21375
21484
|
description: string;
|
|
21485
|
+
nullable: boolean;
|
|
21376
21486
|
type: string;
|
|
21377
21487
|
};
|
|
21378
21488
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21379
21489
|
description: string;
|
|
21490
|
+
nullable: boolean;
|
|
21380
21491
|
type: string;
|
|
21381
21492
|
};
|
|
21382
21493
|
message: {
|
|
@@ -21508,10 +21619,12 @@ declare const _default: {
|
|
|
21508
21619
|
properties: {
|
|
21509
21620
|
can_tailscale_proxy_reach_bridge: {
|
|
21510
21621
|
description: string;
|
|
21622
|
+
nullable: boolean;
|
|
21511
21623
|
type: string;
|
|
21512
21624
|
};
|
|
21513
21625
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
21514
21626
|
description: string;
|
|
21627
|
+
nullable: boolean;
|
|
21515
21628
|
type: string;
|
|
21516
21629
|
};
|
|
21517
21630
|
created_at: {
|
|
@@ -21525,14 +21638,17 @@ declare const _default: {
|
|
|
21525
21638
|
};
|
|
21526
21639
|
is_bridge_socks_server_healthy: {
|
|
21527
21640
|
description: string;
|
|
21641
|
+
nullable: boolean;
|
|
21528
21642
|
type: string;
|
|
21529
21643
|
};
|
|
21530
21644
|
is_tailscale_proxy_reachable: {
|
|
21531
21645
|
description: string;
|
|
21646
|
+
nullable: boolean;
|
|
21532
21647
|
type: string;
|
|
21533
21648
|
};
|
|
21534
21649
|
is_tailscale_proxy_socks_server_healthy: {
|
|
21535
21650
|
description: string;
|
|
21651
|
+
nullable: boolean;
|
|
21536
21652
|
type: string;
|
|
21537
21653
|
};
|
|
21538
21654
|
message: {
|