@seamapi/types 1.356.0 → 1.357.1
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 +20 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -2
- package/dist/devicedb.cjs +1 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +1 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/openapi.ts +1 -1
- package/src/lib/seam/connect/route-types.ts +1 -1
- package/src/lib/seam/connect/schemas.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -20,6 +20,7 @@ __export(schemas_exports, {
|
|
|
20
20
|
acs_user: () => acs_user,
|
|
21
21
|
action_attempt: () => action_attempt,
|
|
22
22
|
bridge: () => bridge,
|
|
23
|
+
bridge_client_session: () => bridge_client_session,
|
|
23
24
|
client_session: () => client_session,
|
|
24
25
|
common_failed_action_attempt: () => common_failed_action_attempt,
|
|
25
26
|
common_pending_action_attempt: () => common_pending_action_attempt,
|
|
@@ -2525,6 +2526,23 @@ undocumented: Unreleased.
|
|
|
2525
2526
|
route_path: /bridges
|
|
2526
2527
|
---
|
|
2527
2528
|
`);
|
|
2529
|
+
var bridge_client_session = zod.z.object({
|
|
2530
|
+
created_at: zod.z.string().datetime(),
|
|
2531
|
+
bridge_client_session_id: zod.z.string().uuid(),
|
|
2532
|
+
bridge_client_session_token: zod.z.string(),
|
|
2533
|
+
pairing_code: zod.z.string().length(6),
|
|
2534
|
+
pairing_code_expires_at: zod.z.string().datetime(),
|
|
2535
|
+
tailscale_hostname: zod.z.string(),
|
|
2536
|
+
tailscale_auth_key: zod.z.string().nullable(),
|
|
2537
|
+
bridge_client_name: zod.z.string(),
|
|
2538
|
+
bridge_client_time_zone: zod.z.string(),
|
|
2539
|
+
bridge_client_machine_identifier_key: zod.z.string()
|
|
2540
|
+
}).describe(`
|
|
2541
|
+
---
|
|
2542
|
+
route_path: /seam/bridge/v1/bridge_client_sessions
|
|
2543
|
+
undocumented: Seam Bridge Client only.
|
|
2544
|
+
---
|
|
2545
|
+
`);
|
|
2528
2546
|
var client_session = zod.z.object({
|
|
2529
2547
|
client_session_id: zod.z.string().uuid(),
|
|
2530
2548
|
workspace_id: zod.z.string().uuid(),
|
|
@@ -21191,7 +21209,7 @@ var openapi_default = {
|
|
|
21191
21209
|
type: "string"
|
|
21192
21210
|
},
|
|
21193
21211
|
search: {
|
|
21194
|
-
description: "String to partial match
|
|
21212
|
+
description: "String for which to search. Filters returned `acs_user`s to include all records that satisfy a partial match using `full_name`, `phone_number`, or `email_address`.",
|
|
21195
21213
|
minLength: 1,
|
|
21196
21214
|
type: "string"
|
|
21197
21215
|
},
|
|
@@ -30119,5 +30137,5 @@ var routes = {};
|
|
|
30119
30137
|
exports.openapi = openapi_default;
|
|
30120
30138
|
exports.routes = routes;
|
|
30121
30139
|
exports.schemas = schemas_exports;
|
|
30122
|
-
//# sourceMappingURL=
|
|
30140
|
+
//# sourceMappingURL=connect.cjs.map
|
|
30123
30141
|
//# sourceMappingURL=connect.cjs.map
|