@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
package/dist/connect.d.cts
CHANGED
|
@@ -71477,6 +71477,19 @@ type Routes = {
|
|
|
71477
71477
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
71478
71478
|
default_events?: string[] | undefined;
|
|
71479
71479
|
} | undefined;
|
|
71480
|
+
/**
|
|
71481
|
+
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.
|
|
71482
|
+
*/
|
|
71483
|
+
device_management_confirmation?: {
|
|
71484
|
+
/** Custom title for the confirmation modal. */
|
|
71485
|
+
title?: string | undefined;
|
|
71486
|
+
/** 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. */
|
|
71487
|
+
body?: string | undefined;
|
|
71488
|
+
/** Custom label for the confirm button. */
|
|
71489
|
+
confirm_button_label?: string | undefined;
|
|
71490
|
+
/** Custom label for the cancel button. */
|
|
71491
|
+
cancel_button_label?: string | undefined;
|
|
71492
|
+
} | undefined;
|
|
71480
71493
|
};
|
|
71481
71494
|
/** Configuration for the manage devices feature.
|
|
71482
71495
|
---
|
|
@@ -110540,6 +110553,19 @@ type Routes = {
|
|
|
110540
110553
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
110541
110554
|
default_events?: string[] | undefined;
|
|
110542
110555
|
} | undefined;
|
|
110556
|
+
/**
|
|
110557
|
+
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.
|
|
110558
|
+
*/
|
|
110559
|
+
device_management_confirmation?: {
|
|
110560
|
+
/** Custom title for the confirmation modal. */
|
|
110561
|
+
title?: string | undefined;
|
|
110562
|
+
/** 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. */
|
|
110563
|
+
body?: string | undefined;
|
|
110564
|
+
/** Custom label for the confirm button. */
|
|
110565
|
+
confirm_button_label?: string | undefined;
|
|
110566
|
+
/** Custom label for the cancel button. */
|
|
110567
|
+
cancel_button_label?: string | undefined;
|
|
110568
|
+
} | undefined;
|
|
110543
110569
|
};
|
|
110544
110570
|
/** Configuration for the manage devices feature.
|
|
110545
110571
|
---
|
|
@@ -110625,6 +110651,7 @@ type Routes = {
|
|
|
110625
110651
|
feature_flags?: {
|
|
110626
110652
|
RESERVATION_UI_V2?: boolean | undefined;
|
|
110627
110653
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined;
|
|
110654
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL?: boolean | undefined;
|
|
110628
110655
|
} | undefined;
|
|
110629
110656
|
};
|
|
110630
110657
|
};
|
|
@@ -110666,6 +110693,19 @@ type Routes = {
|
|
|
110666
110693
|
/** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
|
|
110667
110694
|
default_events?: string[] | undefined;
|
|
110668
110695
|
} | undefined;
|
|
110696
|
+
/**
|
|
110697
|
+
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.
|
|
110698
|
+
*/
|
|
110699
|
+
device_management_confirmation?: {
|
|
110700
|
+
/** Custom title for the confirmation modal. */
|
|
110701
|
+
title?: string | undefined;
|
|
110702
|
+
/** 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. */
|
|
110703
|
+
body?: string | undefined;
|
|
110704
|
+
/** Custom label for the confirm button. */
|
|
110705
|
+
confirm_button_label?: string | undefined;
|
|
110706
|
+
/** Custom label for the cancel button. */
|
|
110707
|
+
cancel_button_label?: string | undefined;
|
|
110708
|
+
} | undefined;
|
|
110669
110709
|
};
|
|
110670
110710
|
/** Configuration for the manage devices feature.
|
|
110671
110711
|
---
|
package/dist/index.cjs
CHANGED
|
@@ -56073,6 +56073,28 @@ var openapi = {
|
|
|
56073
56073
|
default: {},
|
|
56074
56074
|
description: "Configuration for the manage feature.",
|
|
56075
56075
|
properties: {
|
|
56076
|
+
device_management_confirmation: {
|
|
56077
|
+
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 ",
|
|
56078
|
+
properties: {
|
|
56079
|
+
body: {
|
|
56080
|
+
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.",
|
|
56081
|
+
type: "string"
|
|
56082
|
+
},
|
|
56083
|
+
cancel_button_label: {
|
|
56084
|
+
description: "Custom label for the cancel button.",
|
|
56085
|
+
type: "string"
|
|
56086
|
+
},
|
|
56087
|
+
confirm_button_label: {
|
|
56088
|
+
description: "Custom label for the confirm button.",
|
|
56089
|
+
type: "string"
|
|
56090
|
+
},
|
|
56091
|
+
title: {
|
|
56092
|
+
description: "Custom title for the confirmation modal.",
|
|
56093
|
+
type: "string"
|
|
56094
|
+
}
|
|
56095
|
+
},
|
|
56096
|
+
type: "object"
|
|
56097
|
+
},
|
|
56076
56098
|
events: {
|
|
56077
56099
|
description: "Configuration for event type filtering in the manage feature.",
|
|
56078
56100
|
properties: {
|
|
@@ -73910,6 +73932,9 @@ var openapi = {
|
|
|
73910
73932
|
},
|
|
73911
73933
|
feature_flags: {
|
|
73912
73934
|
properties: {
|
|
73935
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
73936
|
+
type: "boolean"
|
|
73937
|
+
},
|
|
73913
73938
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
73914
73939
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
73915
73940
|
type: "boolean"
|
|
@@ -73979,6 +74004,28 @@ var openapi = {
|
|
|
73979
74004
|
},
|
|
73980
74005
|
description: "Configuration for the manage feature.",
|
|
73981
74006
|
properties: {
|
|
74007
|
+
device_management_confirmation: {
|
|
74008
|
+
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 ",
|
|
74009
|
+
properties: {
|
|
74010
|
+
body: {
|
|
74011
|
+
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.",
|
|
74012
|
+
type: "string"
|
|
74013
|
+
},
|
|
74014
|
+
cancel_button_label: {
|
|
74015
|
+
description: "Custom label for the cancel button.",
|
|
74016
|
+
type: "string"
|
|
74017
|
+
},
|
|
74018
|
+
confirm_button_label: {
|
|
74019
|
+
description: "Custom label for the confirm button.",
|
|
74020
|
+
type: "string"
|
|
74021
|
+
},
|
|
74022
|
+
title: {
|
|
74023
|
+
description: "Custom title for the confirmation modal.",
|
|
74024
|
+
type: "string"
|
|
74025
|
+
}
|
|
74026
|
+
},
|
|
74027
|
+
type: "object"
|
|
74028
|
+
},
|
|
73982
74029
|
events: {
|
|
73983
74030
|
description: "Configuration for event type filtering in the manage feature.",
|
|
73984
74031
|
properties: {
|
|
@@ -74304,6 +74351,9 @@ var openapi = {
|
|
|
74304
74351
|
},
|
|
74305
74352
|
feature_flags: {
|
|
74306
74353
|
properties: {
|
|
74354
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
74355
|
+
type: "boolean"
|
|
74356
|
+
},
|
|
74307
74357
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
74308
74358
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
74309
74359
|
type: "boolean"
|
|
@@ -74373,6 +74423,28 @@ var openapi = {
|
|
|
74373
74423
|
},
|
|
74374
74424
|
description: "Configuration for the manage feature.",
|
|
74375
74425
|
properties: {
|
|
74426
|
+
device_management_confirmation: {
|
|
74427
|
+
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 ",
|
|
74428
|
+
properties: {
|
|
74429
|
+
body: {
|
|
74430
|
+
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.",
|
|
74431
|
+
type: "string"
|
|
74432
|
+
},
|
|
74433
|
+
cancel_button_label: {
|
|
74434
|
+
description: "Custom label for the cancel button.",
|
|
74435
|
+
type: "string"
|
|
74436
|
+
},
|
|
74437
|
+
confirm_button_label: {
|
|
74438
|
+
description: "Custom label for the confirm button.",
|
|
74439
|
+
type: "string"
|
|
74440
|
+
},
|
|
74441
|
+
title: {
|
|
74442
|
+
description: "Custom title for the confirmation modal.",
|
|
74443
|
+
type: "string"
|
|
74444
|
+
}
|
|
74445
|
+
},
|
|
74446
|
+
type: "object"
|
|
74447
|
+
},
|
|
74376
74448
|
events: {
|
|
74377
74449
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74378
74450
|
properties: {
|
|
@@ -74727,6 +74799,28 @@ var openapi = {
|
|
|
74727
74799
|
default: {},
|
|
74728
74800
|
description: "Configuration for the manage feature.",
|
|
74729
74801
|
properties: {
|
|
74802
|
+
device_management_confirmation: {
|
|
74803
|
+
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 ",
|
|
74804
|
+
properties: {
|
|
74805
|
+
body: {
|
|
74806
|
+
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.",
|
|
74807
|
+
type: "string"
|
|
74808
|
+
},
|
|
74809
|
+
cancel_button_label: {
|
|
74810
|
+
description: "Custom label for the cancel button.",
|
|
74811
|
+
type: "string"
|
|
74812
|
+
},
|
|
74813
|
+
confirm_button_label: {
|
|
74814
|
+
description: "Custom label for the confirm button.",
|
|
74815
|
+
type: "string"
|
|
74816
|
+
},
|
|
74817
|
+
title: {
|
|
74818
|
+
description: "Custom title for the confirmation modal.",
|
|
74819
|
+
type: "string"
|
|
74820
|
+
}
|
|
74821
|
+
},
|
|
74822
|
+
type: "object"
|
|
74823
|
+
},
|
|
74730
74824
|
events: {
|
|
74731
74825
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74732
74826
|
properties: {
|
|
@@ -75083,6 +75177,28 @@ var openapi = {
|
|
|
75083
75177
|
default: {},
|
|
75084
75178
|
description: "Configuration for the manage feature.",
|
|
75085
75179
|
properties: {
|
|
75180
|
+
device_management_confirmation: {
|
|
75181
|
+
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 ",
|
|
75182
|
+
properties: {
|
|
75183
|
+
body: {
|
|
75184
|
+
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.",
|
|
75185
|
+
type: "string"
|
|
75186
|
+
},
|
|
75187
|
+
cancel_button_label: {
|
|
75188
|
+
description: "Custom label for the cancel button.",
|
|
75189
|
+
type: "string"
|
|
75190
|
+
},
|
|
75191
|
+
confirm_button_label: {
|
|
75192
|
+
description: "Custom label for the confirm button.",
|
|
75193
|
+
type: "string"
|
|
75194
|
+
},
|
|
75195
|
+
title: {
|
|
75196
|
+
description: "Custom title for the confirmation modal.",
|
|
75197
|
+
type: "string"
|
|
75198
|
+
}
|
|
75199
|
+
},
|
|
75200
|
+
type: "object"
|
|
75201
|
+
},
|
|
75086
75202
|
events: {
|
|
75087
75203
|
description: "Configuration for event type filtering in the manage feature.",
|
|
75088
75204
|
properties: {
|