@seamapi/types 1.596.0 → 1.598.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 +222 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +267 -13
- package/dist/index.cjs +222 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +436 -0
- package/lib/seam/connect/models/customer/customer-portal.js +22 -6
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +211 -0
- package/lib/seam/connect/openapi.js +222 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +38 -19
- package/src/lib/seam/connect/openapi.ts +268 -11
- package/src/lib/seam/connect/route-types.ts +62 -31
|
@@ -35457,7 +35457,7 @@ export default {
|
|
|
35457
35457
|
type: 'array',
|
|
35458
35458
|
},
|
|
35459
35459
|
expires_at: {
|
|
35460
|
-
description: 'Date and time at which the client session should expire
|
|
35460
|
+
description: 'Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it.',
|
|
35461
35461
|
format: 'date-time',
|
|
35462
35462
|
type: 'string',
|
|
35463
35463
|
},
|
|
@@ -37090,6 +37090,7 @@ export default {
|
|
|
37090
37090
|
},
|
|
37091
37091
|
connect: { exclude: false },
|
|
37092
37092
|
manage_devices: { exclude: false },
|
|
37093
|
+
manage_reservations: { exclude: false },
|
|
37093
37094
|
organize: { exclude: false },
|
|
37094
37095
|
},
|
|
37095
37096
|
is_embedded: false,
|
|
@@ -37147,11 +37148,45 @@ export default {
|
|
|
37147
37148
|
default: {},
|
|
37148
37149
|
description: 'Configuration for the manage devices feature.',
|
|
37149
37150
|
properties: {
|
|
37151
|
+
accepted_providers: {
|
|
37152
|
+
description: 'List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.',
|
|
37153
|
+
items: { type: 'string' },
|
|
37154
|
+
type: 'array',
|
|
37155
|
+
},
|
|
37150
37156
|
exclude: {
|
|
37151
37157
|
default: false,
|
|
37152
37158
|
description: 'Whether to exclude this feature from the portal.',
|
|
37153
37159
|
type: 'boolean',
|
|
37154
37160
|
},
|
|
37161
|
+
excluded_providers: {
|
|
37162
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
37163
|
+
items: { type: 'string' },
|
|
37164
|
+
type: 'array',
|
|
37165
|
+
},
|
|
37166
|
+
},
|
|
37167
|
+
type: 'object',
|
|
37168
|
+
},
|
|
37169
|
+
manage_reservations: {
|
|
37170
|
+
default: {},
|
|
37171
|
+
description: 'Configuration for the manage reservations feature.',
|
|
37172
|
+
properties: {
|
|
37173
|
+
exclude: {
|
|
37174
|
+
default: false,
|
|
37175
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
37176
|
+
type: 'boolean',
|
|
37177
|
+
},
|
|
37178
|
+
reservations: {
|
|
37179
|
+
default: { exclude: false },
|
|
37180
|
+
description: 'Configuration for the reservations feature.',
|
|
37181
|
+
properties: {
|
|
37182
|
+
exclude: {
|
|
37183
|
+
default: false,
|
|
37184
|
+
description: 'Indicates whether the customer can view reservations for their properties.',
|
|
37185
|
+
type: 'boolean',
|
|
37186
|
+
},
|
|
37187
|
+
},
|
|
37188
|
+
type: 'object',
|
|
37189
|
+
},
|
|
37155
37190
|
},
|
|
37156
37191
|
type: 'object',
|
|
37157
37192
|
},
|
|
@@ -47830,23 +47865,50 @@ export default {
|
|
|
47830
47865
|
type: 'string',
|
|
47831
47866
|
},
|
|
47832
47867
|
features: {
|
|
47868
|
+
default: { $ref: '#/components/schemas/access_code' },
|
|
47833
47869
|
properties: {
|
|
47834
47870
|
configure: {
|
|
47871
|
+
default: {
|
|
47872
|
+
$ref: '#/components/schemas/access_code',
|
|
47873
|
+
},
|
|
47874
|
+
description: 'Configuration for the configure feature.',
|
|
47835
47875
|
properties: {
|
|
47836
47876
|
allow_access_automation_rule_customization: {
|
|
47877
|
+
default: false,
|
|
47878
|
+
description: 'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
47837
47879
|
type: 'boolean',
|
|
47838
47880
|
},
|
|
47839
47881
|
allow_instant_key_customization: {
|
|
47882
|
+
default: false,
|
|
47883
|
+
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
47884
|
+
type: 'boolean',
|
|
47885
|
+
},
|
|
47886
|
+
exclude: {
|
|
47887
|
+
default: false,
|
|
47888
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
47840
47889
|
type: 'boolean',
|
|
47841
47890
|
},
|
|
47842
|
-
exclude: { type: 'boolean' },
|
|
47843
47891
|
},
|
|
47844
47892
|
type: 'object',
|
|
47845
47893
|
},
|
|
47846
47894
|
connect: {
|
|
47895
|
+
default: {
|
|
47896
|
+
$ref: '#/components/schemas/access_code',
|
|
47897
|
+
},
|
|
47898
|
+
description: 'Configuration for the connect accounts feature.',
|
|
47847
47899
|
properties: {
|
|
47848
|
-
|
|
47900
|
+
accepted_providers: {
|
|
47901
|
+
description: 'List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.',
|
|
47902
|
+
items: { type: 'string' },
|
|
47903
|
+
type: 'array',
|
|
47904
|
+
},
|
|
47905
|
+
exclude: {
|
|
47906
|
+
default: false,
|
|
47907
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
47908
|
+
type: 'boolean',
|
|
47909
|
+
},
|
|
47849
47910
|
excluded_providers: {
|
|
47911
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
47850
47912
|
items: { type: 'string' },
|
|
47851
47913
|
type: 'array',
|
|
47852
47914
|
},
|
|
@@ -47854,18 +47916,79 @@ export default {
|
|
|
47854
47916
|
type: 'object',
|
|
47855
47917
|
},
|
|
47856
47918
|
manage_devices: {
|
|
47857
|
-
|
|
47919
|
+
default: {
|
|
47920
|
+
$ref: '#/components/schemas/access_code',
|
|
47921
|
+
},
|
|
47922
|
+
description: 'Configuration for the manage devices feature.',
|
|
47923
|
+
properties: {
|
|
47924
|
+
accepted_providers: {
|
|
47925
|
+
description: 'List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.',
|
|
47926
|
+
items: { type: 'string' },
|
|
47927
|
+
type: 'array',
|
|
47928
|
+
},
|
|
47929
|
+
exclude: {
|
|
47930
|
+
default: false,
|
|
47931
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
47932
|
+
type: 'boolean',
|
|
47933
|
+
},
|
|
47934
|
+
excluded_providers: {
|
|
47935
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
47936
|
+
items: { type: 'string' },
|
|
47937
|
+
type: 'array',
|
|
47938
|
+
},
|
|
47939
|
+
},
|
|
47940
|
+
type: 'object',
|
|
47941
|
+
},
|
|
47942
|
+
manage_reservations: {
|
|
47943
|
+
default: {
|
|
47944
|
+
$ref: '#/components/schemas/access_code',
|
|
47945
|
+
},
|
|
47946
|
+
description: 'Configuration for the manage reservations feature.',
|
|
47947
|
+
properties: {
|
|
47948
|
+
exclude: {
|
|
47949
|
+
default: false,
|
|
47950
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
47951
|
+
type: 'boolean',
|
|
47952
|
+
},
|
|
47953
|
+
reservations: {
|
|
47954
|
+
default: { exclude: false },
|
|
47955
|
+
description: 'Configuration for the reservations feature.',
|
|
47956
|
+
properties: {
|
|
47957
|
+
exclude: {
|
|
47958
|
+
default: false,
|
|
47959
|
+
description: 'Indicates whether the customer can view reservations for their properties.',
|
|
47960
|
+
type: 'boolean',
|
|
47961
|
+
},
|
|
47962
|
+
},
|
|
47963
|
+
type: 'object',
|
|
47964
|
+
},
|
|
47965
|
+
},
|
|
47858
47966
|
type: 'object',
|
|
47859
47967
|
},
|
|
47860
47968
|
organize: {
|
|
47861
|
-
|
|
47969
|
+
default: {
|
|
47970
|
+
$ref: '#/components/schemas/access_code',
|
|
47971
|
+
},
|
|
47972
|
+
description: 'Configuration for the organize feature.',
|
|
47973
|
+
properties: {
|
|
47974
|
+
exclude: {
|
|
47975
|
+
default: false,
|
|
47976
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
47977
|
+
type: 'boolean',
|
|
47978
|
+
},
|
|
47979
|
+
},
|
|
47862
47980
|
type: 'object',
|
|
47863
47981
|
},
|
|
47864
47982
|
},
|
|
47865
47983
|
type: 'object',
|
|
47866
47984
|
},
|
|
47867
|
-
is_embedded: {
|
|
47985
|
+
is_embedded: {
|
|
47986
|
+
default: false,
|
|
47987
|
+
description: 'Whether the portal is embedded in another application.',
|
|
47988
|
+
type: 'boolean',
|
|
47989
|
+
},
|
|
47868
47990
|
landing_page: {
|
|
47991
|
+
description: 'Configuration for the landing page when the portal loads.',
|
|
47869
47992
|
properties: {
|
|
47870
47993
|
manage: {
|
|
47871
47994
|
oneOf: [
|
|
@@ -48040,23 +48163,50 @@ export default {
|
|
|
48040
48163
|
type: 'string',
|
|
48041
48164
|
},
|
|
48042
48165
|
features: {
|
|
48166
|
+
default: { $ref: '#/components/schemas/access_code' },
|
|
48043
48167
|
properties: {
|
|
48044
48168
|
configure: {
|
|
48169
|
+
default: {
|
|
48170
|
+
$ref: '#/components/schemas/access_code',
|
|
48171
|
+
},
|
|
48172
|
+
description: 'Configuration for the configure feature.',
|
|
48045
48173
|
properties: {
|
|
48046
48174
|
allow_access_automation_rule_customization: {
|
|
48175
|
+
default: false,
|
|
48176
|
+
description: 'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
48047
48177
|
type: 'boolean',
|
|
48048
48178
|
},
|
|
48049
48179
|
allow_instant_key_customization: {
|
|
48180
|
+
default: false,
|
|
48181
|
+
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
48182
|
+
type: 'boolean',
|
|
48183
|
+
},
|
|
48184
|
+
exclude: {
|
|
48185
|
+
default: false,
|
|
48186
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
48050
48187
|
type: 'boolean',
|
|
48051
48188
|
},
|
|
48052
|
-
exclude: { type: 'boolean' },
|
|
48053
48189
|
},
|
|
48054
48190
|
type: 'object',
|
|
48055
48191
|
},
|
|
48056
48192
|
connect: {
|
|
48193
|
+
default: {
|
|
48194
|
+
$ref: '#/components/schemas/access_code',
|
|
48195
|
+
},
|
|
48196
|
+
description: 'Configuration for the connect accounts feature.',
|
|
48057
48197
|
properties: {
|
|
48058
|
-
|
|
48198
|
+
accepted_providers: {
|
|
48199
|
+
description: 'List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.',
|
|
48200
|
+
items: { type: 'string' },
|
|
48201
|
+
type: 'array',
|
|
48202
|
+
},
|
|
48203
|
+
exclude: {
|
|
48204
|
+
default: false,
|
|
48205
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
48206
|
+
type: 'boolean',
|
|
48207
|
+
},
|
|
48059
48208
|
excluded_providers: {
|
|
48209
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
48060
48210
|
items: { type: 'string' },
|
|
48061
48211
|
type: 'array',
|
|
48062
48212
|
},
|
|
@@ -48064,18 +48214,79 @@ export default {
|
|
|
48064
48214
|
type: 'object',
|
|
48065
48215
|
},
|
|
48066
48216
|
manage_devices: {
|
|
48067
|
-
|
|
48217
|
+
default: {
|
|
48218
|
+
$ref: '#/components/schemas/access_code',
|
|
48219
|
+
},
|
|
48220
|
+
description: 'Configuration for the manage devices feature.',
|
|
48221
|
+
properties: {
|
|
48222
|
+
accepted_providers: {
|
|
48223
|
+
description: 'List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.',
|
|
48224
|
+
items: { type: 'string' },
|
|
48225
|
+
type: 'array',
|
|
48226
|
+
},
|
|
48227
|
+
exclude: {
|
|
48228
|
+
default: false,
|
|
48229
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
48230
|
+
type: 'boolean',
|
|
48231
|
+
},
|
|
48232
|
+
excluded_providers: {
|
|
48233
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
48234
|
+
items: { type: 'string' },
|
|
48235
|
+
type: 'array',
|
|
48236
|
+
},
|
|
48237
|
+
},
|
|
48238
|
+
type: 'object',
|
|
48239
|
+
},
|
|
48240
|
+
manage_reservations: {
|
|
48241
|
+
default: {
|
|
48242
|
+
$ref: '#/components/schemas/access_code',
|
|
48243
|
+
},
|
|
48244
|
+
description: 'Configuration for the manage reservations feature.',
|
|
48245
|
+
properties: {
|
|
48246
|
+
exclude: {
|
|
48247
|
+
default: false,
|
|
48248
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
48249
|
+
type: 'boolean',
|
|
48250
|
+
},
|
|
48251
|
+
reservations: {
|
|
48252
|
+
default: { exclude: false },
|
|
48253
|
+
description: 'Configuration for the reservations feature.',
|
|
48254
|
+
properties: {
|
|
48255
|
+
exclude: {
|
|
48256
|
+
default: false,
|
|
48257
|
+
description: 'Indicates whether the customer can view reservations for their properties.',
|
|
48258
|
+
type: 'boolean',
|
|
48259
|
+
},
|
|
48260
|
+
},
|
|
48261
|
+
type: 'object',
|
|
48262
|
+
},
|
|
48263
|
+
},
|
|
48068
48264
|
type: 'object',
|
|
48069
48265
|
},
|
|
48070
48266
|
organize: {
|
|
48071
|
-
|
|
48267
|
+
default: {
|
|
48268
|
+
$ref: '#/components/schemas/access_code',
|
|
48269
|
+
},
|
|
48270
|
+
description: 'Configuration for the organize feature.',
|
|
48271
|
+
properties: {
|
|
48272
|
+
exclude: {
|
|
48273
|
+
default: false,
|
|
48274
|
+
description: 'Whether to exclude this feature from the portal.',
|
|
48275
|
+
type: 'boolean',
|
|
48276
|
+
},
|
|
48277
|
+
},
|
|
48072
48278
|
type: 'object',
|
|
48073
48279
|
},
|
|
48074
48280
|
},
|
|
48075
48281
|
type: 'object',
|
|
48076
48282
|
},
|
|
48077
|
-
is_embedded: {
|
|
48283
|
+
is_embedded: {
|
|
48284
|
+
default: false,
|
|
48285
|
+
description: 'Whether the portal is embedded in another application.',
|
|
48286
|
+
type: 'boolean',
|
|
48287
|
+
},
|
|
48078
48288
|
landing_page: {
|
|
48289
|
+
description: 'Configuration for the landing page when the portal loads.',
|
|
48079
48290
|
properties: {
|
|
48080
48291
|
manage: {
|
|
48081
48292
|
oneOf: [
|