@seamapi/types 1.345.2 → 1.346.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +67 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +120 -2
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/model-types.d.ts +1 -1
  8. package/lib/seam/connect/models/bridges/bridge.d.ts +15 -0
  9. package/lib/seam/connect/models/bridges/bridge.js +12 -0
  10. package/lib/seam/connect/models/bridges/bridge.js.map +1 -0
  11. package/lib/seam/connect/models/bridges/index.d.ts +1 -0
  12. package/lib/seam/connect/models/bridges/index.js +2 -0
  13. package/lib/seam/connect/models/bridges/index.js.map +1 -0
  14. package/lib/seam/connect/models/index.d.ts +1 -0
  15. package/lib/seam/connect/models/index.js +1 -0
  16. package/lib/seam/connect/models/index.js.map +1 -1
  17. package/lib/seam/connect/openapi.d.ts +84 -0
  18. package/lib/seam/connect/openapi.js +56 -0
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +18 -0
  21. package/lib/seam/connect/schemas.d.ts +1 -1
  22. package/lib/seam/connect/schemas.js +1 -1
  23. package/lib/seam/connect/schemas.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  26. package/src/lib/seam/connect/model-types.ts +1 -0
  27. package/src/lib/seam/connect/models/bridges/bridge.ts +13 -0
  28. package/src/lib/seam/connect/models/bridges/index.ts +1 -0
  29. package/src/lib/seam/connect/models/index.ts +1 -0
  30. package/src/lib/seam/connect/openapi.ts +56 -0
  31. package/src/lib/seam/connect/route-types.ts +18 -0
  32. package/src/lib/seam/connect/schemas.ts +1 -0
package/dist/connect.cjs CHANGED
@@ -19,6 +19,7 @@ __export(schemas_exports, {
19
19
  acs_system: () => acs_system,
20
20
  acs_user: () => acs_user,
21
21
  action_attempt: () => action_attempt,
22
+ bridge: () => bridge,
22
23
  client_session: () => client_session,
23
24
  common_failed_action_attempt: () => common_failed_action_attempt,
24
25
  common_pending_action_attempt: () => common_pending_action_attempt,
@@ -2507,6 +2508,16 @@ var action_attempt = zod.z.union([
2507
2508
  route_path: /action_attempts
2508
2509
  ---
2509
2510
  `);
2511
+ var bridge = zod.z.object({
2512
+ bridge_id: zod.z.string().uuid(),
2513
+ workspace_id: zod.z.string().uuid(),
2514
+ created_at: zod.z.string().datetime()
2515
+ }).describe(`
2516
+ ---
2517
+ undocumented: Unreleased.
2518
+ route_path: /bridges
2519
+ ---
2520
+ `);
2510
2521
  var client_session = zod.z.object({
2511
2522
  client_session_id: zod.z.string().uuid(),
2512
2523
  workspace_id: zod.z.string().uuid(),
@@ -21805,6 +21816,62 @@ var openapi_default = {
21805
21816
  "x-response-key": "action_attempts"
21806
21817
  }
21807
21818
  },
21819
+ "/bridges/get": {
21820
+ post: {
21821
+ operationId: "bridgesGetPost",
21822
+ requestBody: {
21823
+ content: {
21824
+ "application/json": {
21825
+ schema: {
21826
+ properties: { bridge_id: { format: "uuid", type: "string" } },
21827
+ required: ["bridge_id"],
21828
+ type: "object"
21829
+ }
21830
+ }
21831
+ }
21832
+ },
21833
+ responses: {
21834
+ 200: {
21835
+ content: {
21836
+ "application/json": {
21837
+ schema: {
21838
+ properties: {
21839
+ bridge: {
21840
+ properties: {
21841
+ bridge_id: { format: "uuid", type: "string" },
21842
+ created_at: { format: "date-time", type: "string" },
21843
+ workspace_id: { format: "uuid", type: "string" }
21844
+ },
21845
+ required: ["bridge_id", "workspace_id", "created_at"],
21846
+ type: "object",
21847
+ "x-route-path": "/bridges",
21848
+ "x-undocumented": "Unreleased."
21849
+ },
21850
+ ok: { type: "boolean" }
21851
+ },
21852
+ required: ["bridge", "ok"],
21853
+ type: "object"
21854
+ }
21855
+ }
21856
+ },
21857
+ description: "OK"
21858
+ },
21859
+ 400: { description: "Bad Request" },
21860
+ 401: { description: "Unauthorized" }
21861
+ },
21862
+ security: [
21863
+ { pat_with_workspace: [] },
21864
+ { console_session_with_workspace: [] },
21865
+ { api_key: [] }
21866
+ ],
21867
+ summary: "/bridges/get",
21868
+ tags: [],
21869
+ "x-fern-sdk-group-name": ["bridges"],
21870
+ "x-fern-sdk-method-name": "get",
21871
+ "x-fern-sdk-return-value": "bridge",
21872
+ "x-response-key": "bridge"
21873
+ }
21874
+ },
21808
21875
  "/client_sessions/create": {
21809
21876
  post: {
21810
21877
  operationId: "clientSessionsCreatePost",