@seamapi/types 1.639.0 → 1.640.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
@@ -22,7 +22,6 @@ __export(schemas_exports, {
22
22
  batch: () => batch,
23
23
  bridge: () => bridge,
24
24
  bridge_client_session: () => bridge_client_session,
25
- building_block_type: () => building_block_type,
26
25
  client_session: () => client_session,
27
26
  common_failed_action_attempt: () => common_failed_action_attempt,
28
27
  common_pending_action_attempt: () => common_pending_action_attempt,
@@ -5846,10 +5845,8 @@ var pagination = zod.z.object({
5846
5845
  ),
5847
5846
  next_page_url: zod.z.string().url().nullable().describe("URL to get the next page of results.")
5848
5847
  }).describe("Information about the current page of results.");
5849
- var building_block_type = zod.z.enum(["connect_accounts", "manage_devices", "organize_spaces", "console"]).describe("Type of partner building block.");
5850
5848
  var magic_link = zod.z.object({
5851
5849
  url: zod.z.string().url().describe("URL for the magic link."),
5852
- building_block_type,
5853
5850
  customer_key: zod.z.string().describe("Customer key for the magic link."),
5854
5851
  expires_at: zod.z.string().datetime().describe("Date and time at which the magic link expires."),
5855
5852
  workspace_id: zod.z.string().uuid().describe(
@@ -23579,16 +23576,6 @@ var openapi_default = {
23579
23576
  magic_link: {
23580
23577
  description: "Represents a Customer Portal. Customer Portal is a hosted, customizable interface for managing device access. It enables you to embed secure, pre-authenticated access flows into your product\u2014either by sharing a link with users or embedding a view in an iframe.\n\nWith Customer Portal, you no longer need to build out frontend experiences for physical access, thermostats, and sensors. Instead, you can ship enterprise-grade access control experiences in a fraction of the time, while maintaining your product's branding and user experience.\n\nSeam hosts these flows, handling everything from account connection and device mapping to full-featured device control.",
23581
23578
  properties: {
23582
- building_block_type: {
23583
- description: "Type of partner building block.",
23584
- enum: [
23585
- "connect_accounts",
23586
- "manage_devices",
23587
- "organize_spaces",
23588
- "console"
23589
- ],
23590
- type: "string"
23591
- },
23592
23579
  created_at: {
23593
23580
  description: "Date and time at which the magic link was created.",
23594
23581
  format: "date-time",
@@ -23616,7 +23603,6 @@ var openapi_default = {
23616
23603
  },
23617
23604
  required: [
23618
23605
  "url",
23619
- "building_block_type",
23620
23606
  "customer_key",
23621
23607
  "expires_at",
23622
23608
  "workspace_id",