@seamapi/types 1.904.0 → 1.906.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 +25 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -0
- package/dist/index.cjs +25 -1
- 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/openapi.js +22 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +23 -0
- package/src/lib/seam/connect/route-types.ts +14 -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(),
|
|
@@ -19007,6 +19009,8 @@ var openapi = {
|
|
|
19007
19009
|
created_at: { format: "date-time", type: "string" },
|
|
19008
19010
|
customer_portal_theme: {
|
|
19009
19011
|
properties: {
|
|
19012
|
+
font_family: { type: "string" },
|
|
19013
|
+
mono_font_family: { type: "string" },
|
|
19010
19014
|
primary_color: { type: "string" },
|
|
19011
19015
|
primary_foreground_color: { type: "string" },
|
|
19012
19016
|
secondary_color: { type: "string" },
|
|
@@ -75787,6 +75791,15 @@ var openapi = {
|
|
|
75787
75791
|
type: "string"
|
|
75788
75792
|
}
|
|
75789
75793
|
},
|
|
75794
|
+
{
|
|
75795
|
+
in: "query",
|
|
75796
|
+
name: "user_identity_id",
|
|
75797
|
+
schema: {
|
|
75798
|
+
description: "Filter reservations by the guest user identity ID.",
|
|
75799
|
+
format: "uuid",
|
|
75800
|
+
type: "string"
|
|
75801
|
+
}
|
|
75802
|
+
},
|
|
75790
75803
|
{
|
|
75791
75804
|
in: "query",
|
|
75792
75805
|
name: "limit",
|
|
@@ -76146,6 +76159,11 @@ var openapi = {
|
|
|
76146
76159
|
space_key: {
|
|
76147
76160
|
description: "Filter reservations by space key.",
|
|
76148
76161
|
type: "string"
|
|
76162
|
+
},
|
|
76163
|
+
user_identity_id: {
|
|
76164
|
+
description: "Filter reservations by the guest user identity ID.",
|
|
76165
|
+
format: "uuid",
|
|
76166
|
+
type: "string"
|
|
76149
76167
|
}
|
|
76150
76168
|
},
|
|
76151
76169
|
type: "object"
|
|
@@ -87844,6 +87862,8 @@ var openapi = {
|
|
|
87844
87862
|
properties: {
|
|
87845
87863
|
customer_portal_theme: {
|
|
87846
87864
|
properties: {
|
|
87865
|
+
font_family: { type: "string" },
|
|
87866
|
+
mono_font_family: { type: "string" },
|
|
87847
87867
|
primary_color: { type: "string" },
|
|
87848
87868
|
primary_foreground_color: { type: "string" },
|
|
87849
87869
|
secondary_color: { type: "string" },
|
|
@@ -88121,6 +88141,8 @@ var openapi = {
|
|
|
88121
88141
|
customer_portal_theme: {
|
|
88122
88142
|
nullable: true,
|
|
88123
88143
|
properties: {
|
|
88144
|
+
font_family: { type: "string" },
|
|
88145
|
+
mono_font_family: { type: "string" },
|
|
88124
88146
|
primary_color: { type: "string" },
|
|
88125
88147
|
primary_foreground_color: { type: "string" },
|
|
88126
88148
|
secondary_color: { type: "string" },
|
|
@@ -88180,6 +88202,8 @@ var openapi = {
|
|
|
88180
88202
|
customer_portal_theme: {
|
|
88181
88203
|
nullable: true,
|
|
88182
88204
|
properties: {
|
|
88205
|
+
font_family: { type: "string" },
|
|
88206
|
+
mono_font_family: { type: "string" },
|
|
88183
88207
|
primary_color: { type: "string" },
|
|
88184
88208
|
primary_foreground_color: { type: "string" },
|
|
88185
88209
|
secondary_color: { type: "string" },
|