@seamapi/types 1.907.0 → 1.908.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 +116 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -0
- package/dist/index.cjs +116 -0
- 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/openapi.js +116 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +40 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +24 -0
- package/src/lib/seam/connect/openapi.ts +141 -0
- package/src/lib/seam/connect/route-types.ts +46 -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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"}
|
|
@@ -48707,6 +48707,28 @@ const openapi = {
|
|
|
48707
48707
|
default: {},
|
|
48708
48708
|
description: 'Configuration for the manage feature.',
|
|
48709
48709
|
properties: {
|
|
48710
|
+
device_management_confirmation: {
|
|
48711
|
+
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 ',
|
|
48712
|
+
properties: {
|
|
48713
|
+
body: {
|
|
48714
|
+
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.',
|
|
48715
|
+
type: 'string',
|
|
48716
|
+
},
|
|
48717
|
+
cancel_button_label: {
|
|
48718
|
+
description: 'Custom label for the cancel button.',
|
|
48719
|
+
type: 'string',
|
|
48720
|
+
},
|
|
48721
|
+
confirm_button_label: {
|
|
48722
|
+
description: 'Custom label for the confirm button.',
|
|
48723
|
+
type: 'string',
|
|
48724
|
+
},
|
|
48725
|
+
title: {
|
|
48726
|
+
description: 'Custom title for the confirmation modal.',
|
|
48727
|
+
type: 'string',
|
|
48728
|
+
},
|
|
48729
|
+
},
|
|
48730
|
+
type: 'object',
|
|
48731
|
+
},
|
|
48710
48732
|
events: {
|
|
48711
48733
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
48712
48734
|
properties: {
|
|
@@ -66544,6 +66566,9 @@ const openapi = {
|
|
|
66544
66566
|
},
|
|
66545
66567
|
feature_flags: {
|
|
66546
66568
|
properties: {
|
|
66569
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66570
|
+
type: 'boolean',
|
|
66571
|
+
},
|
|
66547
66572
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66548
66573
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
66549
66574
|
type: 'boolean',
|
|
@@ -66613,6 +66638,28 @@ const openapi = {
|
|
|
66613
66638
|
},
|
|
66614
66639
|
description: 'Configuration for the manage feature.',
|
|
66615
66640
|
properties: {
|
|
66641
|
+
device_management_confirmation: {
|
|
66642
|
+
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 ',
|
|
66643
|
+
properties: {
|
|
66644
|
+
body: {
|
|
66645
|
+
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.',
|
|
66646
|
+
type: 'string',
|
|
66647
|
+
},
|
|
66648
|
+
cancel_button_label: {
|
|
66649
|
+
description: 'Custom label for the cancel button.',
|
|
66650
|
+
type: 'string',
|
|
66651
|
+
},
|
|
66652
|
+
confirm_button_label: {
|
|
66653
|
+
description: 'Custom label for the confirm button.',
|
|
66654
|
+
type: 'string',
|
|
66655
|
+
},
|
|
66656
|
+
title: {
|
|
66657
|
+
description: 'Custom title for the confirmation modal.',
|
|
66658
|
+
type: 'string',
|
|
66659
|
+
},
|
|
66660
|
+
},
|
|
66661
|
+
type: 'object',
|
|
66662
|
+
},
|
|
66616
66663
|
events: {
|
|
66617
66664
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
66618
66665
|
properties: {
|
|
@@ -66938,6 +66985,9 @@ const openapi = {
|
|
|
66938
66985
|
},
|
|
66939
66986
|
feature_flags: {
|
|
66940
66987
|
properties: {
|
|
66988
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66989
|
+
type: 'boolean',
|
|
66990
|
+
},
|
|
66941
66991
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66942
66992
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
66943
66993
|
type: 'boolean',
|
|
@@ -67007,6 +67057,28 @@ const openapi = {
|
|
|
67007
67057
|
},
|
|
67008
67058
|
description: 'Configuration for the manage feature.',
|
|
67009
67059
|
properties: {
|
|
67060
|
+
device_management_confirmation: {
|
|
67061
|
+
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 ',
|
|
67062
|
+
properties: {
|
|
67063
|
+
body: {
|
|
67064
|
+
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.',
|
|
67065
|
+
type: 'string',
|
|
67066
|
+
},
|
|
67067
|
+
cancel_button_label: {
|
|
67068
|
+
description: 'Custom label for the cancel button.',
|
|
67069
|
+
type: 'string',
|
|
67070
|
+
},
|
|
67071
|
+
confirm_button_label: {
|
|
67072
|
+
description: 'Custom label for the confirm button.',
|
|
67073
|
+
type: 'string',
|
|
67074
|
+
},
|
|
67075
|
+
title: {
|
|
67076
|
+
description: 'Custom title for the confirmation modal.',
|
|
67077
|
+
type: 'string',
|
|
67078
|
+
},
|
|
67079
|
+
},
|
|
67080
|
+
type: 'object',
|
|
67081
|
+
},
|
|
67010
67082
|
events: {
|
|
67011
67083
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67012
67084
|
properties: {
|
|
@@ -67361,6 +67433,28 @@ const openapi = {
|
|
|
67361
67433
|
default: {},
|
|
67362
67434
|
description: 'Configuration for the manage feature.',
|
|
67363
67435
|
properties: {
|
|
67436
|
+
device_management_confirmation: {
|
|
67437
|
+
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 ',
|
|
67438
|
+
properties: {
|
|
67439
|
+
body: {
|
|
67440
|
+
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.',
|
|
67441
|
+
type: 'string',
|
|
67442
|
+
},
|
|
67443
|
+
cancel_button_label: {
|
|
67444
|
+
description: 'Custom label for the cancel button.',
|
|
67445
|
+
type: 'string',
|
|
67446
|
+
},
|
|
67447
|
+
confirm_button_label: {
|
|
67448
|
+
description: 'Custom label for the confirm button.',
|
|
67449
|
+
type: 'string',
|
|
67450
|
+
},
|
|
67451
|
+
title: {
|
|
67452
|
+
description: 'Custom title for the confirmation modal.',
|
|
67453
|
+
type: 'string',
|
|
67454
|
+
},
|
|
67455
|
+
},
|
|
67456
|
+
type: 'object',
|
|
67457
|
+
},
|
|
67364
67458
|
events: {
|
|
67365
67459
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67366
67460
|
properties: {
|
|
@@ -67717,6 +67811,28 @@ const openapi = {
|
|
|
67717
67811
|
default: {},
|
|
67718
67812
|
description: 'Configuration for the manage feature.',
|
|
67719
67813
|
properties: {
|
|
67814
|
+
device_management_confirmation: {
|
|
67815
|
+
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 ',
|
|
67816
|
+
properties: {
|
|
67817
|
+
body: {
|
|
67818
|
+
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.',
|
|
67819
|
+
type: 'string',
|
|
67820
|
+
},
|
|
67821
|
+
cancel_button_label: {
|
|
67822
|
+
description: 'Custom label for the cancel button.',
|
|
67823
|
+
type: 'string',
|
|
67824
|
+
},
|
|
67825
|
+
confirm_button_label: {
|
|
67826
|
+
description: 'Custom label for the confirm button.',
|
|
67827
|
+
type: 'string',
|
|
67828
|
+
},
|
|
67829
|
+
title: {
|
|
67830
|
+
description: 'Custom title for the confirmation modal.',
|
|
67831
|
+
type: 'string',
|
|
67832
|
+
},
|
|
67833
|
+
},
|
|
67834
|
+
type: 'object',
|
|
67835
|
+
},
|
|
67720
67836
|
events: {
|
|
67721
67837
|
description: 'Configuration for event type filtering in the manage feature.',
|
|
67722
67838
|
properties: {
|