@seamapi/types 1.907.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 +152 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -0
- package/dist/index.cjs +152 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +104 -0
- package/lib/seam/connect/models/customer/customer-portal.js +22 -0
- package/lib/seam/connect/models/customer/customer-portal.js.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 +146 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +70 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +24 -0
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +171 -0
- package/src/lib/seam/connect/route-types.ts +91 -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
|
|
|
@@ -71477,6 +71480,19 @@ type Routes = {
|
|
|
71477
71480
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
71478
71481
|
default_events?: string[] | undefined;
|
|
71479
71482
|
} | undefined;
|
|
71483
|
+
/**
|
|
71484
|
+
Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.
|
|
71485
|
+
*/
|
|
71486
|
+
device_management_confirmation?: {
|
|
71487
|
+
/** Custom title for the confirmation modal. */
|
|
71488
|
+
title?: string | undefined;
|
|
71489
|
+
/** Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed. */
|
|
71490
|
+
body?: string | undefined;
|
|
71491
|
+
/** Custom label for the confirm button. */
|
|
71492
|
+
confirm_button_label?: string | undefined;
|
|
71493
|
+
/** Custom label for the cancel button. */
|
|
71494
|
+
cancel_button_label?: string | undefined;
|
|
71495
|
+
} | undefined;
|
|
71480
71496
|
};
|
|
71481
71497
|
/** Configuration for the manage devices feature.
|
|
71482
71498
|
---
|
|
@@ -110540,6 +110556,19 @@ type Routes = {
|
|
|
110540
110556
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
110541
110557
|
default_events?: string[] | undefined;
|
|
110542
110558
|
} | undefined;
|
|
110559
|
+
/**
|
|
110560
|
+
Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.
|
|
110561
|
+
*/
|
|
110562
|
+
device_management_confirmation?: {
|
|
110563
|
+
/** Custom title for the confirmation modal. */
|
|
110564
|
+
title?: string | undefined;
|
|
110565
|
+
/** Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed. */
|
|
110566
|
+
body?: string | undefined;
|
|
110567
|
+
/** Custom label for the confirm button. */
|
|
110568
|
+
confirm_button_label?: string | undefined;
|
|
110569
|
+
/** Custom label for the cancel button. */
|
|
110570
|
+
cancel_button_label?: string | undefined;
|
|
110571
|
+
} | undefined;
|
|
110543
110572
|
};
|
|
110544
110573
|
/** Configuration for the manage devices feature.
|
|
110545
110574
|
---
|
|
@@ -110625,6 +110654,7 @@ type Routes = {
|
|
|
110625
110654
|
feature_flags?: {
|
|
110626
110655
|
RESERVATION_UI_V2?: boolean | undefined;
|
|
110627
110656
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined;
|
|
110657
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL?: boolean | undefined;
|
|
110628
110658
|
} | undefined;
|
|
110629
110659
|
};
|
|
110630
110660
|
};
|
|
@@ -110666,6 +110696,19 @@ type Routes = {
|
|
|
110666
110696
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
110667
110697
|
default_events?: string[] | undefined;
|
|
110668
110698
|
} | undefined;
|
|
110699
|
+
/**
|
|
110700
|
+
Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.
|
|
110701
|
+
*/
|
|
110702
|
+
device_management_confirmation?: {
|
|
110703
|
+
/** Custom title for the confirmation modal. */
|
|
110704
|
+
title?: string | undefined;
|
|
110705
|
+
/** Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed. */
|
|
110706
|
+
body?: string | undefined;
|
|
110707
|
+
/** Custom label for the confirm button. */
|
|
110708
|
+
confirm_button_label?: string | undefined;
|
|
110709
|
+
/** Custom label for the cancel button. */
|
|
110710
|
+
cancel_button_label?: string | undefined;
|
|
110711
|
+
} | undefined;
|
|
110669
110712
|
};
|
|
110670
110713
|
/** Configuration for the manage devices feature.
|
|
110671
110714
|
---
|
|
@@ -138921,6 +138964,11 @@ type Routes = {
|
|
|
138921
138964
|
font_family?: string | undefined;
|
|
138922
138965
|
mono_font_family?: string | undefined;
|
|
138923
138966
|
} | undefined;
|
|
138967
|
+
message_overrides?: {
|
|
138968
|
+
[x: string]: {
|
|
138969
|
+
[x: string]: string;
|
|
138970
|
+
};
|
|
138971
|
+
} | undefined;
|
|
138924
138972
|
};
|
|
138925
138973
|
commonParams: {};
|
|
138926
138974
|
formData: {};
|
|
@@ -138942,6 +138990,11 @@ type Routes = {
|
|
|
138942
138990
|
font_family?: string | undefined;
|
|
138943
138991
|
mono_font_family?: string | undefined;
|
|
138944
138992
|
} | undefined;
|
|
138993
|
+
message_overrides?: {
|
|
138994
|
+
[x: string]: {
|
|
138995
|
+
[x: string]: string;
|
|
138996
|
+
};
|
|
138997
|
+
} | undefined;
|
|
138945
138998
|
};
|
|
138946
138999
|
};
|
|
138947
139000
|
maxDuration: undefined;
|
|
@@ -138973,6 +139026,11 @@ type Routes = {
|
|
|
138973
139026
|
font_family?: string | undefined;
|
|
138974
139027
|
mono_font_family?: string | undefined;
|
|
138975
139028
|
} | undefined;
|
|
139029
|
+
message_overrides?: {
|
|
139030
|
+
[x: string]: {
|
|
139031
|
+
[x: string]: string;
|
|
139032
|
+
};
|
|
139033
|
+
} | undefined;
|
|
138976
139034
|
};
|
|
138977
139035
|
};
|
|
138978
139036
|
maxDuration: undefined;
|
|
@@ -139004,6 +139062,11 @@ type Routes = {
|
|
|
139004
139062
|
font_family?: string | undefined;
|
|
139005
139063
|
mono_font_family?: string | undefined;
|
|
139006
139064
|
} | undefined;
|
|
139065
|
+
message_overrides?: {
|
|
139066
|
+
[x: string]: {
|
|
139067
|
+
[x: string]: string;
|
|
139068
|
+
};
|
|
139069
|
+
} | undefined;
|
|
139007
139070
|
}[];
|
|
139008
139071
|
};
|
|
139009
139072
|
maxDuration: undefined;
|
|
@@ -139025,6 +139088,11 @@ type Routes = {
|
|
|
139025
139088
|
font_family?: string | undefined;
|
|
139026
139089
|
mono_font_family?: string | undefined;
|
|
139027
139090
|
} | undefined) | null;
|
|
139091
|
+
message_overrides?: ({
|
|
139092
|
+
[x: string]: {
|
|
139093
|
+
[x: string]: string;
|
|
139094
|
+
};
|
|
139095
|
+
} | undefined) | null;
|
|
139028
139096
|
};
|
|
139029
139097
|
commonParams: {};
|
|
139030
139098
|
formData: {};
|
|
@@ -148738,6 +148806,11 @@ type Routes = {
|
|
|
148738
148806
|
font_family?: string | undefined;
|
|
148739
148807
|
mono_font_family?: string | undefined;
|
|
148740
148808
|
} | undefined;
|
|
148809
|
+
message_overrides?: {
|
|
148810
|
+
[x: string]: {
|
|
148811
|
+
[x: string]: string;
|
|
148812
|
+
};
|
|
148813
|
+
} | undefined;
|
|
148741
148814
|
}[] | undefined;
|
|
148742
148815
|
};
|
|
148743
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" },
|
|
@@ -56073,6 +56085,28 @@ var openapi = {
|
|
|
56073
56085
|
default: {},
|
|
56074
56086
|
description: "Configuration for the manage feature.",
|
|
56075
56087
|
properties: {
|
|
56088
|
+
device_management_confirmation: {
|
|
56089
|
+
description: "\n Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.\n ",
|
|
56090
|
+
properties: {
|
|
56091
|
+
body: {
|
|
56092
|
+
description: "Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed.",
|
|
56093
|
+
type: "string"
|
|
56094
|
+
},
|
|
56095
|
+
cancel_button_label: {
|
|
56096
|
+
description: "Custom label for the cancel button.",
|
|
56097
|
+
type: "string"
|
|
56098
|
+
},
|
|
56099
|
+
confirm_button_label: {
|
|
56100
|
+
description: "Custom label for the confirm button.",
|
|
56101
|
+
type: "string"
|
|
56102
|
+
},
|
|
56103
|
+
title: {
|
|
56104
|
+
description: "Custom title for the confirmation modal.",
|
|
56105
|
+
type: "string"
|
|
56106
|
+
}
|
|
56107
|
+
},
|
|
56108
|
+
type: "object"
|
|
56109
|
+
},
|
|
56076
56110
|
events: {
|
|
56077
56111
|
description: "Configuration for event type filtering in the manage feature.",
|
|
56078
56112
|
properties: {
|
|
@@ -73910,6 +73944,9 @@ var openapi = {
|
|
|
73910
73944
|
},
|
|
73911
73945
|
feature_flags: {
|
|
73912
73946
|
properties: {
|
|
73947
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
73948
|
+
type: "boolean"
|
|
73949
|
+
},
|
|
73913
73950
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
73914
73951
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
73915
73952
|
type: "boolean"
|
|
@@ -73979,6 +74016,28 @@ var openapi = {
|
|
|
73979
74016
|
},
|
|
73980
74017
|
description: "Configuration for the manage feature.",
|
|
73981
74018
|
properties: {
|
|
74019
|
+
device_management_confirmation: {
|
|
74020
|
+
description: "\n Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.\n ",
|
|
74021
|
+
properties: {
|
|
74022
|
+
body: {
|
|
74023
|
+
description: "Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed.",
|
|
74024
|
+
type: "string"
|
|
74025
|
+
},
|
|
74026
|
+
cancel_button_label: {
|
|
74027
|
+
description: "Custom label for the cancel button.",
|
|
74028
|
+
type: "string"
|
|
74029
|
+
},
|
|
74030
|
+
confirm_button_label: {
|
|
74031
|
+
description: "Custom label for the confirm button.",
|
|
74032
|
+
type: "string"
|
|
74033
|
+
},
|
|
74034
|
+
title: {
|
|
74035
|
+
description: "Custom title for the confirmation modal.",
|
|
74036
|
+
type: "string"
|
|
74037
|
+
}
|
|
74038
|
+
},
|
|
74039
|
+
type: "object"
|
|
74040
|
+
},
|
|
73982
74041
|
events: {
|
|
73983
74042
|
description: "Configuration for event type filtering in the manage feature.",
|
|
73984
74043
|
properties: {
|
|
@@ -74304,6 +74363,9 @@ var openapi = {
|
|
|
74304
74363
|
},
|
|
74305
74364
|
feature_flags: {
|
|
74306
74365
|
properties: {
|
|
74366
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
74367
|
+
type: "boolean"
|
|
74368
|
+
},
|
|
74307
74369
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
74308
74370
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
74309
74371
|
type: "boolean"
|
|
@@ -74373,6 +74435,28 @@ var openapi = {
|
|
|
74373
74435
|
},
|
|
74374
74436
|
description: "Configuration for the manage feature.",
|
|
74375
74437
|
properties: {
|
|
74438
|
+
device_management_confirmation: {
|
|
74439
|
+
description: "\n Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.\n ",
|
|
74440
|
+
properties: {
|
|
74441
|
+
body: {
|
|
74442
|
+
description: "Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed.",
|
|
74443
|
+
type: "string"
|
|
74444
|
+
},
|
|
74445
|
+
cancel_button_label: {
|
|
74446
|
+
description: "Custom label for the cancel button.",
|
|
74447
|
+
type: "string"
|
|
74448
|
+
},
|
|
74449
|
+
confirm_button_label: {
|
|
74450
|
+
description: "Custom label for the confirm button.",
|
|
74451
|
+
type: "string"
|
|
74452
|
+
},
|
|
74453
|
+
title: {
|
|
74454
|
+
description: "Custom title for the confirmation modal.",
|
|
74455
|
+
type: "string"
|
|
74456
|
+
}
|
|
74457
|
+
},
|
|
74458
|
+
type: "object"
|
|
74459
|
+
},
|
|
74376
74460
|
events: {
|
|
74377
74461
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74378
74462
|
properties: {
|
|
@@ -74727,6 +74811,28 @@ var openapi = {
|
|
|
74727
74811
|
default: {},
|
|
74728
74812
|
description: "Configuration for the manage feature.",
|
|
74729
74813
|
properties: {
|
|
74814
|
+
device_management_confirmation: {
|
|
74815
|
+
description: "\n Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.\n ",
|
|
74816
|
+
properties: {
|
|
74817
|
+
body: {
|
|
74818
|
+
description: "Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed.",
|
|
74819
|
+
type: "string"
|
|
74820
|
+
},
|
|
74821
|
+
cancel_button_label: {
|
|
74822
|
+
description: "Custom label for the cancel button.",
|
|
74823
|
+
type: "string"
|
|
74824
|
+
},
|
|
74825
|
+
confirm_button_label: {
|
|
74826
|
+
description: "Custom label for the confirm button.",
|
|
74827
|
+
type: "string"
|
|
74828
|
+
},
|
|
74829
|
+
title: {
|
|
74830
|
+
description: "Custom title for the confirmation modal.",
|
|
74831
|
+
type: "string"
|
|
74832
|
+
}
|
|
74833
|
+
},
|
|
74834
|
+
type: "object"
|
|
74835
|
+
},
|
|
74730
74836
|
events: {
|
|
74731
74837
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74732
74838
|
properties: {
|
|
@@ -75083,6 +75189,28 @@ var openapi = {
|
|
|
75083
75189
|
default: {},
|
|
75084
75190
|
description: "Configuration for the manage feature.",
|
|
75085
75191
|
properties: {
|
|
75192
|
+
device_management_confirmation: {
|
|
75193
|
+
description: "\n Custom copy for the confirmation modal shown before unmanaged devices are added to a space and begin being managed (and billed). Only takes effect when the MANAGE_DEVICES_CONFIRMATION_MODAL feature flag is enabled for the workspace. Any omitted string falls back to a localized default.\n ",
|
|
75194
|
+
properties: {
|
|
75195
|
+
body: {
|
|
75196
|
+
description: "Custom body text for the confirmation modal. May include the {count} token, which is replaced with the number of devices that will begin being managed.",
|
|
75197
|
+
type: "string"
|
|
75198
|
+
},
|
|
75199
|
+
cancel_button_label: {
|
|
75200
|
+
description: "Custom label for the cancel button.",
|
|
75201
|
+
type: "string"
|
|
75202
|
+
},
|
|
75203
|
+
confirm_button_label: {
|
|
75204
|
+
description: "Custom label for the confirm button.",
|
|
75205
|
+
type: "string"
|
|
75206
|
+
},
|
|
75207
|
+
title: {
|
|
75208
|
+
description: "Custom title for the confirmation modal.",
|
|
75209
|
+
type: "string"
|
|
75210
|
+
}
|
|
75211
|
+
},
|
|
75212
|
+
type: "object"
|
|
75213
|
+
},
|
|
75086
75214
|
events: {
|
|
75087
75215
|
description: "Configuration for event type filtering in the manage feature.",
|
|
75088
75216
|
properties: {
|
|
@@ -87879,6 +88007,13 @@ var openapi = {
|
|
|
87879
88007
|
},
|
|
87880
88008
|
type: "object"
|
|
87881
88009
|
},
|
|
88010
|
+
message_overrides: {
|
|
88011
|
+
additionalProperties: {
|
|
88012
|
+
additionalProperties: { type: "string" },
|
|
88013
|
+
type: "object"
|
|
88014
|
+
},
|
|
88015
|
+
type: "object"
|
|
88016
|
+
},
|
|
87882
88017
|
name: { default: null, nullable: true, type: "string" },
|
|
87883
88018
|
primary_color: { type: "string" },
|
|
87884
88019
|
secondary_color: { type: "string" }
|
|
@@ -88159,6 +88294,14 @@ var openapi = {
|
|
|
88159
88294
|
type: "object"
|
|
88160
88295
|
},
|
|
88161
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
|
+
},
|
|
88162
88305
|
name: { nullable: true, type: "string" },
|
|
88163
88306
|
primary_color: { type: "string" },
|
|
88164
88307
|
secondary_color: { type: "string" }
|
|
@@ -88220,6 +88363,14 @@ var openapi = {
|
|
|
88220
88363
|
type: "object"
|
|
88221
88364
|
},
|
|
88222
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
|
+
},
|
|
88223
88374
|
name: { nullable: true, type: "string" },
|
|
88224
88375
|
primary_color: { type: "string" },
|
|
88225
88376
|
secondary_color: { type: "string" }
|