@seamapi/types 1.178.0 → 1.179.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
@@ -808,8 +808,15 @@ var seam_event = zod.z.discriminatedUnion("event_type", [
808
808
  var workspace = zod.z.object({
809
809
  workspace_id: zod.z.string().uuid(),
810
810
  name: zod.z.string(),
811
+ company_name: zod.z.string(),
811
812
  is_sandbox: zod.z.boolean(),
812
- connect_partner_name: zod.z.string().nullable()
813
+ connect_partner_name: zod.z.string().nullable().describe(
814
+ `
815
+ ---
816
+ deprecated: use company_name
817
+ ---
818
+ `
819
+ ).nullable()
813
820
  });
814
821
 
815
822
  // src/lib/seam/connect/openapi.ts
@@ -4409,7 +4416,12 @@ var openapi_default = {
4409
4416
  },
4410
4417
  workspace: {
4411
4418
  properties: {
4412
- connect_partner_name: { nullable: true, type: "string" },
4419
+ company_name: { type: "string" },
4420
+ connect_partner_name: {
4421
+ description: "\n ---\n deprecated: use company_name\n ---\n ",
4422
+ nullable: true,
4423
+ type: "string"
4424
+ },
4413
4425
  is_sandbox: { type: "boolean" },
4414
4426
  name: { type: "string" },
4415
4427
  workspace_id: { format: "uuid", type: "string" }
@@ -4417,6 +4429,7 @@ var openapi_default = {
4417
4429
  required: [
4418
4430
  "workspace_id",
4419
4431
  "name",
4432
+ "company_name",
4420
4433
  "is_sandbox",
4421
4434
  "connect_partner_name"
4422
4435
  ],
@@ -13375,8 +13388,10 @@ var openapi_default = {
13375
13388
  "application/json": {
13376
13389
  schema: {
13377
13390
  properties: {
13391
+ company_name: { type: "string" },
13378
13392
  connect_partner_name: {
13379
- description: "The name shown inside the connect webview",
13393
+ description: "\n ---\n deprecated: use company_name\n ---\n ",
13394
+ nullable: true,
13380
13395
  type: "string"
13381
13396
  },
13382
13397
  is_sandbox: { default: false, type: "boolean" },
@@ -13387,7 +13402,7 @@ var openapi_default = {
13387
13402
  },
13388
13403
  webview_primary_button_color: { type: "string" }
13389
13404
  },
13390
- required: ["name", "connect_partner_name"],
13405
+ required: ["name"],
13391
13406
  type: "object"
13392
13407
  }
13393
13408
  }