@seamapi/types 1.53.1 → 1.55.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 CHANGED
@@ -277,6 +277,7 @@ var openapi_default = {
277
277
  },
278
278
  external_type_display_name: { type: "string" },
279
279
  full_name: { type: "string" },
280
+ hid_acs_system_id: { format: "uuid", type: "string" },
280
281
  is_suspended: { type: "boolean" },
281
282
  phone_number: { nullable: true, type: "string" },
282
283
  workspace_id: { format: "uuid", type: "string" }
@@ -713,11 +714,11 @@ var openapi_default = {
713
714
  type: "string"
714
715
  },
715
716
  supports_accessory_keypad: {
716
- description: "Deprecated: Use model.offline_access_codes_enabled.",
717
+ description: "Deprecated. Use model.accessory_keypad_supported.",
717
718
  type: "boolean"
718
719
  },
719
720
  supports_offline_access_codes: {
720
- description: "Deprecated: Use model.accessory_keypad_supported.",
721
+ description: "Deprecated. Use offline_access_codes_enabled.",
721
722
  type: "boolean"
722
723
  }
723
724
  },
@@ -1888,6 +1889,11 @@ var openapi_default = {
1888
1889
  scheme: "bearer",
1889
1890
  type: "http"
1890
1891
  },
1892
+ pat_without_workspace: {
1893
+ bearerFormat: "API Token",
1894
+ scheme: "bearer",
1895
+ type: "http"
1896
+ },
1891
1897
  seam_client_session_token: {
1892
1898
  in: "header",
1893
1899
  name: "seam-client-session-token",
@@ -4745,6 +4751,7 @@ var openapi_default = {
4745
4751
  },
4746
4752
  email_address: { format: "email", type: "string" },
4747
4753
  full_name: { type: "string" },
4754
+ hid_acs_system_id: { format: "uuid", type: "string" },
4748
4755
  phone_number: { nullable: true, type: "string" }
4749
4756
  },
4750
4757
  required: ["acs_user_id"],
@@ -4793,6 +4800,7 @@ var openapi_default = {
4793
4800
  },
4794
4801
  email_address: { format: "email", type: "string" },
4795
4802
  full_name: { type: "string" },
4803
+ hid_acs_system_id: { format: "uuid", type: "string" },
4796
4804
  phone_number: { nullable: true, type: "string" }
4797
4805
  },
4798
4806
  required: ["acs_user_id"],
@@ -7566,7 +7574,10 @@ var openapi_default = {
7566
7574
  content: {
7567
7575
  "application/json": {
7568
7576
  schema: {
7569
- properties: { device_id: { format: "uuid", type: "string" } },
7577
+ properties: {
7578
+ device_id: { format: "uuid", type: "string" },
7579
+ is_programmed: { type: "boolean" }
7580
+ },
7570
7581
  required: ["device_id"],
7571
7582
  type: "object"
7572
7583
  }
@@ -9687,6 +9698,58 @@ var openapi_default = {
9687
9698
  "x-fern-sdk-return-value": "webhooks"
9688
9699
  }
9689
9700
  },
9701
+ "/workspaces/create": {
9702
+ post: {
9703
+ operationId: "workspacesCreatePost",
9704
+ requestBody: {
9705
+ content: {
9706
+ "application/json": {
9707
+ schema: {
9708
+ properties: {
9709
+ connect_partner_name: {
9710
+ description: "The name shown inside the connect webview",
9711
+ type: "string"
9712
+ },
9713
+ is_sandbox: { default: false, type: "boolean" },
9714
+ webview_logo_shape: {
9715
+ enum: ["circle", "square"],
9716
+ type: "string"
9717
+ },
9718
+ webview_primary_button_color: { type: "string" },
9719
+ workspace_name: { type: "string" }
9720
+ },
9721
+ required: ["workspace_name", "connect_partner_name"],
9722
+ type: "object"
9723
+ }
9724
+ }
9725
+ }
9726
+ },
9727
+ responses: {
9728
+ 200: {
9729
+ content: {
9730
+ "application/json": {
9731
+ schema: {
9732
+ properties: {
9733
+ ok: { type: "boolean" },
9734
+ workspace: { $ref: "#/components/schemas/workspace" }
9735
+ },
9736
+ required: ["workspace", "ok"],
9737
+ type: "object"
9738
+ }
9739
+ }
9740
+ },
9741
+ description: "OK"
9742
+ },
9743
+ 400: { description: "Bad Request" },
9744
+ 401: { description: "Unauthorized" }
9745
+ },
9746
+ security: [{ pat_without_workspace: [] }],
9747
+ summary: "/workspaces/create",
9748
+ tags: ["/workspaces"],
9749
+ "x-fern-sdk-group-name": ["workspaces"],
9750
+ "x-fern-sdk-method-name": "create"
9751
+ }
9752
+ },
9690
9753
  "/workspaces/get": {
9691
9754
  get: {
9692
9755
  operationId: "workspacesGetGet",