@seamapi/types 1.478.0 → 1.479.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 +20 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +45 -4
- package/dist/index.cjs +20 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +4 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +2 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +33 -0
- package/lib/seam/connect/openapi.js +18 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +18 -5
- package/src/lib/seam/connect/route-types.ts +8 -3
package/dist/connect.cjs
CHANGED
|
@@ -4314,8 +4314,9 @@ var bridge_client_session = zod.z.object({
|
|
|
4314
4314
|
Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.
|
|
4315
4315
|
`);
|
|
4316
4316
|
var customization_profile = zod.z.object({
|
|
4317
|
-
customization_profile_id: zod.z.string().uuid(),
|
|
4318
4317
|
workspace_id: zod.z.string().uuid(),
|
|
4318
|
+
name: zod.z.string().nullable(),
|
|
4319
|
+
customization_profile_id: zod.z.string().uuid(),
|
|
4319
4320
|
created_at: zod.z.string().datetime(),
|
|
4320
4321
|
logo_url: zod.z.string().url().optional(),
|
|
4321
4322
|
primary_color: zod.z.string().optional(),
|
|
@@ -57313,6 +57314,7 @@ var openapi_default = {
|
|
|
57313
57314
|
"application/json": {
|
|
57314
57315
|
schema: {
|
|
57315
57316
|
properties: {
|
|
57317
|
+
name: { default: null, nullable: true, type: "string" },
|
|
57316
57318
|
primary_color: { type: "string" },
|
|
57317
57319
|
secondary_color: { type: "string" }
|
|
57318
57320
|
},
|
|
@@ -57337,13 +57339,15 @@ var openapi_default = {
|
|
|
57337
57339
|
type: "string"
|
|
57338
57340
|
},
|
|
57339
57341
|
logo_url: { format: "uri", type: "string" },
|
|
57342
|
+
name: { nullable: true, type: "string" },
|
|
57340
57343
|
primary_color: { type: "string" },
|
|
57341
57344
|
secondary_color: { type: "string" },
|
|
57342
57345
|
workspace_id: { format: "uuid", type: "string" }
|
|
57343
57346
|
},
|
|
57344
57347
|
required: [
|
|
57345
|
-
"customization_profile_id",
|
|
57346
57348
|
"workspace_id",
|
|
57349
|
+
"name",
|
|
57350
|
+
"customization_profile_id",
|
|
57347
57351
|
"created_at"
|
|
57348
57352
|
],
|
|
57349
57353
|
type: "object",
|
|
@@ -57401,13 +57405,15 @@ var openapi_default = {
|
|
|
57401
57405
|
type: "string"
|
|
57402
57406
|
},
|
|
57403
57407
|
logo_url: { format: "uri", type: "string" },
|
|
57408
|
+
name: { nullable: true, type: "string" },
|
|
57404
57409
|
primary_color: { type: "string" },
|
|
57405
57410
|
secondary_color: { type: "string" },
|
|
57406
57411
|
workspace_id: { format: "uuid", type: "string" }
|
|
57407
57412
|
},
|
|
57408
57413
|
required: [
|
|
57409
|
-
"customization_profile_id",
|
|
57410
57414
|
"workspace_id",
|
|
57415
|
+
"name",
|
|
57416
|
+
"customization_profile_id",
|
|
57411
57417
|
"created_at"
|
|
57412
57418
|
],
|
|
57413
57419
|
type: "object",
|
|
@@ -57468,13 +57474,15 @@ var openapi_default = {
|
|
|
57468
57474
|
type: "string"
|
|
57469
57475
|
},
|
|
57470
57476
|
logo_url: { format: "uri", type: "string" },
|
|
57477
|
+
name: { nullable: true, type: "string" },
|
|
57471
57478
|
primary_color: { type: "string" },
|
|
57472
57479
|
secondary_color: { type: "string" },
|
|
57473
57480
|
workspace_id: { format: "uuid", type: "string" }
|
|
57474
57481
|
},
|
|
57475
57482
|
required: [
|
|
57476
|
-
"customization_profile_id",
|
|
57477
57483
|
"workspace_id",
|
|
57484
|
+
"name",
|
|
57485
|
+
"customization_profile_id",
|
|
57478
57486
|
"created_at"
|
|
57479
57487
|
],
|
|
57480
57488
|
type: "object",
|
|
@@ -57525,13 +57533,15 @@ var openapi_default = {
|
|
|
57525
57533
|
type: "string"
|
|
57526
57534
|
},
|
|
57527
57535
|
logo_url: { format: "uri", type: "string" },
|
|
57536
|
+
name: { nullable: true, type: "string" },
|
|
57528
57537
|
primary_color: { type: "string" },
|
|
57529
57538
|
secondary_color: { type: "string" },
|
|
57530
57539
|
workspace_id: { format: "uuid", type: "string" }
|
|
57531
57540
|
},
|
|
57532
57541
|
required: [
|
|
57533
|
-
"customization_profile_id",
|
|
57534
57542
|
"workspace_id",
|
|
57543
|
+
"name",
|
|
57544
|
+
"customization_profile_id",
|
|
57535
57545
|
"created_at"
|
|
57536
57546
|
],
|
|
57537
57547
|
type: "object",
|
|
@@ -57582,13 +57592,15 @@ var openapi_default = {
|
|
|
57582
57592
|
type: "string"
|
|
57583
57593
|
},
|
|
57584
57594
|
logo_url: { format: "uri", type: "string" },
|
|
57595
|
+
name: { nullable: true, type: "string" },
|
|
57585
57596
|
primary_color: { type: "string" },
|
|
57586
57597
|
secondary_color: { type: "string" },
|
|
57587
57598
|
workspace_id: { format: "uuid", type: "string" }
|
|
57588
57599
|
},
|
|
57589
57600
|
required: [
|
|
57590
|
-
"customization_profile_id",
|
|
57591
57601
|
"workspace_id",
|
|
57602
|
+
"name",
|
|
57603
|
+
"customization_profile_id",
|
|
57592
57604
|
"created_at"
|
|
57593
57605
|
],
|
|
57594
57606
|
type: "object",
|
|
@@ -57631,6 +57643,7 @@ var openapi_default = {
|
|
|
57631
57643
|
schema: {
|
|
57632
57644
|
properties: {
|
|
57633
57645
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
57646
|
+
name: { nullable: true, type: "string" },
|
|
57634
57647
|
primary_color: { type: "string" },
|
|
57635
57648
|
secondary_color: { type: "string" }
|
|
57636
57649
|
},
|
|
@@ -57674,6 +57687,7 @@ var openapi_default = {
|
|
|
57674
57687
|
schema: {
|
|
57675
57688
|
properties: {
|
|
57676
57689
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
57690
|
+
name: { nullable: true, type: "string" },
|
|
57677
57691
|
primary_color: { type: "string" },
|
|
57678
57692
|
secondary_color: { type: "string" }
|
|
57679
57693
|
},
|