@seamapi/types 1.903.0 → 1.905.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 +74 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -3
- package/dist/index.cjs +74 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +6 -6
- package/lib/seam/connect/models/customer/customer-portal.js +12 -1
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.js +74 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -1
- package/src/lib/seam/connect/openapi.ts +75 -5
- package/src/lib/seam/connect/route-types.ts +45 -3
|
@@ -41312,7 +41312,7 @@ export type Routes = {
|
|
|
41312
41312
|
})) | undefined;
|
|
41313
41313
|
} | undefined;
|
|
41314
41314
|
/** The locale to use for the portal. */
|
|
41315
|
-
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
41315
|
+
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES' | 'de-DE' | 'nl-NL' | 'el-GR' | 'pl-PL' | 'ru-RU') | undefined;
|
|
41316
41316
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
41317
41317
|
exclude_locale_picker?: boolean;
|
|
41318
41318
|
/** The ID of the customization profile to use for the portal. */
|
|
@@ -80369,7 +80369,7 @@ export type Routes = {
|
|
|
80369
80369
|
})) | undefined;
|
|
80370
80370
|
} | undefined;
|
|
80371
80371
|
/** The locale to use for the portal. */
|
|
80372
|
-
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
80372
|
+
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES' | 'de-DE' | 'nl-NL' | 'el-GR' | 'pl-PL' | 'ru-RU') | undefined;
|
|
80373
80373
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
80374
80374
|
exclude_locale_picker?: boolean;
|
|
80375
80375
|
/** The ID of the customization profile to use for the portal. */
|
|
@@ -80495,7 +80495,7 @@ export type Routes = {
|
|
|
80495
80495
|
})) | undefined;
|
|
80496
80496
|
} | undefined) | undefined;
|
|
80497
80497
|
/** The locale to use for the portal. */
|
|
80498
|
-
locale?: (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined) | undefined;
|
|
80498
|
+
locale?: (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES' | 'de-DE' | 'nl-NL' | 'el-GR' | 'pl-PL' | 'ru-RU') | undefined) | undefined;
|
|
80499
80499
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
80500
80500
|
exclude_locale_picker?: boolean | undefined;
|
|
80501
80501
|
/** The ID of the customization profile to use for the portal. */
|
|
@@ -80603,6 +80603,8 @@ export type Routes = {
|
|
|
80603
80603
|
space_id?: string | undefined;
|
|
80604
80604
|
/** Filter reservations by the connected account whose connector discovered them. */
|
|
80605
80605
|
connected_account_id?: string | undefined;
|
|
80606
|
+
/** Filter reservations by the guest user identity ID. */
|
|
80607
|
+
user_identity_id?: string | undefined;
|
|
80606
80608
|
/** Maximum number of records to return per page. */
|
|
80607
80609
|
limit?: number;
|
|
80608
80610
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
package/package.json
CHANGED
|
@@ -123,7 +123,18 @@ export const portal_configuration_base = z.object({
|
|
|
123
123
|
.optional()
|
|
124
124
|
.describe('Configuration for the landing page when the portal loads.'),
|
|
125
125
|
locale: z
|
|
126
|
-
.enum([
|
|
126
|
+
.enum([
|
|
127
|
+
'en-US',
|
|
128
|
+
'pt-PT',
|
|
129
|
+
'fr-FR',
|
|
130
|
+
'it-IT',
|
|
131
|
+
'es-ES',
|
|
132
|
+
'de-DE',
|
|
133
|
+
'nl-NL',
|
|
134
|
+
'el-GR',
|
|
135
|
+
'pl-PL',
|
|
136
|
+
'ru-RU',
|
|
137
|
+
])
|
|
127
138
|
.optional()
|
|
128
139
|
.describe('The locale to use for the portal.'),
|
|
129
140
|
exclude_locale_picker: z
|
|
@@ -53963,7 +53963,18 @@ const openapi: OpenAPISpec = {
|
|
|
53963
53963
|
},
|
|
53964
53964
|
locale: {
|
|
53965
53965
|
description: 'The locale to use for the portal.',
|
|
53966
|
-
enum: [
|
|
53966
|
+
enum: [
|
|
53967
|
+
'en-US',
|
|
53968
|
+
'pt-PT',
|
|
53969
|
+
'fr-FR',
|
|
53970
|
+
'it-IT',
|
|
53971
|
+
'es-ES',
|
|
53972
|
+
'de-DE',
|
|
53973
|
+
'nl-NL',
|
|
53974
|
+
'el-GR',
|
|
53975
|
+
'pl-PL',
|
|
53976
|
+
'ru-RU',
|
|
53977
|
+
],
|
|
53967
53978
|
type: 'string',
|
|
53968
53979
|
},
|
|
53969
53980
|
navigation_mode: {
|
|
@@ -72629,7 +72640,18 @@ const openapi: OpenAPISpec = {
|
|
|
72629
72640
|
},
|
|
72630
72641
|
locale: {
|
|
72631
72642
|
description: 'The locale to use for the portal.',
|
|
72632
|
-
enum: [
|
|
72643
|
+
enum: [
|
|
72644
|
+
'en-US',
|
|
72645
|
+
'pt-PT',
|
|
72646
|
+
'fr-FR',
|
|
72647
|
+
'it-IT',
|
|
72648
|
+
'es-ES',
|
|
72649
|
+
'de-DE',
|
|
72650
|
+
'nl-NL',
|
|
72651
|
+
'el-GR',
|
|
72652
|
+
'pl-PL',
|
|
72653
|
+
'ru-RU',
|
|
72654
|
+
],
|
|
72633
72655
|
type: 'string',
|
|
72634
72656
|
},
|
|
72635
72657
|
navigation_mode: {
|
|
@@ -73045,7 +73067,18 @@ const openapi: OpenAPISpec = {
|
|
|
73045
73067
|
},
|
|
73046
73068
|
locale: {
|
|
73047
73069
|
description: 'The locale to use for the portal.',
|
|
73048
|
-
enum: [
|
|
73070
|
+
enum: [
|
|
73071
|
+
'en-US',
|
|
73072
|
+
'pt-PT',
|
|
73073
|
+
'fr-FR',
|
|
73074
|
+
'it-IT',
|
|
73075
|
+
'es-ES',
|
|
73076
|
+
'de-DE',
|
|
73077
|
+
'nl-NL',
|
|
73078
|
+
'el-GR',
|
|
73079
|
+
'pl-PL',
|
|
73080
|
+
'ru-RU',
|
|
73081
|
+
],
|
|
73049
73082
|
type: 'string',
|
|
73050
73083
|
},
|
|
73051
73084
|
navigation_mode: {
|
|
@@ -73414,7 +73447,18 @@ const openapi: OpenAPISpec = {
|
|
|
73414
73447
|
},
|
|
73415
73448
|
locale: {
|
|
73416
73449
|
description: 'The locale to use for the portal.',
|
|
73417
|
-
enum: [
|
|
73450
|
+
enum: [
|
|
73451
|
+
'en-US',
|
|
73452
|
+
'pt-PT',
|
|
73453
|
+
'fr-FR',
|
|
73454
|
+
'it-IT',
|
|
73455
|
+
'es-ES',
|
|
73456
|
+
'de-DE',
|
|
73457
|
+
'nl-NL',
|
|
73458
|
+
'el-GR',
|
|
73459
|
+
'pl-PL',
|
|
73460
|
+
'ru-RU',
|
|
73461
|
+
],
|
|
73418
73462
|
type: 'string',
|
|
73419
73463
|
},
|
|
73420
73464
|
navigation_mode: {
|
|
@@ -73791,7 +73835,18 @@ const openapi: OpenAPISpec = {
|
|
|
73791
73835
|
},
|
|
73792
73836
|
locale: {
|
|
73793
73837
|
description: 'The locale to use for the portal.',
|
|
73794
|
-
enum: [
|
|
73838
|
+
enum: [
|
|
73839
|
+
'en-US',
|
|
73840
|
+
'pt-PT',
|
|
73841
|
+
'fr-FR',
|
|
73842
|
+
'it-IT',
|
|
73843
|
+
'es-ES',
|
|
73844
|
+
'de-DE',
|
|
73845
|
+
'nl-NL',
|
|
73846
|
+
'el-GR',
|
|
73847
|
+
'pl-PL',
|
|
73848
|
+
'ru-RU',
|
|
73849
|
+
],
|
|
73795
73850
|
type: 'string',
|
|
73796
73851
|
},
|
|
73797
73852
|
navigation_mode: {
|
|
@@ -74322,6 +74377,15 @@ const openapi: OpenAPISpec = {
|
|
|
74322
74377
|
type: 'string',
|
|
74323
74378
|
},
|
|
74324
74379
|
},
|
|
74380
|
+
{
|
|
74381
|
+
in: 'query',
|
|
74382
|
+
name: 'user_identity_id',
|
|
74383
|
+
schema: {
|
|
74384
|
+
description: 'Filter reservations by the guest user identity ID.',
|
|
74385
|
+
format: 'uuid',
|
|
74386
|
+
type: 'string',
|
|
74387
|
+
},
|
|
74388
|
+
},
|
|
74325
74389
|
{
|
|
74326
74390
|
in: 'query',
|
|
74327
74391
|
name: 'limit',
|
|
@@ -74696,6 +74760,12 @@ const openapi: OpenAPISpec = {
|
|
|
74696
74760
|
description: 'Filter reservations by space key.',
|
|
74697
74761
|
type: 'string',
|
|
74698
74762
|
},
|
|
74763
|
+
user_identity_id: {
|
|
74764
|
+
description:
|
|
74765
|
+
'Filter reservations by the guest user identity ID.',
|
|
74766
|
+
format: 'uuid',
|
|
74767
|
+
type: 'string',
|
|
74768
|
+
},
|
|
74699
74769
|
},
|
|
74700
74770
|
type: 'object',
|
|
74701
74771
|
},
|
|
@@ -47864,7 +47864,20 @@ export type Routes = {
|
|
|
47864
47864
|
}
|
|
47865
47865
|
| undefined
|
|
47866
47866
|
/** The locale to use for the portal. */
|
|
47867
|
-
locale?:
|
|
47867
|
+
locale?:
|
|
47868
|
+
| (
|
|
47869
|
+
| 'en-US'
|
|
47870
|
+
| 'pt-PT'
|
|
47871
|
+
| 'fr-FR'
|
|
47872
|
+
| 'it-IT'
|
|
47873
|
+
| 'es-ES'
|
|
47874
|
+
| 'de-DE'
|
|
47875
|
+
| 'nl-NL'
|
|
47876
|
+
| 'el-GR'
|
|
47877
|
+
| 'pl-PL'
|
|
47878
|
+
| 'ru-RU'
|
|
47879
|
+
)
|
|
47880
|
+
| undefined
|
|
47868
47881
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
47869
47882
|
exclude_locale_picker?: boolean
|
|
47870
47883
|
/** The ID of the customization profile to use for the portal. */
|
|
@@ -96001,7 +96014,20 @@ export type Routes = {
|
|
|
96001
96014
|
}
|
|
96002
96015
|
| undefined
|
|
96003
96016
|
/** The locale to use for the portal. */
|
|
96004
|
-
locale?:
|
|
96017
|
+
locale?:
|
|
96018
|
+
| (
|
|
96019
|
+
| 'en-US'
|
|
96020
|
+
| 'pt-PT'
|
|
96021
|
+
| 'fr-FR'
|
|
96022
|
+
| 'it-IT'
|
|
96023
|
+
| 'es-ES'
|
|
96024
|
+
| 'de-DE'
|
|
96025
|
+
| 'nl-NL'
|
|
96026
|
+
| 'el-GR'
|
|
96027
|
+
| 'pl-PL'
|
|
96028
|
+
| 'ru-RU'
|
|
96029
|
+
)
|
|
96030
|
+
| undefined
|
|
96005
96031
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
96006
96032
|
exclude_locale_picker?: boolean
|
|
96007
96033
|
/** The ID of the customization profile to use for the portal. */
|
|
@@ -96172,7 +96198,21 @@ export type Routes = {
|
|
|
96172
96198
|
| undefined
|
|
96173
96199
|
/** The locale to use for the portal. */
|
|
96174
96200
|
locale?:
|
|
96175
|
-
| (
|
|
96201
|
+
| (
|
|
96202
|
+
| (
|
|
96203
|
+
| 'en-US'
|
|
96204
|
+
| 'pt-PT'
|
|
96205
|
+
| 'fr-FR'
|
|
96206
|
+
| 'it-IT'
|
|
96207
|
+
| 'es-ES'
|
|
96208
|
+
| 'de-DE'
|
|
96209
|
+
| 'nl-NL'
|
|
96210
|
+
| 'el-GR'
|
|
96211
|
+
| 'pl-PL'
|
|
96212
|
+
| 'ru-RU'
|
|
96213
|
+
)
|
|
96214
|
+
| undefined
|
|
96215
|
+
)
|
|
96176
96216
|
| undefined
|
|
96177
96217
|
/** Whether to exclude the option to select a locale within the portal UI. */
|
|
96178
96218
|
exclude_locale_picker?: boolean | undefined
|
|
@@ -96291,6 +96331,8 @@ export type Routes = {
|
|
|
96291
96331
|
space_id?: string | undefined
|
|
96292
96332
|
/** Filter reservations by the connected account whose connector discovered them. */
|
|
96293
96333
|
connected_account_id?: string | undefined
|
|
96334
|
+
/** Filter reservations by the guest user identity ID. */
|
|
96335
|
+
user_identity_id?: string | undefined
|
|
96294
96336
|
/** Maximum number of records to return per page. */
|
|
96295
96337
|
limit?: number
|
|
96296
96338
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|