@seamapi/types 1.345.2 → 1.347.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 (36) hide show
  1. package/dist/connect.cjs +70 -1
  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/devices/device-provider.d.ts +2 -2
  15. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  16. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  17. package/lib/seam/connect/models/index.d.ts +1 -0
  18. package/lib/seam/connect/models/index.js +1 -0
  19. package/lib/seam/connect/models/index.js.map +1 -1
  20. package/lib/seam/connect/openapi.d.ts +84 -0
  21. package/lib/seam/connect/openapi.js +56 -0
  22. package/lib/seam/connect/openapi.js.map +1 -1
  23. package/lib/seam/connect/route-types.d.ts +18 -0
  24. package/lib/seam/connect/schemas.d.ts +1 -1
  25. package/lib/seam/connect/schemas.js +1 -1
  26. package/lib/seam/connect/schemas.js.map +1 -1
  27. package/package.json +1 -1
  28. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  29. package/src/lib/seam/connect/model-types.ts +1 -0
  30. package/src/lib/seam/connect/models/bridges/bridge.ts +13 -0
  31. package/src/lib/seam/connect/models/bridges/index.ts +1 -0
  32. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  33. package/src/lib/seam/connect/models/index.ts +1 -0
  34. package/src/lib/seam/connect/openapi.ts +56 -0
  35. package/src/lib/seam/connect/route-types.ts +18 -0
  36. 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,
@@ -1154,9 +1155,11 @@ var PROVIDER_CATEGORY_MAP = {
1154
1155
  "honeywell_resideo",
1155
1156
  "visionline",
1156
1157
  "assa_abloy_credential_service",
1157
- "latch"
1158
+ "latch",
1159
+ "akiles"
1158
1160
  ],
1159
1161
  consumer_smartlocks: [
1162
+ "akiles",
1160
1163
  "august",
1161
1164
  "schlage",
1162
1165
  "yale",
@@ -2507,6 +2510,16 @@ var action_attempt = zod.z.union([
2507
2510
  route_path: /action_attempts
2508
2511
  ---
2509
2512
  `);
2513
+ var bridge = zod.z.object({
2514
+ bridge_id: zod.z.string().uuid(),
2515
+ workspace_id: zod.z.string().uuid(),
2516
+ created_at: zod.z.string().datetime()
2517
+ }).describe(`
2518
+ ---
2519
+ undocumented: Unreleased.
2520
+ route_path: /bridges
2521
+ ---
2522
+ `);
2510
2523
  var client_session = zod.z.object({
2511
2524
  client_session_id: zod.z.string().uuid(),
2512
2525
  workspace_id: zod.z.string().uuid(),
@@ -21805,6 +21818,62 @@ var openapi_default = {
21805
21818
  "x-response-key": "action_attempts"
21806
21819
  }
21807
21820
  },
21821
+ "/bridges/get": {
21822
+ post: {
21823
+ operationId: "bridgesGetPost",
21824
+ requestBody: {
21825
+ content: {
21826
+ "application/json": {
21827
+ schema: {
21828
+ properties: { bridge_id: { format: "uuid", type: "string" } },
21829
+ required: ["bridge_id"],
21830
+ type: "object"
21831
+ }
21832
+ }
21833
+ }
21834
+ },
21835
+ responses: {
21836
+ 200: {
21837
+ content: {
21838
+ "application/json": {
21839
+ schema: {
21840
+ properties: {
21841
+ bridge: {
21842
+ properties: {
21843
+ bridge_id: { format: "uuid", type: "string" },
21844
+ created_at: { format: "date-time", type: "string" },
21845
+ workspace_id: { format: "uuid", type: "string" }
21846
+ },
21847
+ required: ["bridge_id", "workspace_id", "created_at"],
21848
+ type: "object",
21849
+ "x-route-path": "/bridges",
21850
+ "x-undocumented": "Unreleased."
21851
+ },
21852
+ ok: { type: "boolean" }
21853
+ },
21854
+ required: ["bridge", "ok"],
21855
+ type: "object"
21856
+ }
21857
+ }
21858
+ },
21859
+ description: "OK"
21860
+ },
21861
+ 400: { description: "Bad Request" },
21862
+ 401: { description: "Unauthorized" }
21863
+ },
21864
+ security: [
21865
+ { pat_with_workspace: [] },
21866
+ { console_session_with_workspace: [] },
21867
+ { api_key: [] }
21868
+ ],
21869
+ summary: "/bridges/get",
21870
+ tags: [],
21871
+ "x-fern-sdk-group-name": ["bridges"],
21872
+ "x-fern-sdk-method-name": "get",
21873
+ "x-fern-sdk-return-value": "bridge",
21874
+ "x-response-key": "bridge"
21875
+ }
21876
+ },
21808
21877
  "/client_sessions/create": {
21809
21878
  post: {
21810
21879
  operationId: "clientSessionsCreatePost",