@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
|
@@ -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
|
---
|
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
|
|
@@ -53776,6 +53776,33 @@ const openapi: OpenAPISpec = {
|
|
|
53776
53776
|
description:
|
|
53777
53777
|
'Configuration for the manage feature.',
|
|
53778
53778
|
properties: {
|
|
53779
|
+
device_management_confirmation: {
|
|
53780
|
+
description:
|
|
53781
|
+
'\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 ',
|
|
53782
|
+
properties: {
|
|
53783
|
+
body: {
|
|
53784
|
+
description:
|
|
53785
|
+
'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.',
|
|
53786
|
+
type: 'string',
|
|
53787
|
+
},
|
|
53788
|
+
cancel_button_label: {
|
|
53789
|
+
description:
|
|
53790
|
+
'Custom label for the cancel button.',
|
|
53791
|
+
type: 'string',
|
|
53792
|
+
},
|
|
53793
|
+
confirm_button_label: {
|
|
53794
|
+
description:
|
|
53795
|
+
'Custom label for the confirm button.',
|
|
53796
|
+
type: 'string',
|
|
53797
|
+
},
|
|
53798
|
+
title: {
|
|
53799
|
+
description:
|
|
53800
|
+
'Custom title for the confirmation modal.',
|
|
53801
|
+
type: 'string',
|
|
53802
|
+
},
|
|
53803
|
+
},
|
|
53804
|
+
type: 'object',
|
|
53805
|
+
},
|
|
53779
53806
|
events: {
|
|
53780
53807
|
description:
|
|
53781
53808
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -72368,6 +72395,9 @@ const openapi: OpenAPISpec = {
|
|
|
72368
72395
|
},
|
|
72369
72396
|
feature_flags: {
|
|
72370
72397
|
properties: {
|
|
72398
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
72399
|
+
type: 'boolean',
|
|
72400
|
+
},
|
|
72371
72401
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
72372
72402
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
72373
72403
|
type: 'boolean',
|
|
@@ -72447,6 +72477,33 @@ const openapi: OpenAPISpec = {
|
|
|
72447
72477
|
description:
|
|
72448
72478
|
'Configuration for the manage feature.',
|
|
72449
72479
|
properties: {
|
|
72480
|
+
device_management_confirmation: {
|
|
72481
|
+
description:
|
|
72482
|
+
'\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 ',
|
|
72483
|
+
properties: {
|
|
72484
|
+
body: {
|
|
72485
|
+
description:
|
|
72486
|
+
'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.',
|
|
72487
|
+
type: 'string',
|
|
72488
|
+
},
|
|
72489
|
+
cancel_button_label: {
|
|
72490
|
+
description:
|
|
72491
|
+
'Custom label for the cancel button.',
|
|
72492
|
+
type: 'string',
|
|
72493
|
+
},
|
|
72494
|
+
confirm_button_label: {
|
|
72495
|
+
description:
|
|
72496
|
+
'Custom label for the confirm button.',
|
|
72497
|
+
type: 'string',
|
|
72498
|
+
},
|
|
72499
|
+
title: {
|
|
72500
|
+
description:
|
|
72501
|
+
'Custom title for the confirmation modal.',
|
|
72502
|
+
type: 'string',
|
|
72503
|
+
},
|
|
72504
|
+
},
|
|
72505
|
+
type: 'object',
|
|
72506
|
+
},
|
|
72450
72507
|
events: {
|
|
72451
72508
|
description:
|
|
72452
72509
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -72795,6 +72852,9 @@ const openapi: OpenAPISpec = {
|
|
|
72795
72852
|
},
|
|
72796
72853
|
feature_flags: {
|
|
72797
72854
|
properties: {
|
|
72855
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
72856
|
+
type: 'boolean',
|
|
72857
|
+
},
|
|
72798
72858
|
RESERVATION_UI_V2: { type: 'boolean' },
|
|
72799
72859
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
72800
72860
|
type: 'boolean',
|
|
@@ -72874,6 +72934,33 @@ const openapi: OpenAPISpec = {
|
|
|
72874
72934
|
description:
|
|
72875
72935
|
'Configuration for the manage feature.',
|
|
72876
72936
|
properties: {
|
|
72937
|
+
device_management_confirmation: {
|
|
72938
|
+
description:
|
|
72939
|
+
'\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 ',
|
|
72940
|
+
properties: {
|
|
72941
|
+
body: {
|
|
72942
|
+
description:
|
|
72943
|
+
'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.',
|
|
72944
|
+
type: 'string',
|
|
72945
|
+
},
|
|
72946
|
+
cancel_button_label: {
|
|
72947
|
+
description:
|
|
72948
|
+
'Custom label for the cancel button.',
|
|
72949
|
+
type: 'string',
|
|
72950
|
+
},
|
|
72951
|
+
confirm_button_label: {
|
|
72952
|
+
description:
|
|
72953
|
+
'Custom label for the confirm button.',
|
|
72954
|
+
type: 'string',
|
|
72955
|
+
},
|
|
72956
|
+
title: {
|
|
72957
|
+
description:
|
|
72958
|
+
'Custom title for the confirmation modal.',
|
|
72959
|
+
type: 'string',
|
|
72960
|
+
},
|
|
72961
|
+
},
|
|
72962
|
+
type: 'object',
|
|
72963
|
+
},
|
|
72877
72964
|
events: {
|
|
72878
72965
|
description:
|
|
72879
72966
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -73260,6 +73347,33 @@ const openapi: OpenAPISpec = {
|
|
|
73260
73347
|
description:
|
|
73261
73348
|
'Configuration for the manage feature.',
|
|
73262
73349
|
properties: {
|
|
73350
|
+
device_management_confirmation: {
|
|
73351
|
+
description:
|
|
73352
|
+
'\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 ',
|
|
73353
|
+
properties: {
|
|
73354
|
+
body: {
|
|
73355
|
+
description:
|
|
73356
|
+
'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.',
|
|
73357
|
+
type: 'string',
|
|
73358
|
+
},
|
|
73359
|
+
cancel_button_label: {
|
|
73360
|
+
description:
|
|
73361
|
+
'Custom label for the cancel button.',
|
|
73362
|
+
type: 'string',
|
|
73363
|
+
},
|
|
73364
|
+
confirm_button_label: {
|
|
73365
|
+
description:
|
|
73366
|
+
'Custom label for the confirm button.',
|
|
73367
|
+
type: 'string',
|
|
73368
|
+
},
|
|
73369
|
+
title: {
|
|
73370
|
+
description:
|
|
73371
|
+
'Custom title for the confirmation modal.',
|
|
73372
|
+
type: 'string',
|
|
73373
|
+
},
|
|
73374
|
+
},
|
|
73375
|
+
type: 'object',
|
|
73376
|
+
},
|
|
73263
73377
|
events: {
|
|
73264
73378
|
description:
|
|
73265
73379
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -73648,6 +73762,33 @@ const openapi: OpenAPISpec = {
|
|
|
73648
73762
|
description:
|
|
73649
73763
|
'Configuration for the manage feature.',
|
|
73650
73764
|
properties: {
|
|
73765
|
+
device_management_confirmation: {
|
|
73766
|
+
description:
|
|
73767
|
+
'\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 ',
|
|
73768
|
+
properties: {
|
|
73769
|
+
body: {
|
|
73770
|
+
description:
|
|
73771
|
+
'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.',
|
|
73772
|
+
type: 'string',
|
|
73773
|
+
},
|
|
73774
|
+
cancel_button_label: {
|
|
73775
|
+
description:
|
|
73776
|
+
'Custom label for the cancel button.',
|
|
73777
|
+
type: 'string',
|
|
73778
|
+
},
|
|
73779
|
+
confirm_button_label: {
|
|
73780
|
+
description:
|
|
73781
|
+
'Custom label for the confirm button.',
|
|
73782
|
+
type: 'string',
|
|
73783
|
+
},
|
|
73784
|
+
title: {
|
|
73785
|
+
description:
|
|
73786
|
+
'Custom title for the confirmation modal.',
|
|
73787
|
+
type: 'string',
|
|
73788
|
+
},
|
|
73789
|
+
},
|
|
73790
|
+
type: 'object',
|
|
73791
|
+
},
|
|
73651
73792
|
events: {
|
|
73652
73793
|
description:
|
|
73653
73794
|
'Configuration for event type filtering in the manage feature.',
|
|
@@ -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
|
---
|