@seamapi/types 1.476.0 → 1.477.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 +86 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +64 -4
- package/dist/index.cjs +86 -26
- 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 +11 -3
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +52 -0
- package/lib/seam/connect/openapi.js +63 -11
- 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 +11 -3
- package/src/lib/seam/connect/openapi.ts +64 -11
- package/src/lib/seam/connect/route-types.ts +8 -3
package/dist/connect.cjs
CHANGED
|
@@ -4265,12 +4265,20 @@ var bridge_client_session = zod.z.object({
|
|
|
4265
4265
|
Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.
|
|
4266
4266
|
`);
|
|
4267
4267
|
var customization_profile = zod.z.object({
|
|
4268
|
-
workspace_id: zod.z.string().uuid(),
|
|
4269
4268
|
customization_profile_id: zod.z.string().uuid(),
|
|
4270
|
-
|
|
4269
|
+
workspace_id: zod.z.string().uuid(),
|
|
4270
|
+
created_at: zod.z.string().datetime(),
|
|
4271
|
+
logo_url: zod.z.string().url().optional(),
|
|
4271
4272
|
primary_color: zod.z.string().optional(),
|
|
4272
4273
|
secondary_color: zod.z.string().optional()
|
|
4273
|
-
})
|
|
4274
|
+
}).describe(`
|
|
4275
|
+
---
|
|
4276
|
+
title: Customization Profile
|
|
4277
|
+
undocumented: Unreleased.
|
|
4278
|
+
route_path: /workspaces/customization_profiles
|
|
4279
|
+
---
|
|
4280
|
+
A customization profile.
|
|
4281
|
+
`);
|
|
4274
4282
|
var common_event = zod.z.object({
|
|
4275
4283
|
event_id: zod.z.string().uuid().describe("ID of the event."),
|
|
4276
4284
|
workspace_id: zod.z.string().uuid().describe(
|
|
@@ -57264,18 +57272,27 @@ var openapi_default = {
|
|
|
57264
57272
|
schema: {
|
|
57265
57273
|
properties: {
|
|
57266
57274
|
customization_profile: {
|
|
57275
|
+
description: "A customization profile.",
|
|
57267
57276
|
properties: {
|
|
57277
|
+
created_at: { format: "date-time", type: "string" },
|
|
57268
57278
|
customization_profile_id: {
|
|
57269
57279
|
format: "uuid",
|
|
57270
57280
|
type: "string"
|
|
57271
57281
|
},
|
|
57272
|
-
logo_url: { type: "string" },
|
|
57282
|
+
logo_url: { format: "uri", type: "string" },
|
|
57273
57283
|
primary_color: { type: "string" },
|
|
57274
57284
|
secondary_color: { type: "string" },
|
|
57275
57285
|
workspace_id: { format: "uuid", type: "string" }
|
|
57276
57286
|
},
|
|
57277
|
-
required: [
|
|
57278
|
-
|
|
57287
|
+
required: [
|
|
57288
|
+
"customization_profile_id",
|
|
57289
|
+
"workspace_id",
|
|
57290
|
+
"created_at"
|
|
57291
|
+
],
|
|
57292
|
+
type: "object",
|
|
57293
|
+
"x-route-path": "/workspaces/customization_profiles",
|
|
57294
|
+
"x-title": "Customization Profile",
|
|
57295
|
+
"x-undocumented": "Unreleased."
|
|
57279
57296
|
},
|
|
57280
57297
|
ok: { type: "boolean" }
|
|
57281
57298
|
},
|
|
@@ -57296,7 +57313,8 @@ var openapi_default = {
|
|
|
57296
57313
|
"x-fern-sdk-method-name": "create",
|
|
57297
57314
|
"x-fern-sdk-return-value": "customization_profile",
|
|
57298
57315
|
"x-response-key": "customization_profile",
|
|
57299
|
-
"x-title": "Update Customization Profile"
|
|
57316
|
+
"x-title": "Update Customization Profile",
|
|
57317
|
+
"x-undocumented": "Unreleased."
|
|
57300
57318
|
}
|
|
57301
57319
|
},
|
|
57302
57320
|
"/workspaces/customization_profiles/get": {
|
|
@@ -57318,18 +57336,27 @@ var openapi_default = {
|
|
|
57318
57336
|
schema: {
|
|
57319
57337
|
properties: {
|
|
57320
57338
|
customization_profile: {
|
|
57339
|
+
description: "A customization profile.",
|
|
57321
57340
|
properties: {
|
|
57341
|
+
created_at: { format: "date-time", type: "string" },
|
|
57322
57342
|
customization_profile_id: {
|
|
57323
57343
|
format: "uuid",
|
|
57324
57344
|
type: "string"
|
|
57325
57345
|
},
|
|
57326
|
-
logo_url: { type: "string" },
|
|
57346
|
+
logo_url: { format: "uri", type: "string" },
|
|
57327
57347
|
primary_color: { type: "string" },
|
|
57328
57348
|
secondary_color: { type: "string" },
|
|
57329
57349
|
workspace_id: { format: "uuid", type: "string" }
|
|
57330
57350
|
},
|
|
57331
|
-
required: [
|
|
57332
|
-
|
|
57351
|
+
required: [
|
|
57352
|
+
"customization_profile_id",
|
|
57353
|
+
"workspace_id",
|
|
57354
|
+
"created_at"
|
|
57355
|
+
],
|
|
57356
|
+
type: "object",
|
|
57357
|
+
"x-route-path": "/workspaces/customization_profiles",
|
|
57358
|
+
"x-title": "Customization Profile",
|
|
57359
|
+
"x-undocumented": "Unreleased."
|
|
57333
57360
|
},
|
|
57334
57361
|
ok: { type: "boolean" }
|
|
57335
57362
|
},
|
|
@@ -57350,7 +57377,8 @@ var openapi_default = {
|
|
|
57350
57377
|
"x-fern-sdk-method-name": "get",
|
|
57351
57378
|
"x-fern-sdk-return-value": "customization_profile",
|
|
57352
57379
|
"x-response-key": "customization_profile",
|
|
57353
|
-
"x-title": "Get Customization Profile"
|
|
57380
|
+
"x-title": "Get Customization Profile",
|
|
57381
|
+
"x-undocumented": "Unreleased."
|
|
57354
57382
|
},
|
|
57355
57383
|
post: {
|
|
57356
57384
|
description: "Retrieves the customization profile for the workspace.",
|
|
@@ -57375,18 +57403,27 @@ var openapi_default = {
|
|
|
57375
57403
|
schema: {
|
|
57376
57404
|
properties: {
|
|
57377
57405
|
customization_profile: {
|
|
57406
|
+
description: "A customization profile.",
|
|
57378
57407
|
properties: {
|
|
57408
|
+
created_at: { format: "date-time", type: "string" },
|
|
57379
57409
|
customization_profile_id: {
|
|
57380
57410
|
format: "uuid",
|
|
57381
57411
|
type: "string"
|
|
57382
57412
|
},
|
|
57383
|
-
logo_url: { type: "string" },
|
|
57413
|
+
logo_url: { format: "uri", type: "string" },
|
|
57384
57414
|
primary_color: { type: "string" },
|
|
57385
57415
|
secondary_color: { type: "string" },
|
|
57386
57416
|
workspace_id: { format: "uuid", type: "string" }
|
|
57387
57417
|
},
|
|
57388
|
-
required: [
|
|
57389
|
-
|
|
57418
|
+
required: [
|
|
57419
|
+
"customization_profile_id",
|
|
57420
|
+
"workspace_id",
|
|
57421
|
+
"created_at"
|
|
57422
|
+
],
|
|
57423
|
+
type: "object",
|
|
57424
|
+
"x-route-path": "/workspaces/customization_profiles",
|
|
57425
|
+
"x-title": "Customization Profile",
|
|
57426
|
+
"x-undocumented": "Unreleased."
|
|
57390
57427
|
},
|
|
57391
57428
|
ok: { type: "boolean" }
|
|
57392
57429
|
},
|
|
@@ -57407,7 +57444,8 @@ var openapi_default = {
|
|
|
57407
57444
|
"x-fern-sdk-method-name": "get",
|
|
57408
57445
|
"x-fern-sdk-return-value": "customization_profile",
|
|
57409
57446
|
"x-response-key": "customization_profile",
|
|
57410
|
-
"x-title": "Get Customization Profile"
|
|
57447
|
+
"x-title": "Get Customization Profile",
|
|
57448
|
+
"x-undocumented": "Unreleased."
|
|
57411
57449
|
}
|
|
57412
57450
|
},
|
|
57413
57451
|
"/workspaces/customization_profiles/list": {
|
|
@@ -57422,18 +57460,27 @@ var openapi_default = {
|
|
|
57422
57460
|
properties: {
|
|
57423
57461
|
customization_profiles: {
|
|
57424
57462
|
items: {
|
|
57463
|
+
description: "A customization profile.",
|
|
57425
57464
|
properties: {
|
|
57465
|
+
created_at: { format: "date-time", type: "string" },
|
|
57426
57466
|
customization_profile_id: {
|
|
57427
57467
|
format: "uuid",
|
|
57428
57468
|
type: "string"
|
|
57429
57469
|
},
|
|
57430
|
-
logo_url: { type: "string" },
|
|
57470
|
+
logo_url: { format: "uri", type: "string" },
|
|
57431
57471
|
primary_color: { type: "string" },
|
|
57432
57472
|
secondary_color: { type: "string" },
|
|
57433
57473
|
workspace_id: { format: "uuid", type: "string" }
|
|
57434
57474
|
},
|
|
57435
|
-
required: [
|
|
57436
|
-
|
|
57475
|
+
required: [
|
|
57476
|
+
"customization_profile_id",
|
|
57477
|
+
"workspace_id",
|
|
57478
|
+
"created_at"
|
|
57479
|
+
],
|
|
57480
|
+
type: "object",
|
|
57481
|
+
"x-route-path": "/workspaces/customization_profiles",
|
|
57482
|
+
"x-title": "Customization Profile",
|
|
57483
|
+
"x-undocumented": "Unreleased."
|
|
57437
57484
|
},
|
|
57438
57485
|
type: "array"
|
|
57439
57486
|
},
|
|
@@ -57456,7 +57503,8 @@ var openapi_default = {
|
|
|
57456
57503
|
"x-fern-sdk-method-name": "list",
|
|
57457
57504
|
"x-fern-sdk-return-value": "customization_profiles",
|
|
57458
57505
|
"x-response-key": "customization_profiles",
|
|
57459
|
-
"x-title": "Get Customization Profile"
|
|
57506
|
+
"x-title": "Get Customization Profile",
|
|
57507
|
+
"x-undocumented": "Unreleased."
|
|
57460
57508
|
},
|
|
57461
57509
|
post: {
|
|
57462
57510
|
description: "Retrieves the customization profile for the workspace.",
|
|
@@ -57469,18 +57517,27 @@ var openapi_default = {
|
|
|
57469
57517
|
properties: {
|
|
57470
57518
|
customization_profiles: {
|
|
57471
57519
|
items: {
|
|
57520
|
+
description: "A customization profile.",
|
|
57472
57521
|
properties: {
|
|
57522
|
+
created_at: { format: "date-time", type: "string" },
|
|
57473
57523
|
customization_profile_id: {
|
|
57474
57524
|
format: "uuid",
|
|
57475
57525
|
type: "string"
|
|
57476
57526
|
},
|
|
57477
|
-
logo_url: { type: "string" },
|
|
57527
|
+
logo_url: { format: "uri", type: "string" },
|
|
57478
57528
|
primary_color: { type: "string" },
|
|
57479
57529
|
secondary_color: { type: "string" },
|
|
57480
57530
|
workspace_id: { format: "uuid", type: "string" }
|
|
57481
57531
|
},
|
|
57482
|
-
required: [
|
|
57483
|
-
|
|
57532
|
+
required: [
|
|
57533
|
+
"customization_profile_id",
|
|
57534
|
+
"workspace_id",
|
|
57535
|
+
"created_at"
|
|
57536
|
+
],
|
|
57537
|
+
type: "object",
|
|
57538
|
+
"x-route-path": "/workspaces/customization_profiles",
|
|
57539
|
+
"x-title": "Customization Profile",
|
|
57540
|
+
"x-undocumented": "Unreleased."
|
|
57484
57541
|
},
|
|
57485
57542
|
type: "array"
|
|
57486
57543
|
},
|
|
@@ -57503,7 +57560,8 @@ var openapi_default = {
|
|
|
57503
57560
|
"x-fern-sdk-method-name": "list",
|
|
57504
57561
|
"x-fern-sdk-return-value": "customization_profiles",
|
|
57505
57562
|
"x-response-key": "customization_profiles",
|
|
57506
|
-
"x-title": "Get Customization Profile"
|
|
57563
|
+
"x-title": "Get Customization Profile",
|
|
57564
|
+
"x-undocumented": "Unreleased."
|
|
57507
57565
|
}
|
|
57508
57566
|
},
|
|
57509
57567
|
"/workspaces/customization_profiles/update": {
|
|
@@ -57547,7 +57605,8 @@ var openapi_default = {
|
|
|
57547
57605
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
57548
57606
|
"x-fern-sdk-method-name": "update",
|
|
57549
57607
|
"x-response-key": null,
|
|
57550
|
-
"x-title": "Update Customization Profile"
|
|
57608
|
+
"x-title": "Update Customization Profile",
|
|
57609
|
+
"x-undocumented": "Unreleased."
|
|
57551
57610
|
},
|
|
57552
57611
|
post: {
|
|
57553
57612
|
description: "Updates the customization profile for the workspace.",
|
|
@@ -57589,7 +57648,8 @@ var openapi_default = {
|
|
|
57589
57648
|
"x-fern-sdk-group-name": ["workspaces", "customization_profiles"],
|
|
57590
57649
|
"x-fern-sdk-method-name": "update",
|
|
57591
57650
|
"x-response-key": null,
|
|
57592
|
-
"x-title": "Update Customization Profile"
|
|
57651
|
+
"x-title": "Update Customization Profile",
|
|
57652
|
+
"x-undocumented": "Unreleased."
|
|
57593
57653
|
}
|
|
57594
57654
|
},
|
|
57595
57655
|
"/workspaces/customization_profiles/upload_images": {
|
|
@@ -57619,7 +57679,7 @@ var openapi_default = {
|
|
|
57619
57679
|
"x-fern-sdk-method-name": "upload_images",
|
|
57620
57680
|
"x-response-key": null,
|
|
57621
57681
|
"x-title": "Upload Customization Profile Logo",
|
|
57622
|
-
"x-undocumented": "Internal endpoint for
|
|
57682
|
+
"x-undocumented": "Internal form-data endpoint for Console and Customer Portal."
|
|
57623
57683
|
}
|
|
57624
57684
|
},
|
|
57625
57685
|
"/workspaces/find_resources": {
|