@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
|
@@ -41253,6 +41253,19 @@ export type Routes = {
|
|
|
41253
41253
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
41254
41254
|
default_events?: string[] | undefined;
|
|
41255
41255
|
} | undefined;
|
|
41256
|
+
/**
|
|
41257
|
+
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.
|
|
41258
|
+
*/
|
|
41259
|
+
device_management_confirmation?: {
|
|
41260
|
+
/** Custom title for the confirmation modal. */
|
|
41261
|
+
title?: string | undefined;
|
|
41262
|
+
/** 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. */
|
|
41263
|
+
body?: string | undefined;
|
|
41264
|
+
/** Custom label for the confirm button. */
|
|
41265
|
+
confirm_button_label?: string | undefined;
|
|
41266
|
+
/** Custom label for the cancel button. */
|
|
41267
|
+
cancel_button_label?: string | undefined;
|
|
41268
|
+
} | undefined;
|
|
41256
41269
|
};
|
|
41257
41270
|
/** Configuration for the manage devices feature.
|
|
41258
41271
|
---
|
|
@@ -80316,6 +80329,19 @@ export type Routes = {
|
|
|
80316
80329
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
80317
80330
|
default_events?: string[] | undefined;
|
|
80318
80331
|
} | undefined;
|
|
80332
|
+
/**
|
|
80333
|
+
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.
|
|
80334
|
+
*/
|
|
80335
|
+
device_management_confirmation?: {
|
|
80336
|
+
/** Custom title for the confirmation modal. */
|
|
80337
|
+
title?: string | undefined;
|
|
80338
|
+
/** 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. */
|
|
80339
|
+
body?: string | undefined;
|
|
80340
|
+
/** Custom label for the confirm button. */
|
|
80341
|
+
confirm_button_label?: string | undefined;
|
|
80342
|
+
/** Custom label for the cancel button. */
|
|
80343
|
+
cancel_button_label?: string | undefined;
|
|
80344
|
+
} | undefined;
|
|
80319
80345
|
};
|
|
80320
80346
|
/** Configuration for the manage devices feature.
|
|
80321
80347
|
---
|
|
@@ -80401,6 +80427,7 @@ export type Routes = {
|
|
|
80401
80427
|
feature_flags?: {
|
|
80402
80428
|
RESERVATION_UI_V2?: boolean | undefined;
|
|
80403
80429
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined;
|
|
80430
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL?: boolean | undefined;
|
|
80404
80431
|
} | undefined;
|
|
80405
80432
|
};
|
|
80406
80433
|
};
|
|
@@ -80442,6 +80469,19 @@ export type Routes = {
|
|
|
80442
80469
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
80443
80470
|
default_events?: string[] | undefined;
|
|
80444
80471
|
} | undefined;
|
|
80472
|
+
/**
|
|
80473
|
+
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.
|
|
80474
|
+
*/
|
|
80475
|
+
device_management_confirmation?: {
|
|
80476
|
+
/** Custom title for the confirmation modal. */
|
|
80477
|
+
title?: string | undefined;
|
|
80478
|
+
/** 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. */
|
|
80479
|
+
body?: string | undefined;
|
|
80480
|
+
/** Custom label for the confirm button. */
|
|
80481
|
+
confirm_button_label?: string | undefined;
|
|
80482
|
+
/** Custom label for the cancel button. */
|
|
80483
|
+
cancel_button_label?: string | undefined;
|
|
80484
|
+
} | undefined;
|
|
80445
80485
|
};
|
|
80446
80486
|
/** Configuration for the manage devices feature.
|
|
80447
80487
|
---
|
|
@@ -108697,6 +108737,11 @@ export type Routes = {
|
|
|
108697
108737
|
font_family?: string | undefined;
|
|
108698
108738
|
mono_font_family?: string | undefined;
|
|
108699
108739
|
} | undefined;
|
|
108740
|
+
message_overrides?: {
|
|
108741
|
+
[x: string]: {
|
|
108742
|
+
[x: string]: string;
|
|
108743
|
+
};
|
|
108744
|
+
} | undefined;
|
|
108700
108745
|
};
|
|
108701
108746
|
commonParams: {};
|
|
108702
108747
|
formData: {};
|
|
@@ -108718,6 +108763,11 @@ export type Routes = {
|
|
|
108718
108763
|
font_family?: string | undefined;
|
|
108719
108764
|
mono_font_family?: string | undefined;
|
|
108720
108765
|
} | undefined;
|
|
108766
|
+
message_overrides?: {
|
|
108767
|
+
[x: string]: {
|
|
108768
|
+
[x: string]: string;
|
|
108769
|
+
};
|
|
108770
|
+
} | undefined;
|
|
108721
108771
|
};
|
|
108722
108772
|
};
|
|
108723
108773
|
maxDuration: undefined;
|
|
@@ -108749,6 +108799,11 @@ export type Routes = {
|
|
|
108749
108799
|
font_family?: string | undefined;
|
|
108750
108800
|
mono_font_family?: string | undefined;
|
|
108751
108801
|
} | undefined;
|
|
108802
|
+
message_overrides?: {
|
|
108803
|
+
[x: string]: {
|
|
108804
|
+
[x: string]: string;
|
|
108805
|
+
};
|
|
108806
|
+
} | undefined;
|
|
108752
108807
|
};
|
|
108753
108808
|
};
|
|
108754
108809
|
maxDuration: undefined;
|
|
@@ -108780,6 +108835,11 @@ export type Routes = {
|
|
|
108780
108835
|
font_family?: string | undefined;
|
|
108781
108836
|
mono_font_family?: string | undefined;
|
|
108782
108837
|
} | undefined;
|
|
108838
|
+
message_overrides?: {
|
|
108839
|
+
[x: string]: {
|
|
108840
|
+
[x: string]: string;
|
|
108841
|
+
};
|
|
108842
|
+
} | undefined;
|
|
108783
108843
|
}[];
|
|
108784
108844
|
};
|
|
108785
108845
|
maxDuration: undefined;
|
|
@@ -108801,6 +108861,11 @@ export type Routes = {
|
|
|
108801
108861
|
font_family?: string | undefined;
|
|
108802
108862
|
mono_font_family?: string | undefined;
|
|
108803
108863
|
} | undefined) | null;
|
|
108864
|
+
message_overrides?: ({
|
|
108865
|
+
[x: string]: {
|
|
108866
|
+
[x: string]: string;
|
|
108867
|
+
};
|
|
108868
|
+
} | undefined) | null;
|
|
108804
108869
|
};
|
|
108805
108870
|
commonParams: {};
|
|
108806
108871
|
formData: {};
|
|
@@ -118514,6 +118579,11 @@ export type Routes = {
|
|
|
118514
118579
|
font_family?: string | undefined;
|
|
118515
118580
|
mono_font_family?: string | undefined;
|
|
118516
118581
|
} | undefined;
|
|
118582
|
+
message_overrides?: {
|
|
118583
|
+
[x: string]: {
|
|
118584
|
+
[x: string]: string;
|
|
118585
|
+
};
|
|
118586
|
+
} | undefined;
|
|
118517
118587
|
}[] | undefined;
|
|
118518
118588
|
};
|
|
118519
118589
|
};
|
package/package.json
CHANGED
|
@@ -62,6 +62,30 @@ const base_manage_feature = base_feature.extend({
|
|
|
62
62
|
})
|
|
63
63
|
.optional()
|
|
64
64
|
.describe('Configuration for event type filtering in the manage feature.'),
|
|
65
|
+
device_management_confirmation: z
|
|
66
|
+
.object({
|
|
67
|
+
title: z
|
|
68
|
+
.string()
|
|
69
|
+
.optional()
|
|
70
|
+
.describe('Custom title for the confirmation modal.'),
|
|
71
|
+
body: z
|
|
72
|
+
.string()
|
|
73
|
+
.optional()
|
|
74
|
+
.describe(
|
|
75
|
+
'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.',
|
|
76
|
+
),
|
|
77
|
+
confirm_button_label: z
|
|
78
|
+
.string()
|
|
79
|
+
.optional()
|
|
80
|
+
.describe('Custom label for the confirm button.'),
|
|
81
|
+
cancel_button_label: z
|
|
82
|
+
.string()
|
|
83
|
+
.optional()
|
|
84
|
+
.describe('Custom label for the cancel button.'),
|
|
85
|
+
})
|
|
86
|
+
.optional().describe(`
|
|
87
|
+
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.
|
|
88
|
+
`),
|
|
65
89
|
})
|
|
66
90
|
|
|
67
91
|
const base_organize_feature = base_feature
|
|
@@ -11,6 +11,14 @@ export const customer_portal_theme = z.object({
|
|
|
11
11
|
mono_font_family: z.string().optional(),
|
|
12
12
|
})
|
|
13
13
|
|
|
14
|
+
// Per-locale portal label/terminology overrides:
|
|
15
|
+
// { [locale]: { ["Namespace.key"]: "Override string" } }
|
|
16
|
+
// e.g. { "en-US": { "Reservations.reservation": "Booking" } }
|
|
17
|
+
export const message_overrides = z.record(
|
|
18
|
+
z.string(),
|
|
19
|
+
z.record(z.string(), z.string()),
|
|
20
|
+
)
|
|
21
|
+
|
|
14
22
|
export const customization_profile = z.object({
|
|
15
23
|
workspace_id: z.string().uuid(),
|
|
16
24
|
name: z.string().nullable(),
|
|
@@ -20,6 +28,7 @@ export const customization_profile = z.object({
|
|
|
20
28
|
primary_color: z.string().optional(),
|
|
21
29
|
secondary_color: z.string().optional(),
|
|
22
30
|
customer_portal_theme: customer_portal_theme.optional(),
|
|
31
|
+
message_overrides: message_overrides.optional(),
|
|
23
32
|
}).describe(`
|
|
24
33
|
---
|
|
25
34
|
title: Customization Profile
|
|
@@ -13189,6 +13189,13 @@ const openapi: OpenAPISpec = {
|
|
|
13189
13189
|
},
|
|
13190
13190
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
13191
13191
|
logo_url: { format: 'uri', type: 'string' },
|
|
13192
|
+
message_overrides: {
|
|
13193
|
+
additionalProperties: {
|
|
13194
|
+
additionalProperties: { type: 'string' },
|
|
13195
|
+
type: 'object',
|
|
13196
|
+
},
|
|
13197
|
+
type: 'object',
|
|
13198
|
+
},
|
|
13192
13199
|
name: { nullable: true, type: 'string' },
|
|
13193
13200
|
primary_color: { type: 'string' },
|
|
13194
13201
|
secondary_color: { type: 'string' },
|
|
@@ -53776,6 +53783,33 @@ const openapi: OpenAPISpec = {
|
|
|
53776
53783
|
description:
|
|
53777
53784
|
'Configuration for the manage feature.',
|
|
53778
53785
|
properties: {
|
|
53786
|
+
device_management_confirmation: {
|
|
53787
|
+
description:
|
|
53788
|
+
'\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 ',
|
|
53789
|
+
properties: {
|
|
53790
|
+
body: {
|
|
53791
|
+
description:
|
|
53792
|
+
'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.',
|
|
53793
|
+
type: 'string',
|
|
53794
|
+
},
|
|
53795
|
+
cancel_button_label: {
|
|
53796
|
+
description:
|
|
53797
|
+
'Custom label for the cancel button.',
|
|
53798
|
+
type: 'string',
|
|
53799
|
+
},
|
|
53800
|
+
confirm_button_label: {
|
|
53801
|
+
description:
|
|
53802
|
+
'Custom label for the confirm button.',
|
|
53803
|
+
type: 'string',
|
|
53804
|
+
},
|
|
53805
|
+
title: {
|
|
53806
|
+
description:
|
|
53807
|
+
'Custom title for the confirmation modal.',
|
|
53808
|
+
type: 'string',
|
|
53809
|
+
},
|
|
53810
|
+
},
|
|
53811
|
+
type: 'object',
|
|
53812
|
+
},
|
|
53779
53813
|
events: {
|
|
53780
53814
|
description:
|
|
53781
53815
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -72368,6 +72402,9 @@ const openapi: OpenAPISpec = {
|
|
|
72368
72402
|
},
|
|
72369
72403
|
feature_flags: {
|
|
72370
72404
|
properties: {
|
|
72405
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
72406
|
+
type: 'boolean',
|
|
72407
|
+
},
|
|
72371
72408
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
72372
72409
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
72373
72410
|
type: 'boolean',
|
|
@@ -72447,6 +72484,33 @@ const openapi: OpenAPISpec = {
|
|
|
72447
72484
|
description:
|
|
72448
72485
|
'Configuration for the manage feature.',
|
|
72449
72486
|
properties: {
|
|
72487
|
+
device_management_confirmation: {
|
|
72488
|
+
description:
|
|
72489
|
+
'\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 ',
|
|
72490
|
+
properties: {
|
|
72491
|
+
body: {
|
|
72492
|
+
description:
|
|
72493
|
+
'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.',
|
|
72494
|
+
type: 'string',
|
|
72495
|
+
},
|
|
72496
|
+
cancel_button_label: {
|
|
72497
|
+
description:
|
|
72498
|
+
'Custom label for the cancel button.',
|
|
72499
|
+
type: 'string',
|
|
72500
|
+
},
|
|
72501
|
+
confirm_button_label: {
|
|
72502
|
+
description:
|
|
72503
|
+
'Custom label for the confirm button.',
|
|
72504
|
+
type: 'string',
|
|
72505
|
+
},
|
|
72506
|
+
title: {
|
|
72507
|
+
description:
|
|
72508
|
+
'Custom title for the confirmation modal.',
|
|
72509
|
+
type: 'string',
|
|
72510
|
+
},
|
|
72511
|
+
},
|
|
72512
|
+
type: 'object',
|
|
72513
|
+
},
|
|
72450
72514
|
events: {
|
|
72451
72515
|
description:
|
|
72452
72516
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -72795,6 +72859,9 @@ const openapi: OpenAPISpec = {
|
|
|
72795
72859
|
},
|
|
72796
72860
|
feature_flags: {
|
|
72797
72861
|
properties: {
|
|
72862
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
72863
|
+
type: 'boolean',
|
|
72864
|
+
},
|
|
72798
72865
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
72799
72866
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
72800
72867
|
type: 'boolean',
|
|
@@ -72874,6 +72941,33 @@ const openapi: OpenAPISpec = {
|
|
|
72874
72941
|
description:
|
|
72875
72942
|
'Configuration for the manage feature.',
|
|
72876
72943
|
properties: {
|
|
72944
|
+
device_management_confirmation: {
|
|
72945
|
+
description:
|
|
72946
|
+
'\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 ',
|
|
72947
|
+
properties: {
|
|
72948
|
+
body: {
|
|
72949
|
+
description:
|
|
72950
|
+
'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.',
|
|
72951
|
+
type: 'string',
|
|
72952
|
+
},
|
|
72953
|
+
cancel_button_label: {
|
|
72954
|
+
description:
|
|
72955
|
+
'Custom label for the cancel button.',
|
|
72956
|
+
type: 'string',
|
|
72957
|
+
},
|
|
72958
|
+
confirm_button_label: {
|
|
72959
|
+
description:
|
|
72960
|
+
'Custom label for the confirm button.',
|
|
72961
|
+
type: 'string',
|
|
72962
|
+
},
|
|
72963
|
+
title: {
|
|
72964
|
+
description:
|
|
72965
|
+
'Custom title for the confirmation modal.',
|
|
72966
|
+
type: 'string',
|
|
72967
|
+
},
|
|
72968
|
+
},
|
|
72969
|
+
type: 'object',
|
|
72970
|
+
},
|
|
72877
72971
|
events: {
|
|
72878
72972
|
description:
|
|
72879
72973
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -73260,6 +73354,33 @@ const openapi: OpenAPISpec = {
|
|
|
73260
73354
|
description:
|
|
73261
73355
|
'Configuration for the manage feature.',
|
|
73262
73356
|
properties: {
|
|
73357
|
+
device_management_confirmation: {
|
|
73358
|
+
description:
|
|
73359
|
+
'\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 ',
|
|
73360
|
+
properties: {
|
|
73361
|
+
body: {
|
|
73362
|
+
description:
|
|
73363
|
+
'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.',
|
|
73364
|
+
type: 'string',
|
|
73365
|
+
},
|
|
73366
|
+
cancel_button_label: {
|
|
73367
|
+
description:
|
|
73368
|
+
'Custom label for the cancel button.',
|
|
73369
|
+
type: 'string',
|
|
73370
|
+
},
|
|
73371
|
+
confirm_button_label: {
|
|
73372
|
+
description:
|
|
73373
|
+
'Custom label for the confirm button.',
|
|
73374
|
+
type: 'string',
|
|
73375
|
+
},
|
|
73376
|
+
title: {
|
|
73377
|
+
description:
|
|
73378
|
+
'Custom title for the confirmation modal.',
|
|
73379
|
+
type: 'string',
|
|
73380
|
+
},
|
|
73381
|
+
},
|
|
73382
|
+
type: 'object',
|
|
73383
|
+
},
|
|
73263
73384
|
events: {
|
|
73264
73385
|
description:
|
|
73265
73386
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -73648,6 +73769,33 @@ const openapi: OpenAPISpec = {
|
|
|
73648
73769
|
description:
|
|
73649
73770
|
'Configuration for the manage feature.',
|
|
73650
73771
|
properties: {
|
|
73772
|
+
device_management_confirmation: {
|
|
73773
|
+
description:
|
|
73774
|
+
'\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 ',
|
|
73775
|
+
properties: {
|
|
73776
|
+
body: {
|
|
73777
|
+
description:
|
|
73778
|
+
'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.',
|
|
73779
|
+
type: 'string',
|
|
73780
|
+
},
|
|
73781
|
+
cancel_button_label: {
|
|
73782
|
+
description:
|
|
73783
|
+
'Custom label for the cancel button.',
|
|
73784
|
+
type: 'string',
|
|
73785
|
+
},
|
|
73786
|
+
confirm_button_label: {
|
|
73787
|
+
description:
|
|
73788
|
+
'Custom label for the confirm button.',
|
|
73789
|
+
type: 'string',
|
|
73790
|
+
},
|
|
73791
|
+
title: {
|
|
73792
|
+
description:
|
|
73793
|
+
'Custom title for the confirmation modal.',
|
|
73794
|
+
type: 'string',
|
|
73795
|
+
},
|
|
73796
|
+
},
|
|
73797
|
+
type: 'object',
|
|
73798
|
+
},
|
|
73651
73799
|
events: {
|
|
73652
73800
|
description:
|
|
73653
73801
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -87175,6 +87323,13 @@ const openapi: OpenAPISpec = {
|
|
|
87175
87323
|
},
|
|
87176
87324
|
type: 'object',
|
|
87177
87325
|
},
|
|
87326
|
+
message_overrides: {
|
|
87327
|
+
additionalProperties: {
|
|
87328
|
+
additionalProperties: { type: 'string' },
|
|
87329
|
+
type: 'object',
|
|
87330
|
+
},
|
|
87331
|
+
type: 'object',
|
|
87332
|
+
},
|
|
87178
87333
|
name: { default: null, nullable: true, type: 'string' },
|
|
87179
87334
|
primary_color: { type: 'string' },
|
|
87180
87335
|
secondary_color: { type: 'string' },
|
|
@@ -87457,6 +87612,14 @@ const openapi: OpenAPISpec = {
|
|
|
87457
87612
|
type: 'object',
|
|
87458
87613
|
},
|
|
87459
87614
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
87615
|
+
message_overrides: {
|
|
87616
|
+
additionalProperties: {
|
|
87617
|
+
additionalProperties: { type: 'string' },
|
|
87618
|
+
type: 'object',
|
|
87619
|
+
},
|
|
87620
|
+
nullable: true,
|
|
87621
|
+
type: 'object',
|
|
87622
|
+
},
|
|
87460
87623
|
name: { nullable: true, type: 'string' },
|
|
87461
87624
|
primary_color: { type: 'string' },
|
|
87462
87625
|
secondary_color: { type: 'string' },
|
|
@@ -87518,6 +87681,14 @@ const openapi: OpenAPISpec = {
|
|
|
87518
87681
|
type: 'object',
|
|
87519
87682
|
},
|
|
87520
87683
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
87684
|
+
message_overrides: {
|
|
87685
|
+
additionalProperties: {
|
|
87686
|
+
additionalProperties: { type: 'string' },
|
|
87687
|
+
type: 'object',
|
|
87688
|
+
},
|
|
87689
|
+
nullable: true,
|
|
87690
|
+
type: 'object',
|
|
87691
|
+
},
|
|
87521
87692
|
name: { nullable: true, type: 'string' },
|
|
87522
87693
|
primary_color: { type: 'string' },
|
|
87523
87694
|
secondary_color: { type: 'string' },
|
|
@@ -47783,6 +47783,21 @@ export type Routes = {
|
|
|
47783
47783
|
default_events?: string[] | undefined
|
|
47784
47784
|
}
|
|
47785
47785
|
| undefined
|
|
47786
|
+
/**
|
|
47787
|
+
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.
|
|
47788
|
+
*/
|
|
47789
|
+
device_management_confirmation?:
|
|
47790
|
+
| {
|
|
47791
|
+
/** Custom title for the confirmation modal. */
|
|
47792
|
+
title?: string | undefined
|
|
47793
|
+
/** 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. */
|
|
47794
|
+
body?: string | undefined
|
|
47795
|
+
/** Custom label for the confirm button. */
|
|
47796
|
+
confirm_button_label?: string | undefined
|
|
47797
|
+
/** Custom label for the cancel button. */
|
|
47798
|
+
cancel_button_label?: string | undefined
|
|
47799
|
+
}
|
|
47800
|
+
| undefined
|
|
47786
47801
|
}
|
|
47787
47802
|
/** Configuration for the manage devices feature.
|
|
47788
47803
|
---
|
|
@@ -95939,6 +95954,21 @@ export type Routes = {
|
|
|
95939
95954
|
default_events?: string[] | undefined
|
|
95940
95955
|
}
|
|
95941
95956
|
| undefined
|
|
95957
|
+
/**
|
|
95958
|
+
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.
|
|
95959
|
+
*/
|
|
95960
|
+
device_management_confirmation?:
|
|
95961
|
+
| {
|
|
95962
|
+
/** Custom title for the confirmation modal. */
|
|
95963
|
+
title?: string | undefined
|
|
95964
|
+
/** 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. */
|
|
95965
|
+
body?: string | undefined
|
|
95966
|
+
/** Custom label for the confirm button. */
|
|
95967
|
+
confirm_button_label?: string | undefined
|
|
95968
|
+
/** Custom label for the cancel button. */
|
|
95969
|
+
cancel_button_label?: string | undefined
|
|
95970
|
+
}
|
|
95971
|
+
| undefined
|
|
95942
95972
|
}
|
|
95943
95973
|
/** Configuration for the manage devices feature.
|
|
95944
95974
|
---
|
|
@@ -96073,6 +96103,7 @@ export type Routes = {
|
|
|
96073
96103
|
| {
|
|
96074
96104
|
RESERVATION_UI_V2?: boolean | undefined
|
|
96075
96105
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined
|
|
96106
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL?: boolean | undefined
|
|
96076
96107
|
}
|
|
96077
96108
|
| undefined
|
|
96078
96109
|
}
|
|
@@ -96118,6 +96149,21 @@ export type Routes = {
|
|
|
96118
96149
|
default_events?: string[] | undefined
|
|
96119
96150
|
}
|
|
96120
96151
|
| undefined
|
|
96152
|
+
/**
|
|
96153
|
+
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.
|
|
96154
|
+
*/
|
|
96155
|
+
device_management_confirmation?:
|
|
96156
|
+
| {
|
|
96157
|
+
/** Custom title for the confirmation modal. */
|
|
96158
|
+
title?: string | undefined
|
|
96159
|
+
/** 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. */
|
|
96160
|
+
body?: string | undefined
|
|
96161
|
+
/** Custom label for the confirm button. */
|
|
96162
|
+
confirm_button_label?: string | undefined
|
|
96163
|
+
/** Custom label for the cancel button. */
|
|
96164
|
+
cancel_button_label?: string | undefined
|
|
96165
|
+
}
|
|
96166
|
+
| undefined
|
|
96121
96167
|
}
|
|
96122
96168
|
/** Configuration for the manage devices feature.
|
|
96123
96169
|
---
|
|
@@ -129451,6 +129497,13 @@ export type Routes = {
|
|
|
129451
129497
|
mono_font_family?: string | undefined
|
|
129452
129498
|
}
|
|
129453
129499
|
| undefined
|
|
129500
|
+
message_overrides?:
|
|
129501
|
+
| {
|
|
129502
|
+
[x: string]: {
|
|
129503
|
+
[x: string]: string
|
|
129504
|
+
}
|
|
129505
|
+
}
|
|
129506
|
+
| undefined
|
|
129454
129507
|
}
|
|
129455
129508
|
commonParams: {}
|
|
129456
129509
|
formData: {}
|
|
@@ -129474,6 +129527,13 @@ export type Routes = {
|
|
|
129474
129527
|
mono_font_family?: string | undefined
|
|
129475
129528
|
}
|
|
129476
129529
|
| undefined
|
|
129530
|
+
message_overrides?:
|
|
129531
|
+
| {
|
|
129532
|
+
[x: string]: {
|
|
129533
|
+
[x: string]: string
|
|
129534
|
+
}
|
|
129535
|
+
}
|
|
129536
|
+
| undefined
|
|
129477
129537
|
}
|
|
129478
129538
|
}
|
|
129479
129539
|
maxDuration: undefined
|
|
@@ -129507,6 +129567,13 @@ export type Routes = {
|
|
|
129507
129567
|
mono_font_family?: string | undefined
|
|
129508
129568
|
}
|
|
129509
129569
|
| undefined
|
|
129570
|
+
message_overrides?:
|
|
129571
|
+
| {
|
|
129572
|
+
[x: string]: {
|
|
129573
|
+
[x: string]: string
|
|
129574
|
+
}
|
|
129575
|
+
}
|
|
129576
|
+
| undefined
|
|
129510
129577
|
}
|
|
129511
129578
|
}
|
|
129512
129579
|
maxDuration: undefined
|
|
@@ -129540,6 +129607,13 @@ export type Routes = {
|
|
|
129540
129607
|
mono_font_family?: string | undefined
|
|
129541
129608
|
}
|
|
129542
129609
|
| undefined
|
|
129610
|
+
message_overrides?:
|
|
129611
|
+
| {
|
|
129612
|
+
[x: string]: {
|
|
129613
|
+
[x: string]: string
|
|
129614
|
+
}
|
|
129615
|
+
}
|
|
129616
|
+
| undefined
|
|
129543
129617
|
}[]
|
|
129544
129618
|
}
|
|
129545
129619
|
maxDuration: undefined
|
|
@@ -129566,6 +129640,16 @@ export type Routes = {
|
|
|
129566
129640
|
| undefined
|
|
129567
129641
|
)
|
|
129568
129642
|
| null
|
|
129643
|
+
message_overrides?:
|
|
129644
|
+
| (
|
|
129645
|
+
| {
|
|
129646
|
+
[x: string]: {
|
|
129647
|
+
[x: string]: string
|
|
129648
|
+
}
|
|
129649
|
+
}
|
|
129650
|
+
| undefined
|
|
129651
|
+
)
|
|
129652
|
+
| null
|
|
129569
129653
|
}
|
|
129570
129654
|
commonParams: {}
|
|
129571
129655
|
formData: {}
|
|
@@ -140957,6 +141041,13 @@ export type Routes = {
|
|
|
140957
141041
|
mono_font_family?: string | undefined
|
|
140958
141042
|
}
|
|
140959
141043
|
| undefined
|
|
141044
|
+
message_overrides?:
|
|
141045
|
+
| {
|
|
141046
|
+
[x: string]: {
|
|
141047
|
+
[x: string]: string
|
|
141048
|
+
}
|
|
141049
|
+
}
|
|
141050
|
+
| undefined
|
|
140960
141051
|
}[]
|
|
140961
141052
|
| undefined
|
|
140962
141053
|
}
|