@seamapi/types 1.908.0 → 1.909.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 +36 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/dist/index.cjs +36 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +4 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +5 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/openapi.js +30 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +30 -0
- package/src/lib/seam/connect/route-types.ts +45 -0
package/dist/connect.d.cts
CHANGED
|
@@ -15339,6 +15339,7 @@ declare const customization_profile: z.ZodObject<{
|
|
|
15339
15339
|
font_family?: string | undefined;
|
|
15340
15340
|
mono_font_family?: string | undefined;
|
|
15341
15341
|
}>>;
|
|
15342
|
+
message_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
15342
15343
|
}, "strip", z.ZodTypeAny, {
|
|
15343
15344
|
name: string | null;
|
|
15344
15345
|
workspace_id: string;
|
|
@@ -15355,6 +15356,7 @@ declare const customization_profile: z.ZodObject<{
|
|
|
15355
15356
|
font_family?: string | undefined;
|
|
15356
15357
|
mono_font_family?: string | undefined;
|
|
15357
15358
|
} | undefined;
|
|
15359
|
+
message_overrides?: Record<string, Record<string, string>> | undefined;
|
|
15358
15360
|
}, {
|
|
15359
15361
|
name: string | null;
|
|
15360
15362
|
workspace_id: string;
|
|
@@ -15371,6 +15373,7 @@ declare const customization_profile: z.ZodObject<{
|
|
|
15371
15373
|
font_family?: string | undefined;
|
|
15372
15374
|
mono_font_family?: string | undefined;
|
|
15373
15375
|
} | undefined;
|
|
15376
|
+
message_overrides?: Record<string, Record<string, string>> | undefined;
|
|
15374
15377
|
}>;
|
|
15375
15378
|
type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
15376
15379
|
|
|
@@ -138961,6 +138964,11 @@ type Routes = {
|
|
|
138961
138964
|
font_family?: string | undefined;
|
|
138962
138965
|
mono_font_family?: string | undefined;
|
|
138963
138966
|
} | undefined;
|
|
138967
|
+
message_overrides?: {
|
|
138968
|
+
[x: string]: {
|
|
138969
|
+
[x: string]: string;
|
|
138970
|
+
};
|
|
138971
|
+
} | undefined;
|
|
138964
138972
|
};
|
|
138965
138973
|
commonParams: {};
|
|
138966
138974
|
formData: {};
|
|
@@ -138982,6 +138990,11 @@ type Routes = {
|
|
|
138982
138990
|
font_family?: string | undefined;
|
|
138983
138991
|
mono_font_family?: string | undefined;
|
|
138984
138992
|
} | undefined;
|
|
138993
|
+
message_overrides?: {
|
|
138994
|
+
[x: string]: {
|
|
138995
|
+
[x: string]: string;
|
|
138996
|
+
};
|
|
138997
|
+
} | undefined;
|
|
138985
138998
|
};
|
|
138986
138999
|
};
|
|
138987
139000
|
maxDuration: undefined;
|
|
@@ -139013,6 +139026,11 @@ type Routes = {
|
|
|
139013
139026
|
font_family?: string | undefined;
|
|
139014
139027
|
mono_font_family?: string | undefined;
|
|
139015
139028
|
} | undefined;
|
|
139029
|
+
message_overrides?: {
|
|
139030
|
+
[x: string]: {
|
|
139031
|
+
[x: string]: string;
|
|
139032
|
+
};
|
|
139033
|
+
} | undefined;
|
|
139016
139034
|
};
|
|
139017
139035
|
};
|
|
139018
139036
|
maxDuration: undefined;
|
|
@@ -139044,6 +139062,11 @@ type Routes = {
|
|
|
139044
139062
|
font_family?: string | undefined;
|
|
139045
139063
|
mono_font_family?: string | undefined;
|
|
139046
139064
|
} | undefined;
|
|
139065
|
+
message_overrides?: {
|
|
139066
|
+
[x: string]: {
|
|
139067
|
+
[x: string]: string;
|
|
139068
|
+
};
|
|
139069
|
+
} | undefined;
|
|
139047
139070
|
}[];
|
|
139048
139071
|
};
|
|
139049
139072
|
maxDuration: undefined;
|
|
@@ -139065,6 +139088,11 @@ type Routes = {
|
|
|
139065
139088
|
font_family?: string | undefined;
|
|
139066
139089
|
mono_font_family?: string | undefined;
|
|
139067
139090
|
} | undefined) | null;
|
|
139091
|
+
message_overrides?: ({
|
|
139092
|
+
[x: string]: {
|
|
139093
|
+
[x: string]: string;
|
|
139094
|
+
};
|
|
139095
|
+
} | undefined) | null;
|
|
139068
139096
|
};
|
|
139069
139097
|
commonParams: {};
|
|
139070
139098
|
formData: {};
|
|
@@ -148778,6 +148806,11 @@ type Routes = {
|
|
|
148778
148806
|
font_family?: string | undefined;
|
|
148779
148807
|
mono_font_family?: string | undefined;
|
|
148780
148808
|
} | undefined;
|
|
148809
|
+
message_overrides?: {
|
|
148810
|
+
[x: string]: {
|
|
148811
|
+
[x: string]: string;
|
|
148812
|
+
};
|
|
148813
|
+
} | undefined;
|
|
148781
148814
|
}[] | undefined;
|
|
148782
148815
|
};
|
|
148783
148816
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -5469,6 +5469,10 @@ var customer_portal_theme = zod.z.object({
|
|
|
5469
5469
|
font_family: zod.z.string().optional(),
|
|
5470
5470
|
mono_font_family: zod.z.string().optional()
|
|
5471
5471
|
});
|
|
5472
|
+
var message_overrides = zod.z.record(
|
|
5473
|
+
zod.z.string(),
|
|
5474
|
+
zod.z.record(zod.z.string(), zod.z.string())
|
|
5475
|
+
);
|
|
5472
5476
|
var customization_profile = zod.z.object({
|
|
5473
5477
|
workspace_id: zod.z.string().uuid(),
|
|
5474
5478
|
name: zod.z.string().nullable(),
|
|
@@ -5477,7 +5481,8 @@ var customization_profile = zod.z.object({
|
|
|
5477
5481
|
logo_url: zod.z.string().url().optional(),
|
|
5478
5482
|
primary_color: zod.z.string().optional(),
|
|
5479
5483
|
secondary_color: zod.z.string().optional(),
|
|
5480
|
-
customer_portal_theme: customer_portal_theme.optional()
|
|
5484
|
+
customer_portal_theme: customer_portal_theme.optional(),
|
|
5485
|
+
message_overrides: message_overrides.optional()
|
|
5481
5486
|
}).describe(`
|
|
5482
5487
|
---
|
|
5483
5488
|
title: Customization Profile
|
|
@@ -19023,6 +19028,13 @@ var openapi = {
|
|
|
19023
19028
|
},
|
|
19024
19029
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
19025
19030
|
logo_url: { format: "uri", type: "string" },
|
|
19031
|
+
message_overrides: {
|
|
19032
|
+
additionalProperties: {
|
|
19033
|
+
additionalProperties: { type: "string" },
|
|
19034
|
+
type: "object"
|
|
19035
|
+
},
|
|
19036
|
+
type: "object"
|
|
19037
|
+
},
|
|
19026
19038
|
name: { nullable: true, type: "string" },
|
|
19027
19039
|
primary_color: { type: "string" },
|
|
19028
19040
|
secondary_color: { type: "string" },
|
|
@@ -87995,6 +88007,13 @@ var openapi = {
|
|
|
87995
88007
|
},
|
|
87996
88008
|
type: "object"
|
|
87997
88009
|
},
|
|
88010
|
+
message_overrides: {
|
|
88011
|
+
additionalProperties: {
|
|
88012
|
+
additionalProperties: { type: "string" },
|
|
88013
|
+
type: "object"
|
|
88014
|
+
},
|
|
88015
|
+
type: "object"
|
|
88016
|
+
},
|
|
87998
88017
|
name: { default: null, nullable: true, type: "string" },
|
|
87999
88018
|
primary_color: { type: "string" },
|
|
88000
88019
|
secondary_color: { type: "string" }
|
|
@@ -88275,6 +88294,14 @@ var openapi = {
|
|
|
88275
88294
|
type: "object"
|
|
88276
88295
|
},
|
|
88277
88296
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88297
|
+
message_overrides: {
|
|
88298
|
+
additionalProperties: {
|
|
88299
|
+
additionalProperties: { type: "string" },
|
|
88300
|
+
type: "object"
|
|
88301
|
+
},
|
|
88302
|
+
nullable: true,
|
|
88303
|
+
type: "object"
|
|
88304
|
+
},
|
|
88278
88305
|
name: { nullable: true, type: "string" },
|
|
88279
88306
|
primary_color: { type: "string" },
|
|
88280
88307
|
secondary_color: { type: "string" }
|
|
@@ -88336,6 +88363,14 @@ var openapi = {
|
|
|
88336
88363
|
type: "object"
|
|
88337
88364
|
},
|
|
88338
88365
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88366
|
+
message_overrides: {
|
|
88367
|
+
additionalProperties: {
|
|
88368
|
+
additionalProperties: { type: "string" },
|
|
88369
|
+
type: "object"
|
|
88370
|
+
},
|
|
88371
|
+
nullable: true,
|
|
88372
|
+
type: "object"
|
|
88373
|
+
},
|
|
88339
88374
|
name: { nullable: true, type: "string" },
|
|
88340
88375
|
primary_color: { type: "string" },
|
|
88341
88376
|
secondary_color: { type: "string" }
|