@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
|
@@ -31,6 +31,22 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
31
31
|
allowed_events?: string[] | undefined;
|
|
32
32
|
default_events?: string[] | undefined;
|
|
33
33
|
}>>;
|
|
34
|
+
device_management_confirmation: z.ZodOptional<z.ZodObject<{
|
|
35
|
+
title: z.ZodOptional<z.ZodString>;
|
|
36
|
+
body: z.ZodOptional<z.ZodString>;
|
|
37
|
+
confirm_button_label: z.ZodOptional<z.ZodString>;
|
|
38
|
+
cancel_button_label: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
title?: string | undefined;
|
|
41
|
+
body?: string | undefined;
|
|
42
|
+
confirm_button_label?: string | undefined;
|
|
43
|
+
cancel_button_label?: string | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
title?: string | undefined;
|
|
46
|
+
body?: string | undefined;
|
|
47
|
+
confirm_button_label?: string | undefined;
|
|
48
|
+
cancel_button_label?: string | undefined;
|
|
49
|
+
}>>;
|
|
34
50
|
}, "strip", z.ZodTypeAny, {
|
|
35
51
|
exclude: boolean;
|
|
36
52
|
exclude_reservation_management: boolean;
|
|
@@ -40,6 +56,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
40
56
|
allowed_events?: string[] | undefined;
|
|
41
57
|
default_events?: string[] | undefined;
|
|
42
58
|
} | undefined;
|
|
59
|
+
device_management_confirmation?: {
|
|
60
|
+
title?: string | undefined;
|
|
61
|
+
body?: string | undefined;
|
|
62
|
+
confirm_button_label?: string | undefined;
|
|
63
|
+
cancel_button_label?: string | undefined;
|
|
64
|
+
} | undefined;
|
|
43
65
|
}, {
|
|
44
66
|
events?: {
|
|
45
67
|
allowed_events?: string[] | undefined;
|
|
@@ -49,6 +71,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
49
71
|
exclude_reservation_management?: boolean | undefined;
|
|
50
72
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
51
73
|
exclude_staff_management?: boolean | undefined;
|
|
74
|
+
device_management_confirmation?: {
|
|
75
|
+
title?: string | undefined;
|
|
76
|
+
body?: string | undefined;
|
|
77
|
+
confirm_button_label?: string | undefined;
|
|
78
|
+
cancel_button_label?: string | undefined;
|
|
79
|
+
} | undefined;
|
|
52
80
|
}>>;
|
|
53
81
|
manage_devices: z.ZodDefault<z.ZodObject<{
|
|
54
82
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -96,6 +124,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
96
124
|
allowed_events?: string[] | undefined;
|
|
97
125
|
default_events?: string[] | undefined;
|
|
98
126
|
} | undefined;
|
|
127
|
+
device_management_confirmation?: {
|
|
128
|
+
title?: string | undefined;
|
|
129
|
+
body?: string | undefined;
|
|
130
|
+
confirm_button_label?: string | undefined;
|
|
131
|
+
cancel_button_label?: string | undefined;
|
|
132
|
+
} | undefined;
|
|
99
133
|
};
|
|
100
134
|
manage_devices: {
|
|
101
135
|
exclude: boolean;
|
|
@@ -124,6 +158,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
124
158
|
exclude_reservation_management?: boolean | undefined;
|
|
125
159
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
126
160
|
exclude_staff_management?: boolean | undefined;
|
|
161
|
+
device_management_confirmation?: {
|
|
162
|
+
title?: string | undefined;
|
|
163
|
+
body?: string | undefined;
|
|
164
|
+
confirm_button_label?: string | undefined;
|
|
165
|
+
cancel_button_label?: string | undefined;
|
|
166
|
+
} | undefined;
|
|
127
167
|
} | undefined;
|
|
128
168
|
manage_devices?: {
|
|
129
169
|
exclude?: boolean | undefined;
|
|
@@ -319,6 +359,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
319
359
|
allowed_events?: string[] | undefined;
|
|
320
360
|
default_events?: string[] | undefined;
|
|
321
361
|
} | undefined;
|
|
362
|
+
device_management_confirmation?: {
|
|
363
|
+
title?: string | undefined;
|
|
364
|
+
body?: string | undefined;
|
|
365
|
+
confirm_button_label?: string | undefined;
|
|
366
|
+
cancel_button_label?: string | undefined;
|
|
367
|
+
} | undefined;
|
|
322
368
|
};
|
|
323
369
|
manage_devices: {
|
|
324
370
|
exclude: boolean;
|
|
@@ -392,6 +438,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
392
438
|
exclude_reservation_management?: boolean | undefined;
|
|
393
439
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
394
440
|
exclude_staff_management?: boolean | undefined;
|
|
441
|
+
device_management_confirmation?: {
|
|
442
|
+
title?: string | undefined;
|
|
443
|
+
body?: string | undefined;
|
|
444
|
+
confirm_button_label?: string | undefined;
|
|
445
|
+
cancel_button_label?: string | undefined;
|
|
446
|
+
} | undefined;
|
|
395
447
|
} | undefined;
|
|
396
448
|
manage_devices?: {
|
|
397
449
|
exclude?: boolean | undefined;
|
|
@@ -482,6 +534,22 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
482
534
|
allowed_events?: string[] | undefined;
|
|
483
535
|
default_events?: string[] | undefined;
|
|
484
536
|
}>>;
|
|
537
|
+
device_management_confirmation: z.ZodOptional<z.ZodObject<{
|
|
538
|
+
title: z.ZodOptional<z.ZodString>;
|
|
539
|
+
body: z.ZodOptional<z.ZodString>;
|
|
540
|
+
confirm_button_label: z.ZodOptional<z.ZodString>;
|
|
541
|
+
cancel_button_label: z.ZodOptional<z.ZodString>;
|
|
542
|
+
}, "strip", z.ZodTypeAny, {
|
|
543
|
+
title?: string | undefined;
|
|
544
|
+
body?: string | undefined;
|
|
545
|
+
confirm_button_label?: string | undefined;
|
|
546
|
+
cancel_button_label?: string | undefined;
|
|
547
|
+
}, {
|
|
548
|
+
title?: string | undefined;
|
|
549
|
+
body?: string | undefined;
|
|
550
|
+
confirm_button_label?: string | undefined;
|
|
551
|
+
cancel_button_label?: string | undefined;
|
|
552
|
+
}>>;
|
|
485
553
|
}, "strip", z.ZodTypeAny, {
|
|
486
554
|
exclude: boolean;
|
|
487
555
|
exclude_reservation_management: boolean;
|
|
@@ -491,6 +559,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
491
559
|
allowed_events?: string[] | undefined;
|
|
492
560
|
default_events?: string[] | undefined;
|
|
493
561
|
} | undefined;
|
|
562
|
+
device_management_confirmation?: {
|
|
563
|
+
title?: string | undefined;
|
|
564
|
+
body?: string | undefined;
|
|
565
|
+
confirm_button_label?: string | undefined;
|
|
566
|
+
cancel_button_label?: string | undefined;
|
|
567
|
+
} | undefined;
|
|
494
568
|
}, {
|
|
495
569
|
events?: {
|
|
496
570
|
allowed_events?: string[] | undefined;
|
|
@@ -500,6 +574,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
500
574
|
exclude_reservation_management?: boolean | undefined;
|
|
501
575
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
502
576
|
exclude_staff_management?: boolean | undefined;
|
|
577
|
+
device_management_confirmation?: {
|
|
578
|
+
title?: string | undefined;
|
|
579
|
+
body?: string | undefined;
|
|
580
|
+
confirm_button_label?: string | undefined;
|
|
581
|
+
cancel_button_label?: string | undefined;
|
|
582
|
+
} | undefined;
|
|
503
583
|
}>>;
|
|
504
584
|
manage_devices: z.ZodDefault<z.ZodObject<{
|
|
505
585
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -547,6 +627,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
547
627
|
allowed_events?: string[] | undefined;
|
|
548
628
|
default_events?: string[] | undefined;
|
|
549
629
|
} | undefined;
|
|
630
|
+
device_management_confirmation?: {
|
|
631
|
+
title?: string | undefined;
|
|
632
|
+
body?: string | undefined;
|
|
633
|
+
confirm_button_label?: string | undefined;
|
|
634
|
+
cancel_button_label?: string | undefined;
|
|
635
|
+
} | undefined;
|
|
550
636
|
};
|
|
551
637
|
manage_devices: {
|
|
552
638
|
exclude: boolean;
|
|
@@ -575,6 +661,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
575
661
|
exclude_reservation_management?: boolean | undefined;
|
|
576
662
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
577
663
|
exclude_staff_management?: boolean | undefined;
|
|
664
|
+
device_management_confirmation?: {
|
|
665
|
+
title?: string | undefined;
|
|
666
|
+
body?: string | undefined;
|
|
667
|
+
confirm_button_label?: string | undefined;
|
|
668
|
+
cancel_button_label?: string | undefined;
|
|
669
|
+
} | undefined;
|
|
578
670
|
} | undefined;
|
|
579
671
|
manage_devices?: {
|
|
580
672
|
exclude?: boolean | undefined;
|
|
@@ -772,6 +864,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
772
864
|
allowed_events?: string[] | undefined;
|
|
773
865
|
default_events?: string[] | undefined;
|
|
774
866
|
} | undefined;
|
|
867
|
+
device_management_confirmation?: {
|
|
868
|
+
title?: string | undefined;
|
|
869
|
+
body?: string | undefined;
|
|
870
|
+
confirm_button_label?: string | undefined;
|
|
871
|
+
cancel_button_label?: string | undefined;
|
|
872
|
+
} | undefined;
|
|
775
873
|
};
|
|
776
874
|
manage_devices: {
|
|
777
875
|
exclude: boolean;
|
|
@@ -846,6 +944,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
846
944
|
exclude_reservation_management?: boolean | undefined;
|
|
847
945
|
exclude_reservation_technical_details?: boolean | undefined;
|
|
848
946
|
exclude_staff_management?: boolean | undefined;
|
|
947
|
+
device_management_confirmation?: {
|
|
948
|
+
title?: string | undefined;
|
|
949
|
+
body?: string | undefined;
|
|
950
|
+
confirm_button_label?: string | undefined;
|
|
951
|
+
cancel_button_label?: string | undefined;
|
|
952
|
+
} | undefined;
|
|
849
953
|
} | undefined;
|
|
850
954
|
manage_devices?: {
|
|
851
955
|
exclude?: boolean | undefined;
|
|
@@ -44,6 +44,28 @@ const base_manage_feature = base_feature.extend({
|
|
|
44
44
|
})
|
|
45
45
|
.optional()
|
|
46
46
|
.describe('Configuration for event type filtering in the manage feature.'),
|
|
47
|
+
device_management_confirmation: z
|
|
48
|
+
.object({
|
|
49
|
+
title: z
|
|
50
|
+
.string()
|
|
51
|
+
.optional()
|
|
52
|
+
.describe('Custom title for the confirmation modal.'),
|
|
53
|
+
body: z
|
|
54
|
+
.string()
|
|
55
|
+
.optional()
|
|
56
|
+
.describe('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.'),
|
|
57
|
+
confirm_button_label: z
|
|
58
|
+
.string()
|
|
59
|
+
.optional()
|
|
60
|
+
.describe('Custom label for the confirm button.'),
|
|
61
|
+
cancel_button_label: z
|
|
62
|
+
.string()
|
|
63
|
+
.optional()
|
|
64
|
+
.describe('Custom label for the cancel button.'),
|
|
65
|
+
})
|
|
66
|
+
.optional().describe(`
|
|
67
|
+
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.
|
|
68
|
+
`),
|
|
47
69
|
});
|
|
48
70
|
const base_organize_feature = base_feature;
|
|
49
71
|
const base_configure_feature = base_feature.extend({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAA;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAE9D,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,OAAO,EAAE,CAAC;SACP,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC/C,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,sIAAsI,CACvI;IACH,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,6IAA6I,CAC9I;CACJ,CAAC,CAAA;AACF,MAAM,2BAA2B,GAAG,YAAY,CAAA;AAEhD,MAAM,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC9C,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,8EAA8E,CAC/E;IACH,qCAAqC,EAAE,CAAC;SACrC,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,wEAAwE,CACzE;IACH,wBAAwB,EAAE,CAAC;SACxB,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,uEAAuE,CACxE;IACH,MAAM,EAAE,CAAC;SACN,MAAM,CAAC;QACN,cAAc,EAAE,CAAC;aACd,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;aACjB,QAAQ,EAAE;aACV,QAAQ,CACP,uIAAuI,CACxI;QACH,cAAc,EAAE,CAAC;aACd,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;aACjB,QAAQ,EAAE;aACV,QAAQ,CACP,0GAA0G,CAC3G;KACJ,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,CAAC,+DAA+D,CAAC;
|
|
1
|
+
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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"}
|
|
@@ -21,6 +21,7 @@ export declare const customer_portal_theme: z.ZodObject<{
|
|
|
21
21
|
font_family?: string | undefined;
|
|
22
22
|
mono_font_family?: string | undefined;
|
|
23
23
|
}>;
|
|
24
|
+
export declare const message_overrides: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
24
25
|
export declare const customization_profile: z.ZodObject<{
|
|
25
26
|
workspace_id: z.ZodString;
|
|
26
27
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -51,6 +52,7 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
51
52
|
font_family?: string | undefined;
|
|
52
53
|
mono_font_family?: string | undefined;
|
|
53
54
|
}>>;
|
|
55
|
+
message_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
54
56
|
}, "strip", z.ZodTypeAny, {
|
|
55
57
|
name: string | null;
|
|
56
58
|
workspace_id: string;
|
|
@@ -67,6 +69,7 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
67
69
|
font_family?: string | undefined;
|
|
68
70
|
mono_font_family?: string | undefined;
|
|
69
71
|
} | undefined;
|
|
72
|
+
message_overrides?: Record<string, Record<string, string>> | undefined;
|
|
70
73
|
}, {
|
|
71
74
|
name: string | null;
|
|
72
75
|
workspace_id: string;
|
|
@@ -83,5 +86,6 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
83
86
|
font_family?: string | undefined;
|
|
84
87
|
mono_font_family?: string | undefined;
|
|
85
88
|
} | undefined;
|
|
89
|
+
message_overrides?: Record<string, Record<string, string>> | undefined;
|
|
86
90
|
}>;
|
|
87
91
|
export type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
@@ -8,6 +8,10 @@ export const customer_portal_theme = z.object({
|
|
|
8
8
|
font_family: z.string().optional(),
|
|
9
9
|
mono_font_family: z.string().optional(),
|
|
10
10
|
});
|
|
11
|
+
// Per-locale portal label/terminology overrides:
|
|
12
|
+
// { [locale]: { ["Namespace.key"]: "Override string" } }
|
|
13
|
+
// e.g. { "en-US": { "Reservations.reservation": "Booking" } }
|
|
14
|
+
export const message_overrides = z.record(z.string(), z.record(z.string(), z.string()));
|
|
11
15
|
export const customization_profile = z.object({
|
|
12
16
|
workspace_id: z.string().uuid(),
|
|
13
17
|
name: z.string().nullable(),
|
|
@@ -17,6 +21,7 @@ export const customization_profile = z.object({
|
|
|
17
21
|
primary_color: z.string().optional(),
|
|
18
22
|
secondary_color: z.string().optional(),
|
|
19
23
|
customer_portal_theme: customer_portal_theme.optional(),
|
|
24
|
+
message_overrides: message_overrides.optional(),
|
|
20
25
|
}).describe(`
|
|
21
26
|
---
|
|
22
27
|
title: Customization Profile
|
|
@@ -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;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;
|
|
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,iDAAiD;AACjD,yDAAyD;AACzD,8DAA8D;AAC9D,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CACvC,CAAC,CAAC,MAAM,EAAE,EACV,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CACjC,CAAA;AAED,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;IACvD,iBAAiB,EAAE,iBAAiB,CAAC,QAAQ,EAAE;CAChD,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -11657,6 +11657,13 @@ const openapi = {
|
|
|
11657
11657
|
},
|
|
11658
11658
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
11659
11659
|
logo_url: { format: 'uri', type: 'string' },
|
|
11660
|
+
message_overrides: {
|
|
11661
|
+
additionalProperties: {
|
|
11662
|
+
additionalProperties: { type: 'string' },
|
|
11663
|
+
type: 'object',
|
|
11664
|
+
},
|
|
11665
|
+
type: 'object',
|
|
11666
|
+
},
|
|
11660
11667
|
name: { nullable: true, type: 'string' },
|
|
11661
11668
|
primary_color: { type: 'string' },
|
|
11662
11669
|
secondary_color: { type: 'string' },
|
|
@@ -48707,6 +48714,28 @@ const openapi = {
|
|
|
48707
48714
|
default: {},
|
|
48708
48715
|
description: 'Configuration for the manage feature.',
|
|
48709
48716
|
properties: {
|
|
48717
|
+
device_management_confirmation: {
|
|
48718
|
+
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 ',
|
|
48719
|
+
properties: {
|
|
48720
|
+
body: {
|
|
48721
|
+
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.',
|
|
48722
|
+
type: 'string',
|
|
48723
|
+
},
|
|
48724
|
+
cancel_button_label: {
|
|
48725
|
+
description: 'Custom label for the cancel button.',
|
|
48726
|
+
type: 'string',
|
|
48727
|
+
},
|
|
48728
|
+
confirm_button_label: {
|
|
48729
|
+
description: 'Custom label for the confirm button.',
|
|
48730
|
+
type: 'string',
|
|
48731
|
+
},
|
|
48732
|
+
title: {
|
|
48733
|
+
description: 'Custom title for the confirmation modal.',
|
|
48734
|
+
type: 'string',
|
|
48735
|
+
},
|
|
48736
|
+
},
|
|
48737
|
+
type: 'object',
|
|
48738
|
+
},
|
|
48710
48739
|
events: {
|
|
48711
48740
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
48712
48741
|
properties: {
|
|
@@ -66544,6 +66573,9 @@ const openapi = {
|
|
|
66544
66573
|
},
|
|
66545
66574
|
feature_flags: {
|
|
66546
66575
|
properties: {
|
|
66576
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66577
|
+
type: 'boolean',
|
|
66578
|
+
},
|
|
66547
66579
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66548
66580
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
66549
66581
|
type: 'boolean',
|
|
@@ -66613,6 +66645,28 @@ const openapi = {
|
|
|
66613
66645
|
},
|
|
66614
66646
|
description: 'Configuration for the manage feature.',
|
|
66615
66647
|
properties: {
|
|
66648
|
+
device_management_confirmation: {
|
|
66649
|
+
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 ',
|
|
66650
|
+
properties: {
|
|
66651
|
+
body: {
|
|
66652
|
+
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.',
|
|
66653
|
+
type: 'string',
|
|
66654
|
+
},
|
|
66655
|
+
cancel_button_label: {
|
|
66656
|
+
description: 'Custom label for the cancel button.',
|
|
66657
|
+
type: 'string',
|
|
66658
|
+
},
|
|
66659
|
+
confirm_button_label: {
|
|
66660
|
+
description: 'Custom label for the confirm button.',
|
|
66661
|
+
type: 'string',
|
|
66662
|
+
},
|
|
66663
|
+
title: {
|
|
66664
|
+
description: 'Custom title for the confirmation modal.',
|
|
66665
|
+
type: 'string',
|
|
66666
|
+
},
|
|
66667
|
+
},
|
|
66668
|
+
type: 'object',
|
|
66669
|
+
},
|
|
66616
66670
|
events: {
|
|
66617
66671
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
66618
66672
|
properties: {
|
|
@@ -66938,6 +66992,9 @@ const openapi = {
|
|
|
66938
66992
|
},
|
|
66939
66993
|
feature_flags: {
|
|
66940
66994
|
properties: {
|
|
66995
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66996
|
+
type: 'boolean',
|
|
66997
|
+
},
|
|
66941
66998
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66942
66999
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
66943
67000
|
type: 'boolean',
|
|
@@ -67007,6 +67064,28 @@ const openapi = {
|
|
|
67007
67064
|
},
|
|
67008
67065
|
description: 'Configuration for the manage feature.',
|
|
67009
67066
|
properties: {
|
|
67067
|
+
device_management_confirmation: {
|
|
67068
|
+
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 ',
|
|
67069
|
+
properties: {
|
|
67070
|
+
body: {
|
|
67071
|
+
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.',
|
|
67072
|
+
type: 'string',
|
|
67073
|
+
},
|
|
67074
|
+
cancel_button_label: {
|
|
67075
|
+
description: 'Custom label for the cancel button.',
|
|
67076
|
+
type: 'string',
|
|
67077
|
+
},
|
|
67078
|
+
confirm_button_label: {
|
|
67079
|
+
description: 'Custom label for the confirm button.',
|
|
67080
|
+
type: 'string',
|
|
67081
|
+
},
|
|
67082
|
+
title: {
|
|
67083
|
+
description: 'Custom title for the confirmation modal.',
|
|
67084
|
+
type: 'string',
|
|
67085
|
+
},
|
|
67086
|
+
},
|
|
67087
|
+
type: 'object',
|
|
67088
|
+
},
|
|
67010
67089
|
events: {
|
|
67011
67090
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67012
67091
|
properties: {
|
|
@@ -67361,6 +67440,28 @@ const openapi = {
|
|
|
67361
67440
|
default: {},
|
|
67362
67441
|
description: 'Configuration for the manage feature.',
|
|
67363
67442
|
properties: {
|
|
67443
|
+
device_management_confirmation: {
|
|
67444
|
+
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 ',
|
|
67445
|
+
properties: {
|
|
67446
|
+
body: {
|
|
67447
|
+
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.',
|
|
67448
|
+
type: 'string',
|
|
67449
|
+
},
|
|
67450
|
+
cancel_button_label: {
|
|
67451
|
+
description: 'Custom label for the cancel button.',
|
|
67452
|
+
type: 'string',
|
|
67453
|
+
},
|
|
67454
|
+
confirm_button_label: {
|
|
67455
|
+
description: 'Custom label for the confirm button.',
|
|
67456
|
+
type: 'string',
|
|
67457
|
+
},
|
|
67458
|
+
title: {
|
|
67459
|
+
description: 'Custom title for the confirmation modal.',
|
|
67460
|
+
type: 'string',
|
|
67461
|
+
},
|
|
67462
|
+
},
|
|
67463
|
+
type: 'object',
|
|
67464
|
+
},
|
|
67364
67465
|
events: {
|
|
67365
67466
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67366
67467
|
properties: {
|
|
@@ -67717,6 +67818,28 @@ const openapi = {
|
|
|
67717
67818
|
default: {},
|
|
67718
67819
|
description: 'Configuration for the manage feature.',
|
|
67719
67820
|
properties: {
|
|
67821
|
+
device_management_confirmation: {
|
|
67822
|
+
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 ',
|
|
67823
|
+
properties: {
|
|
67824
|
+
body: {
|
|
67825
|
+
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.',
|
|
67826
|
+
type: 'string',
|
|
67827
|
+
},
|
|
67828
|
+
cancel_button_label: {
|
|
67829
|
+
description: 'Custom label for the cancel button.',
|
|
67830
|
+
type: 'string',
|
|
67831
|
+
},
|
|
67832
|
+
confirm_button_label: {
|
|
67833
|
+
description: 'Custom label for the confirm button.',
|
|
67834
|
+
type: 'string',
|
|
67835
|
+
},
|
|
67836
|
+
title: {
|
|
67837
|
+
description: 'Custom title for the confirmation modal.',
|
|
67838
|
+
type: 'string',
|
|
67839
|
+
},
|
|
67840
|
+
},
|
|
67841
|
+
type: 'object',
|
|
67842
|
+
},
|
|
67720
67843
|
events: {
|
|
67721
67844
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67722
67845
|
properties: {
|
|
@@ -80513,6 +80636,13 @@ const openapi = {
|
|
|
80513
80636
|
},
|
|
80514
80637
|
type: 'object',
|
|
80515
80638
|
},
|
|
80639
|
+
message_overrides: {
|
|
80640
|
+
additionalProperties: {
|
|
80641
|
+
additionalProperties: { type: 'string' },
|
|
80642
|
+
type: 'object',
|
|
80643
|
+
},
|
|
80644
|
+
type: 'object',
|
|
80645
|
+
},
|
|
80516
80646
|
name: { default: null, nullable: true, type: 'string' },
|
|
80517
80647
|
primary_color: { type: 'string' },
|
|
80518
80648
|
secondary_color: { type: 'string' },
|
|
@@ -80793,6 +80923,14 @@ const openapi = {
|
|
|
80793
80923
|
type: 'object',
|
|
80794
80924
|
},
|
|
80795
80925
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
80926
|
+
message_overrides: {
|
|
80927
|
+
additionalProperties: {
|
|
80928
|
+
additionalProperties: { type: 'string' },
|
|
80929
|
+
type: 'object',
|
|
80930
|
+
},
|
|
80931
|
+
nullable: true,
|
|
80932
|
+
type: 'object',
|
|
80933
|
+
},
|
|
80796
80934
|
name: { nullable: true, type: 'string' },
|
|
80797
80935
|
primary_color: { type: 'string' },
|
|
80798
80936
|
secondary_color: { type: 'string' },
|
|
@@ -80854,6 +80992,14 @@ const openapi = {
|
|
|
80854
80992
|
type: 'object',
|
|
80855
80993
|
},
|
|
80856
80994
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
80995
|
+
message_overrides: {
|
|
80996
|
+
additionalProperties: {
|
|
80997
|
+
additionalProperties: { type: 'string' },
|
|
80998
|
+
type: 'object',
|
|
80999
|
+
},
|
|
81000
|
+
nullable: true,
|
|
81001
|
+
type: 'object',
|
|
81002
|
+
},
|
|
80857
81003
|
name: { nullable: true, type: 'string' },
|
|
80858
81004
|
primary_color: { type: 'string' },
|
|
80859
81005
|
secondary_color: { type: 'string' },
|