@seamapi/types 1.355.0 → 1.357.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 +31 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +48 -3
- 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.d.ts +7 -0
- package/lib/seam/connect/openapi.js +12 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -2
- 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 +12 -1
- package/src/lib/seam/connect/route-types.ts +4 -2
- 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(),
|
|
@@ -21192,6 +21210,7 @@ var openapi_default = {
|
|
|
21192
21210
|
},
|
|
21193
21211
|
search: {
|
|
21194
21212
|
description: "String to partial match between full_name, phone_number and email_address.",
|
|
21213
|
+
minLength: 1,
|
|
21195
21214
|
type: "string"
|
|
21196
21215
|
},
|
|
21197
21216
|
user_identity_email_address: {
|
|
@@ -21235,9 +21254,19 @@ var openapi_default = {
|
|
|
21235
21254
|
description: "Opaque value that can be used to select the next page of results via the `page_cursor` parameter.",
|
|
21236
21255
|
nullable: true,
|
|
21237
21256
|
type: "string"
|
|
21257
|
+
},
|
|
21258
|
+
next_page_url: {
|
|
21259
|
+
description: "URL to get the next page of results.",
|
|
21260
|
+
format: "uri",
|
|
21261
|
+
nullable: true,
|
|
21262
|
+
type: "string"
|
|
21238
21263
|
}
|
|
21239
21264
|
},
|
|
21240
|
-
required: [
|
|
21265
|
+
required: [
|
|
21266
|
+
"next_page_cursor",
|
|
21267
|
+
"has_next_page",
|
|
21268
|
+
"next_page_url"
|
|
21269
|
+
],
|
|
21241
21270
|
type: "object"
|
|
21242
21271
|
}
|
|
21243
21272
|
},
|
|
@@ -30108,5 +30137,5 @@ var routes = {};
|
|
|
30108
30137
|
exports.openapi = openapi_default;
|
|
30109
30138
|
exports.routes = routes;
|
|
30110
30139
|
exports.schemas = schemas_exports;
|
|
30111
|
-
//# sourceMappingURL=
|
|
30140
|
+
//# sourceMappingURL=connect.cjs.map
|
|
30112
30141
|
//# sourceMappingURL=connect.cjs.map
|