@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
|
@@ -4,16 +4,22 @@ export declare const customer_portal_theme: z.ZodObject<{
|
|
|
4
4
|
primary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5
5
|
secondary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6
6
|
secondary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7
|
+
font_family: z.ZodOptional<z.ZodString>;
|
|
8
|
+
mono_font_family: z.ZodOptional<z.ZodString>;
|
|
7
9
|
}, "strip", z.ZodTypeAny, {
|
|
8
10
|
primary_color?: string | undefined;
|
|
9
11
|
primary_foreground_color?: string | undefined;
|
|
10
12
|
secondary_color?: string | undefined;
|
|
11
13
|
secondary_foreground_color?: string | undefined;
|
|
14
|
+
font_family?: string | undefined;
|
|
15
|
+
mono_font_family?: string | undefined;
|
|
12
16
|
}, {
|
|
13
17
|
primary_color?: string | undefined;
|
|
14
18
|
primary_foreground_color?: string | undefined;
|
|
15
19
|
secondary_color?: string | undefined;
|
|
16
20
|
secondary_foreground_color?: string | undefined;
|
|
21
|
+
font_family?: string | undefined;
|
|
22
|
+
mono_font_family?: string | undefined;
|
|
17
23
|
}>;
|
|
18
24
|
export declare const customization_profile: z.ZodObject<{
|
|
19
25
|
workspace_id: z.ZodString;
|
|
@@ -28,16 +34,22 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
28
34
|
primary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
29
35
|
secondary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
30
36
|
secondary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
37
|
+
font_family: z.ZodOptional<z.ZodString>;
|
|
38
|
+
mono_font_family: z.ZodOptional<z.ZodString>;
|
|
31
39
|
}, "strip", z.ZodTypeAny, {
|
|
32
40
|
primary_color?: string | undefined;
|
|
33
41
|
primary_foreground_color?: string | undefined;
|
|
34
42
|
secondary_color?: string | undefined;
|
|
35
43
|
secondary_foreground_color?: string | undefined;
|
|
44
|
+
font_family?: string | undefined;
|
|
45
|
+
mono_font_family?: string | undefined;
|
|
36
46
|
}, {
|
|
37
47
|
primary_color?: string | undefined;
|
|
38
48
|
primary_foreground_color?: string | undefined;
|
|
39
49
|
secondary_color?: string | undefined;
|
|
40
50
|
secondary_foreground_color?: string | undefined;
|
|
51
|
+
font_family?: string | undefined;
|
|
52
|
+
mono_font_family?: string | undefined;
|
|
41
53
|
}>>;
|
|
42
54
|
}, "strip", z.ZodTypeAny, {
|
|
43
55
|
name: string | null;
|
|
@@ -52,6 +64,8 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
52
64
|
primary_foreground_color?: string | undefined;
|
|
53
65
|
secondary_color?: string | undefined;
|
|
54
66
|
secondary_foreground_color?: string | undefined;
|
|
67
|
+
font_family?: string | undefined;
|
|
68
|
+
mono_font_family?: string | undefined;
|
|
55
69
|
} | undefined;
|
|
56
70
|
}, {
|
|
57
71
|
name: string | null;
|
|
@@ -66,6 +80,8 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
66
80
|
primary_foreground_color?: string | undefined;
|
|
67
81
|
secondary_color?: string | undefined;
|
|
68
82
|
secondary_foreground_color?: string | undefined;
|
|
83
|
+
font_family?: string | undefined;
|
|
84
|
+
mono_font_family?: string | undefined;
|
|
69
85
|
} | undefined;
|
|
70
86
|
}>;
|
|
71
87
|
export type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
@@ -5,6 +5,8 @@ export const customer_portal_theme = z.object({
|
|
|
5
5
|
primary_foreground_color: hex_color_code.optional(),
|
|
6
6
|
secondary_color: hex_color_code.optional(),
|
|
7
7
|
secondary_foreground_color: hex_color_code.optional(),
|
|
8
|
+
font_family: z.string().optional(),
|
|
9
|
+
mono_font_family: z.string().optional(),
|
|
8
10
|
});
|
|
9
11
|
export const customization_profile = z.object({
|
|
10
12
|
workspace_id: z.string().uuid(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customization-profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization-profiles/customization-profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAE7C,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,cAAc,CAAC,QAAQ,EAAE;IACxC,wBAAwB,EAAE,cAAc,CAAC,QAAQ,EAAE;IACnD,eAAe,EAAE,cAAc,CAAC,QAAQ,EAAE;IAC1C,0BAA0B,EAAE,cAAc,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"customization-profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization-profiles/customization-profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAE7C,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,cAAc,CAAC,QAAQ,EAAE;IACxC,wBAAwB,EAAE,cAAc,CAAC,QAAQ,EAAE;IACnD,eAAe,EAAE,cAAc,CAAC,QAAQ,EAAE;IAC1C,0BAA0B,EAAE,cAAc,CAAC,QAAQ,EAAE;IACrD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACxC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,qBAAqB,EAAE,qBAAqB,CAAC,QAAQ,EAAE;CACxD,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -11646,6 +11646,8 @@ const openapi = {
|
|
|
11646
11646
|
created_at: { format: 'date-time', type: 'string' },
|
|
11647
11647
|
customer_portal_theme: {
|
|
11648
11648
|
properties: {
|
|
11649
|
+
font_family: { type: 'string' },
|
|
11650
|
+
mono_font_family: { type: 'string' },
|
|
11649
11651
|
primary_color: { type: 'string' },
|
|
11650
11652
|
primary_foreground_color: { type: 'string' },
|
|
11651
11653
|
secondary_color: { type: 'string' },
|
|
@@ -68426,6 +68428,15 @@ const openapi = {
|
|
|
68426
68428
|
type: 'string',
|
|
68427
68429
|
},
|
|
68428
68430
|
},
|
|
68431
|
+
{
|
|
68432
|
+
in: 'query',
|
|
68433
|
+
name: 'user_identity_id',
|
|
68434
|
+
schema: {
|
|
68435
|
+
description: 'Filter reservations by the guest user identity ID.',
|
|
68436
|
+
format: 'uuid',
|
|
68437
|
+
type: 'string',
|
|
68438
|
+
},
|
|
68439
|
+
},
|
|
68429
68440
|
{
|
|
68430
68441
|
in: 'query',
|
|
68431
68442
|
name: 'limit',
|
|
@@ -68786,6 +68797,11 @@ const openapi = {
|
|
|
68786
68797
|
description: 'Filter reservations by space key.',
|
|
68787
68798
|
type: 'string',
|
|
68788
68799
|
},
|
|
68800
|
+
user_identity_id: {
|
|
68801
|
+
description: 'Filter reservations by the guest user identity ID.',
|
|
68802
|
+
format: 'uuid',
|
|
68803
|
+
type: 'string',
|
|
68804
|
+
},
|
|
68789
68805
|
},
|
|
68790
68806
|
type: 'object',
|
|
68791
68807
|
},
|
|
@@ -80483,6 +80499,8 @@ const openapi = {
|
|
|
80483
80499
|
properties: {
|
|
80484
80500
|
customer_portal_theme: {
|
|
80485
80501
|
properties: {
|
|
80502
|
+
font_family: { type: 'string' },
|
|
80503
|
+
mono_font_family: { type: 'string' },
|
|
80486
80504
|
primary_color: { type: 'string' },
|
|
80487
80505
|
primary_foreground_color: { type: 'string' },
|
|
80488
80506
|
secondary_color: { type: 'string' },
|
|
@@ -80760,6 +80778,8 @@ const openapi = {
|
|
|
80760
80778
|
customer_portal_theme: {
|
|
80761
80779
|
nullable: true,
|
|
80762
80780
|
properties: {
|
|
80781
|
+
font_family: { type: 'string' },
|
|
80782
|
+
mono_font_family: { type: 'string' },
|
|
80763
80783
|
primary_color: { type: 'string' },
|
|
80764
80784
|
primary_foreground_color: { type: 'string' },
|
|
80765
80785
|
secondary_color: { type: 'string' },
|
|
@@ -80819,6 +80839,8 @@ const openapi = {
|
|
|
80819
80839
|
customer_portal_theme: {
|
|
80820
80840
|
nullable: true,
|
|
80821
80841
|
properties: {
|
|
80842
|
+
font_family: { type: 'string' },
|
|
80843
|
+
mono_font_family: { type: 'string' },
|
|
80822
80844
|
primary_color: { type: 'string' },
|
|
80823
80845
|
primary_foreground_color: { type: 'string' },
|
|
80824
80846
|
secondary_color: { type: 'string' },
|