@seamapi/types 1.905.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 +11 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +11 -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 +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -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 +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -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' },
|
|
@@ -80497,6 +80499,8 @@ const openapi = {
|
|
|
80497
80499
|
properties: {
|
|
80498
80500
|
customer_portal_theme: {
|
|
80499
80501
|
properties: {
|
|
80502
|
+
font_family: { type: 'string' },
|
|
80503
|
+
mono_font_family: { type: 'string' },
|
|
80500
80504
|
primary_color: { type: 'string' },
|
|
80501
80505
|
primary_foreground_color: { type: 'string' },
|
|
80502
80506
|
secondary_color: { type: 'string' },
|
|
@@ -80774,6 +80778,8 @@ const openapi = {
|
|
|
80774
80778
|
customer_portal_theme: {
|
|
80775
80779
|
nullable: true,
|
|
80776
80780
|
properties: {
|
|
80781
|
+
font_family: { type: 'string' },
|
|
80782
|
+
mono_font_family: { type: 'string' },
|
|
80777
80783
|
primary_color: { type: 'string' },
|
|
80778
80784
|
primary_foreground_color: { type: 'string' },
|
|
80779
80785
|
secondary_color: { type: 'string' },
|
|
@@ -80833,6 +80839,8 @@ const openapi = {
|
|
|
80833
80839
|
customer_portal_theme: {
|
|
80834
80840
|
nullable: true,
|
|
80835
80841
|
properties: {
|
|
80842
|
+
font_family: { type: 'string' },
|
|
80843
|
+
mono_font_family: { type: 'string' },
|
|
80836
80844
|
primary_color: { type: 'string' },
|
|
80837
80845
|
primary_foreground_color: { type: 'string' },
|
|
80838
80846
|
secondary_color: { type: 'string' },
|