@seamapi/types 1.478.0 → 1.480.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 +76 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +285 -20
- package/dist/index.cjs +76 -14
- 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 +273 -16
- package/lib/seam/connect/openapi.js +74 -13
- 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 +74 -13
- 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",
|
|
@@ -57363,7 +57367,13 @@ var openapi_default = {
|
|
|
57363
57367
|
400: { description: "Bad Request" },
|
|
57364
57368
|
401: { description: "Unauthorized" }
|
|
57365
57369
|
},
|
|
57366
|
-
security: [
|
|
57370
|
+
security: [
|
|
57371
|
+
{ client_session: [] },
|
|
57372
|
+
{ client_session_with_customer: [] },
|
|
57373
|
+
{ pat_with_workspace: [] },
|
|
57374
|
+
{ console_session_with_workspace: [] },
|
|
57375
|
+
{ api_key: [] }
|
|
57376
|
+
],
|
|
57367
57377
|
summary: "/workspaces/customization_profiles/create",
|
|
57368
57378
|
tags: ["/workspaces"],
|
|
57369
57379
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57401,13 +57411,15 @@ var openapi_default = {
|
|
|
57401
57411
|
type: "string"
|
|
57402
57412
|
},
|
|
57403
57413
|
logo_url: { format: "uri", type: "string" },
|
|
57414
|
+
name: { nullable: true, type: "string" },
|
|
57404
57415
|
primary_color: { type: "string" },
|
|
57405
57416
|
secondary_color: { type: "string" },
|
|
57406
57417
|
workspace_id: { format: "uuid", type: "string" }
|
|
57407
57418
|
},
|
|
57408
57419
|
required: [
|
|
57409
|
-
"customization_profile_id",
|
|
57410
57420
|
"workspace_id",
|
|
57421
|
+
"name",
|
|
57422
|
+
"customization_profile_id",
|
|
57411
57423
|
"created_at"
|
|
57412
57424
|
],
|
|
57413
57425
|
type: "object",
|
|
@@ -57427,7 +57439,13 @@ var openapi_default = {
|
|
|
57427
57439
|
400: { description: "Bad Request" },
|
|
57428
57440
|
401: { description: "Unauthorized" }
|
|
57429
57441
|
},
|
|
57430
|
-
security: [
|
|
57442
|
+
security: [
|
|
57443
|
+
{ client_session: [] },
|
|
57444
|
+
{ client_session_with_customer: [] },
|
|
57445
|
+
{ pat_with_workspace: [] },
|
|
57446
|
+
{ console_session_with_workspace: [] },
|
|
57447
|
+
{ api_key: [] }
|
|
57448
|
+
],
|
|
57431
57449
|
summary: "/workspaces/customization_profiles/get",
|
|
57432
57450
|
tags: ["/workspaces"],
|
|
57433
57451
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57468,13 +57486,15 @@ var openapi_default = {
|
|
|
57468
57486
|
type: "string"
|
|
57469
57487
|
},
|
|
57470
57488
|
logo_url: { format: "uri", type: "string" },
|
|
57489
|
+
name: { nullable: true, type: "string" },
|
|
57471
57490
|
primary_color: { type: "string" },
|
|
57472
57491
|
secondary_color: { type: "string" },
|
|
57473
57492
|
workspace_id: { format: "uuid", type: "string" }
|
|
57474
57493
|
},
|
|
57475
57494
|
required: [
|
|
57476
|
-
"customization_profile_id",
|
|
57477
57495
|
"workspace_id",
|
|
57496
|
+
"name",
|
|
57497
|
+
"customization_profile_id",
|
|
57478
57498
|
"created_at"
|
|
57479
57499
|
],
|
|
57480
57500
|
type: "object",
|
|
@@ -57494,7 +57514,13 @@ var openapi_default = {
|
|
|
57494
57514
|
400: { description: "Bad Request" },
|
|
57495
57515
|
401: { description: "Unauthorized" }
|
|
57496
57516
|
},
|
|
57497
|
-
security: [
|
|
57517
|
+
security: [
|
|
57518
|
+
{ client_session: [] },
|
|
57519
|
+
{ client_session_with_customer: [] },
|
|
57520
|
+
{ pat_with_workspace: [] },
|
|
57521
|
+
{ console_session_with_workspace: [] },
|
|
57522
|
+
{ api_key: [] }
|
|
57523
|
+
],
|
|
57498
57524
|
summary: "/workspaces/customization_profiles/get",
|
|
57499
57525
|
tags: ["/workspaces"],
|
|
57500
57526
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57525,13 +57551,15 @@ var openapi_default = {
|
|
|
57525
57551
|
type: "string"
|
|
57526
57552
|
},
|
|
57527
57553
|
logo_url: { format: "uri", type: "string" },
|
|
57554
|
+
name: { nullable: true, type: "string" },
|
|
57528
57555
|
primary_color: { type: "string" },
|
|
57529
57556
|
secondary_color: { type: "string" },
|
|
57530
57557
|
workspace_id: { format: "uuid", type: "string" }
|
|
57531
57558
|
},
|
|
57532
57559
|
required: [
|
|
57533
|
-
"customization_profile_id",
|
|
57534
57560
|
"workspace_id",
|
|
57561
|
+
"name",
|
|
57562
|
+
"customization_profile_id",
|
|
57535
57563
|
"created_at"
|
|
57536
57564
|
],
|
|
57537
57565
|
type: "object",
|
|
@@ -57553,7 +57581,13 @@ var openapi_default = {
|
|
|
57553
57581
|
400: { description: "Bad Request" },
|
|
57554
57582
|
401: { description: "Unauthorized" }
|
|
57555
57583
|
},
|
|
57556
|
-
security: [
|
|
57584
|
+
security: [
|
|
57585
|
+
{ client_session: [] },
|
|
57586
|
+
{ client_session_with_customer: [] },
|
|
57587
|
+
{ pat_with_workspace: [] },
|
|
57588
|
+
{ console_session_with_workspace: [] },
|
|
57589
|
+
{ api_key: [] }
|
|
57590
|
+
],
|
|
57557
57591
|
summary: "/workspaces/customization_profiles/list",
|
|
57558
57592
|
tags: ["/workspaces"],
|
|
57559
57593
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57582,13 +57616,15 @@ var openapi_default = {
|
|
|
57582
57616
|
type: "string"
|
|
57583
57617
|
},
|
|
57584
57618
|
logo_url: { format: "uri", type: "string" },
|
|
57619
|
+
name: { nullable: true, type: "string" },
|
|
57585
57620
|
primary_color: { type: "string" },
|
|
57586
57621
|
secondary_color: { type: "string" },
|
|
57587
57622
|
workspace_id: { format: "uuid", type: "string" }
|
|
57588
57623
|
},
|
|
57589
57624
|
required: [
|
|
57590
|
-
"customization_profile_id",
|
|
57591
57625
|
"workspace_id",
|
|
57626
|
+
"name",
|
|
57627
|
+
"customization_profile_id",
|
|
57592
57628
|
"created_at"
|
|
57593
57629
|
],
|
|
57594
57630
|
type: "object",
|
|
@@ -57610,7 +57646,13 @@ var openapi_default = {
|
|
|
57610
57646
|
400: { description: "Bad Request" },
|
|
57611
57647
|
401: { description: "Unauthorized" }
|
|
57612
57648
|
},
|
|
57613
|
-
security: [
|
|
57649
|
+
security: [
|
|
57650
|
+
{ client_session: [] },
|
|
57651
|
+
{ client_session_with_customer: [] },
|
|
57652
|
+
{ pat_with_workspace: [] },
|
|
57653
|
+
{ console_session_with_workspace: [] },
|
|
57654
|
+
{ api_key: [] }
|
|
57655
|
+
],
|
|
57614
57656
|
summary: "/workspaces/customization_profiles/list",
|
|
57615
57657
|
tags: ["/workspaces"],
|
|
57616
57658
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57631,6 +57673,7 @@ var openapi_default = {
|
|
|
57631
57673
|
schema: {
|
|
57632
57674
|
properties: {
|
|
57633
57675
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
57676
|
+
name: { nullable: true, type: "string" },
|
|
57634
57677
|
primary_color: { type: "string" },
|
|
57635
57678
|
secondary_color: { type: "string" }
|
|
57636
57679
|
},
|
|
@@ -57656,7 +57699,13 @@ var openapi_default = {
|
|
|
57656
57699
|
400: { description: "Bad Request" },
|
|
57657
57700
|
401: { description: "Unauthorized" }
|
|
57658
57701
|
},
|
|
57659
|
-
security: [
|
|
57702
|
+
security: [
|
|
57703
|
+
{ client_session: [] },
|
|
57704
|
+
{ client_session_with_customer: [] },
|
|
57705
|
+
{ pat_with_workspace: [] },
|
|
57706
|
+
{ console_session_with_workspace: [] },
|
|
57707
|
+
{ api_key: [] }
|
|
57708
|
+
],
|
|
57660
57709
|
summary: "/workspaces/customization_profiles/update",
|
|
57661
57710
|
tags: ["/workspaces"],
|
|
57662
57711
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57674,6 +57723,7 @@ var openapi_default = {
|
|
|
57674
57723
|
schema: {
|
|
57675
57724
|
properties: {
|
|
57676
57725
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
57726
|
+
name: { nullable: true, type: "string" },
|
|
57677
57727
|
primary_color: { type: "string" },
|
|
57678
57728
|
secondary_color: { type: "string" }
|
|
57679
57729
|
},
|
|
@@ -57699,7 +57749,13 @@ var openapi_default = {
|
|
|
57699
57749
|
400: { description: "Bad Request" },
|
|
57700
57750
|
401: { description: "Unauthorized" }
|
|
57701
57751
|
},
|
|
57702
|
-
security: [
|
|
57752
|
+
security: [
|
|
57753
|
+
{ client_session: [] },
|
|
57754
|
+
{ client_session_with_customer: [] },
|
|
57755
|
+
{ pat_with_workspace: [] },
|
|
57756
|
+
{ console_session_with_workspace: [] },
|
|
57757
|
+
{ api_key: [] }
|
|
57758
|
+
],
|
|
57703
57759
|
summary: "/workspaces/customization_profiles/update",
|
|
57704
57760
|
tags: ["/workspaces"],
|
|
57705
57761
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
@@ -57729,7 +57785,13 @@ var openapi_default = {
|
|
|
57729
57785
|
400: { description: "Bad Request" },
|
|
57730
57786
|
401: { description: "Unauthorized" }
|
|
57731
57787
|
},
|
|
57732
|
-
security: [
|
|
57788
|
+
security: [
|
|
57789
|
+
{ client_session: [] },
|
|
57790
|
+
{ client_session_with_customer: [] },
|
|
57791
|
+
{ pat_with_workspace: [] },
|
|
57792
|
+
{ console_session_with_workspace: [] },
|
|
57793
|
+
{ api_key: [] }
|
|
57794
|
+
],
|
|
57733
57795
|
summary: "/workspaces/customization_profiles/upload_images",
|
|
57734
57796
|
tags: ["/workspaces"],
|
|
57735
57797
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|