@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
package/dist/connect.cjs
CHANGED
|
@@ -5469,6 +5469,10 @@ var customer_portal_theme = zod.z.object({
|
|
|
5469
5469
|
font_family: zod.z.string().optional(),
|
|
5470
5470
|
mono_font_family: zod.z.string().optional()
|
|
5471
5471
|
});
|
|
5472
|
+
var message_overrides = zod.z.record(
|
|
5473
|
+
zod.z.string(),
|
|
5474
|
+
zod.z.record(zod.z.string(), zod.z.string())
|
|
5475
|
+
);
|
|
5472
5476
|
var customization_profile = zod.z.object({
|
|
5473
5477
|
workspace_id: zod.z.string().uuid(),
|
|
5474
5478
|
name: zod.z.string().nullable(),
|
|
@@ -5477,7 +5481,8 @@ var customization_profile = zod.z.object({
|
|
|
5477
5481
|
logo_url: zod.z.string().url().optional(),
|
|
5478
5482
|
primary_color: zod.z.string().optional(),
|
|
5479
5483
|
secondary_color: zod.z.string().optional(),
|
|
5480
|
-
customer_portal_theme: customer_portal_theme.optional()
|
|
5484
|
+
customer_portal_theme: customer_portal_theme.optional(),
|
|
5485
|
+
message_overrides: message_overrides.optional()
|
|
5481
5486
|
}).describe(`
|
|
5482
5487
|
---
|
|
5483
5488
|
title: Customization Profile
|
|
@@ -19023,6 +19028,13 @@ var openapi = {
|
|
|
19023
19028
|
},
|
|
19024
19029
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
19025
19030
|
logo_url: { format: "uri", type: "string" },
|
|
19031
|
+
message_overrides: {
|
|
19032
|
+
additionalProperties: {
|
|
19033
|
+
additionalProperties: { type: "string" },
|
|
19034
|
+
type: "object"
|
|
19035
|
+
},
|
|
19036
|
+
type: "object"
|
|
19037
|
+
},
|
|
19026
19038
|
name: { nullable: true, type: "string" },
|
|
19027
19039
|
primary_color: { type: "string" },
|
|
19028
19040
|
secondary_color: { type: "string" },
|
|
@@ -56073,6 +56085,28 @@ var openapi = {
|
|
|
56073
56085
|
default: {},
|
|
56074
56086
|
description: "Configuration for the manage feature.",
|
|
56075
56087
|
properties: {
|
|
56088
|
+
device_management_confirmation: {
|
|
56089
|
+
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 ",
|
|
56090
|
+
properties: {
|
|
56091
|
+
body: {
|
|
56092
|
+
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.",
|
|
56093
|
+
type: "string"
|
|
56094
|
+
},
|
|
56095
|
+
cancel_button_label: {
|
|
56096
|
+
description: "Custom label for the cancel button.",
|
|
56097
|
+
type: "string"
|
|
56098
|
+
},
|
|
56099
|
+
confirm_button_label: {
|
|
56100
|
+
description: "Custom label for the confirm button.",
|
|
56101
|
+
type: "string"
|
|
56102
|
+
},
|
|
56103
|
+
title: {
|
|
56104
|
+
description: "Custom title for the confirmation modal.",
|
|
56105
|
+
type: "string"
|
|
56106
|
+
}
|
|
56107
|
+
},
|
|
56108
|
+
type: "object"
|
|
56109
|
+
},
|
|
56076
56110
|
events: {
|
|
56077
56111
|
description: "Configuration for event type filtering in the manage feature.",
|
|
56078
56112
|
properties: {
|
|
@@ -73910,6 +73944,9 @@ var openapi = {
|
|
|
73910
73944
|
},
|
|
73911
73945
|
feature_flags: {
|
|
73912
73946
|
properties: {
|
|
73947
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
73948
|
+
type: "boolean"
|
|
73949
|
+
},
|
|
73913
73950
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
73914
73951
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
73915
73952
|
type: "boolean"
|
|
@@ -73979,6 +74016,28 @@ var openapi = {
|
|
|
73979
74016
|
},
|
|
73980
74017
|
description: "Configuration for the manage feature.",
|
|
73981
74018
|
properties: {
|
|
74019
|
+
device_management_confirmation: {
|
|
74020
|
+
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 ",
|
|
74021
|
+
properties: {
|
|
74022
|
+
body: {
|
|
74023
|
+
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.",
|
|
74024
|
+
type: "string"
|
|
74025
|
+
},
|
|
74026
|
+
cancel_button_label: {
|
|
74027
|
+
description: "Custom label for the cancel button.",
|
|
74028
|
+
type: "string"
|
|
74029
|
+
},
|
|
74030
|
+
confirm_button_label: {
|
|
74031
|
+
description: "Custom label for the confirm button.",
|
|
74032
|
+
type: "string"
|
|
74033
|
+
},
|
|
74034
|
+
title: {
|
|
74035
|
+
description: "Custom title for the confirmation modal.",
|
|
74036
|
+
type: "string"
|
|
74037
|
+
}
|
|
74038
|
+
},
|
|
74039
|
+
type: "object"
|
|
74040
|
+
},
|
|
73982
74041
|
events: {
|
|
73983
74042
|
description: "Configuration for event type filtering in the manage feature.",
|
|
73984
74043
|
properties: {
|
|
@@ -74304,6 +74363,9 @@ var openapi = {
|
|
|
74304
74363
|
},
|
|
74305
74364
|
feature_flags: {
|
|
74306
74365
|
properties: {
|
|
74366
|
+
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
74367
|
+
type: "boolean"
|
|
74368
|
+
},
|
|
74307
74369
|
RESERVATION_UI_V2: { type: "boolean" },
|
|
74308
74370
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
74309
74371
|
type: "boolean"
|
|
@@ -74373,6 +74435,28 @@ var openapi = {
|
|
|
74373
74435
|
},
|
|
74374
74436
|
description: "Configuration for the manage feature.",
|
|
74375
74437
|
properties: {
|
|
74438
|
+
device_management_confirmation: {
|
|
74439
|
+
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 ",
|
|
74440
|
+
properties: {
|
|
74441
|
+
body: {
|
|
74442
|
+
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.",
|
|
74443
|
+
type: "string"
|
|
74444
|
+
},
|
|
74445
|
+
cancel_button_label: {
|
|
74446
|
+
description: "Custom label for the cancel button.",
|
|
74447
|
+
type: "string"
|
|
74448
|
+
},
|
|
74449
|
+
confirm_button_label: {
|
|
74450
|
+
description: "Custom label for the confirm button.",
|
|
74451
|
+
type: "string"
|
|
74452
|
+
},
|
|
74453
|
+
title: {
|
|
74454
|
+
description: "Custom title for the confirmation modal.",
|
|
74455
|
+
type: "string"
|
|
74456
|
+
}
|
|
74457
|
+
},
|
|
74458
|
+
type: "object"
|
|
74459
|
+
},
|
|
74376
74460
|
events: {
|
|
74377
74461
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74378
74462
|
properties: {
|
|
@@ -74727,6 +74811,28 @@ var openapi = {
|
|
|
74727
74811
|
default: {},
|
|
74728
74812
|
description: "Configuration for the manage feature.",
|
|
74729
74813
|
properties: {
|
|
74814
|
+
device_management_confirmation: {
|
|
74815
|
+
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 ",
|
|
74816
|
+
properties: {
|
|
74817
|
+
body: {
|
|
74818
|
+
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.",
|
|
74819
|
+
type: "string"
|
|
74820
|
+
},
|
|
74821
|
+
cancel_button_label: {
|
|
74822
|
+
description: "Custom label for the cancel button.",
|
|
74823
|
+
type: "string"
|
|
74824
|
+
},
|
|
74825
|
+
confirm_button_label: {
|
|
74826
|
+
description: "Custom label for the confirm button.",
|
|
74827
|
+
type: "string"
|
|
74828
|
+
},
|
|
74829
|
+
title: {
|
|
74830
|
+
description: "Custom title for the confirmation modal.",
|
|
74831
|
+
type: "string"
|
|
74832
|
+
}
|
|
74833
|
+
},
|
|
74834
|
+
type: "object"
|
|
74835
|
+
},
|
|
74730
74836
|
events: {
|
|
74731
74837
|
description: "Configuration for event type filtering in the manage feature.",
|
|
74732
74838
|
properties: {
|
|
@@ -75083,6 +75189,28 @@ var openapi = {
|
|
|
75083
75189
|
default: {},
|
|
75084
75190
|
description: "Configuration for the manage feature.",
|
|
75085
75191
|
properties: {
|
|
75192
|
+
device_management_confirmation: {
|
|
75193
|
+
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 ",
|
|
75194
|
+
properties: {
|
|
75195
|
+
body: {
|
|
75196
|
+
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.",
|
|
75197
|
+
type: "string"
|
|
75198
|
+
},
|
|
75199
|
+
cancel_button_label: {
|
|
75200
|
+
description: "Custom label for the cancel button.",
|
|
75201
|
+
type: "string"
|
|
75202
|
+
},
|
|
75203
|
+
confirm_button_label: {
|
|
75204
|
+
description: "Custom label for the confirm button.",
|
|
75205
|
+
type: "string"
|
|
75206
|
+
},
|
|
75207
|
+
title: {
|
|
75208
|
+
description: "Custom title for the confirmation modal.",
|
|
75209
|
+
type: "string"
|
|
75210
|
+
}
|
|
75211
|
+
},
|
|
75212
|
+
type: "object"
|
|
75213
|
+
},
|
|
75086
75214
|
events: {
|
|
75087
75215
|
description: "Configuration for event type filtering in the manage feature.",
|
|
75088
75216
|
properties: {
|
|
@@ -87879,6 +88007,13 @@ var openapi = {
|
|
|
87879
88007
|
},
|
|
87880
88008
|
type: "object"
|
|
87881
88009
|
},
|
|
88010
|
+
message_overrides: {
|
|
88011
|
+
additionalProperties: {
|
|
88012
|
+
additionalProperties: { type: "string" },
|
|
88013
|
+
type: "object"
|
|
88014
|
+
},
|
|
88015
|
+
type: "object"
|
|
88016
|
+
},
|
|
87882
88017
|
name: { default: null, nullable: true, type: "string" },
|
|
87883
88018
|
primary_color: { type: "string" },
|
|
87884
88019
|
secondary_color: { type: "string" }
|
|
@@ -88159,6 +88294,14 @@ var openapi = {
|
|
|
88159
88294
|
type: "object"
|
|
88160
88295
|
},
|
|
88161
88296
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88297
|
+
message_overrides: {
|
|
88298
|
+
additionalProperties: {
|
|
88299
|
+
additionalProperties: { type: "string" },
|
|
88300
|
+
type: "object"
|
|
88301
|
+
},
|
|
88302
|
+
nullable: true,
|
|
88303
|
+
type: "object"
|
|
88304
|
+
},
|
|
88162
88305
|
name: { nullable: true, type: "string" },
|
|
88163
88306
|
primary_color: { type: "string" },
|
|
88164
88307
|
secondary_color: { type: "string" }
|
|
@@ -88220,6 +88363,14 @@ var openapi = {
|
|
|
88220
88363
|
type: "object"
|
|
88221
88364
|
},
|
|
88222
88365
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88366
|
+
message_overrides: {
|
|
88367
|
+
additionalProperties: {
|
|
88368
|
+
additionalProperties: { type: "string" },
|
|
88369
|
+
type: "object"
|
|
88370
|
+
},
|
|
88371
|
+
nullable: true,
|
|
88372
|
+
type: "object"
|
|
88373
|
+
},
|
|
88223
88374
|
name: { nullable: true, type: "string" },
|
|
88224
88375
|
primary_color: { type: "string" },
|
|
88225
88376
|
secondary_color: { type: "string" }
|