@seamapi/types 1.905.0 → 1.907.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 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/dist/index.cjs +20 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +16 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +2 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +6 -0
- package/lib/seam/connect/models/events/devices.js +5 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -0
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +2 -0
- package/src/lib/seam/connect/models/events/devices.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.cjs
CHANGED
|
@@ -5465,7 +5465,9 @@ var customer_portal_theme = zod.z.object({
|
|
|
5465
5465
|
primary_color: hex_color_code.optional(),
|
|
5466
5466
|
primary_foreground_color: hex_color_code.optional(),
|
|
5467
5467
|
secondary_color: hex_color_code.optional(),
|
|
5468
|
-
secondary_foreground_color: hex_color_code.optional()
|
|
5468
|
+
secondary_foreground_color: hex_color_code.optional(),
|
|
5469
|
+
font_family: zod.z.string().optional(),
|
|
5470
|
+
mono_font_family: zod.z.string().optional()
|
|
5469
5471
|
});
|
|
5470
5472
|
var customization_profile = zod.z.object({
|
|
5471
5473
|
workspace_id: zod.z.string().uuid(),
|
|
@@ -6397,7 +6399,10 @@ var device_removed_event = device_event.extend({
|
|
|
6397
6399
|
A [device](https://docs.seam.co/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/core-concepts/connected-accounts).
|
|
6398
6400
|
`);
|
|
6399
6401
|
var device_deleted_event = device_event.extend({
|
|
6400
|
-
event_type: zod.z.literal("device.deleted")
|
|
6402
|
+
event_type: zod.z.literal("device.deleted"),
|
|
6403
|
+
device_name: zod.z.string().nullable().optional().describe(
|
|
6404
|
+
"Name of the deleted device, captured at deletion time. The device record no longer exists when this event fires, so the name is preserved here. Null when the device had no resolvable name."
|
|
6405
|
+
)
|
|
6401
6406
|
}).describe(`
|
|
6402
6407
|
---
|
|
6403
6408
|
route_path: /devices
|
|
@@ -19007,6 +19012,8 @@ var openapi = {
|
|
|
19007
19012
|
created_at: { format: "date-time", type: "string" },
|
|
19008
19013
|
customer_portal_theme: {
|
|
19009
19014
|
properties: {
|
|
19015
|
+
font_family: { type: "string" },
|
|
19016
|
+
mono_font_family: { type: "string" },
|
|
19010
19017
|
primary_color: { type: "string" },
|
|
19011
19018
|
primary_foreground_color: { type: "string" },
|
|
19012
19019
|
secondary_color: { type: "string" },
|
|
@@ -28582,6 +28589,11 @@ var openapi = {
|
|
|
28582
28589
|
format: "uuid",
|
|
28583
28590
|
type: "string"
|
|
28584
28591
|
},
|
|
28592
|
+
device_name: {
|
|
28593
|
+
description: "Name of the deleted device, captured at deletion time. The device record no longer exists when this event fires, so the name is preserved here. Null when the device had no resolvable name.",
|
|
28594
|
+
nullable: true,
|
|
28595
|
+
type: "string"
|
|
28596
|
+
},
|
|
28585
28597
|
event_id: {
|
|
28586
28598
|
description: "ID of the event.",
|
|
28587
28599
|
format: "uuid",
|
|
@@ -87858,6 +87870,8 @@ var openapi = {
|
|
|
87858
87870
|
properties: {
|
|
87859
87871
|
customer_portal_theme: {
|
|
87860
87872
|
properties: {
|
|
87873
|
+
font_family: { type: "string" },
|
|
87874
|
+
mono_font_family: { type: "string" },
|
|
87861
87875
|
primary_color: { type: "string" },
|
|
87862
87876
|
primary_foreground_color: { type: "string" },
|
|
87863
87877
|
secondary_color: { type: "string" },
|
|
@@ -88135,6 +88149,8 @@ var openapi = {
|
|
|
88135
88149
|
customer_portal_theme: {
|
|
88136
88150
|
nullable: true,
|
|
88137
88151
|
properties: {
|
|
88152
|
+
font_family: { type: "string" },
|
|
88153
|
+
mono_font_family: { type: "string" },
|
|
88138
88154
|
primary_color: { type: "string" },
|
|
88139
88155
|
primary_foreground_color: { type: "string" },
|
|
88140
88156
|
secondary_color: { type: "string" },
|
|
@@ -88194,6 +88210,8 @@ var openapi = {
|
|
|
88194
88210
|
customer_portal_theme: {
|
|
88195
88211
|
nullable: true,
|
|
88196
88212
|
properties: {
|
|
88213
|
+
font_family: { type: "string" },
|
|
88214
|
+
mono_font_family: { type: "string" },
|
|
88197
88215
|
primary_color: { type: "string" },
|
|
88198
88216
|
primary_foreground_color: { type: "string" },
|
|
88199
88217
|
secondary_color: { type: "string" },
|