@seamapi/types 1.652.0 → 1.653.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 +4 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -6
- package/dist/index.cjs +4 -8
- 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 +2 -3
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -4
- package/lib/seam/connect/openapi.js +3 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +2 -3
- package/src/lib/seam/connect/openapi.ts +3 -7
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -26391,7 +26391,7 @@ export type Routes = {
|
|
|
26391
26391
|
})) | undefined;
|
|
26392
26392
|
} | undefined;
|
|
26393
26393
|
/** The locale to use for the portal. */
|
|
26394
|
-
locale?: 'en-US' | 'pt-PT' |
|
|
26394
|
+
locale?: ('en-US' | 'pt-PT') | undefined;
|
|
26395
26395
|
/** The ID of the customization profile to use for the portal. */
|
|
26396
26396
|
customization_profile_id?: string | undefined;
|
|
26397
26397
|
} & {
|
|
@@ -54118,7 +54118,7 @@ export type Routes = {
|
|
|
54118
54118
|
})) | undefined;
|
|
54119
54119
|
} | undefined;
|
|
54120
54120
|
/** The locale to use for the portal. */
|
|
54121
|
-
locale?: 'en-US' | 'pt-PT' |
|
|
54121
|
+
locale?: ('en-US' | 'pt-PT') | undefined;
|
|
54122
54122
|
/** The ID of the customization profile to use for the portal. */
|
|
54123
54123
|
customization_profile_id?: string | undefined;
|
|
54124
54124
|
/** Business vertical of the customer portal. */
|
package/package.json
CHANGED
|
@@ -94,9 +94,8 @@ export const portal_configuration_base = z.object({
|
|
|
94
94
|
.optional()
|
|
95
95
|
.describe('Configuration for the landing page when the portal loads.'),
|
|
96
96
|
locale: z
|
|
97
|
-
.enum(['en-US', 'pt-PT'
|
|
97
|
+
.enum(['en-US', 'pt-PT'])
|
|
98
98
|
.optional()
|
|
99
|
-
.default('auto')
|
|
100
99
|
.describe('The locale to use for the portal.'),
|
|
101
100
|
customization_profile_id: z
|
|
102
101
|
.string()
|
|
@@ -125,7 +124,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
125
124
|
},
|
|
126
125
|
},
|
|
127
126
|
is_embedded: false,
|
|
128
|
-
locale:
|
|
127
|
+
locale: undefined,
|
|
129
128
|
})
|
|
130
129
|
.describe(`Configuration for a customer portal`)
|
|
131
130
|
|
|
@@ -41075,7 +41075,6 @@ export default {
|
|
|
41075
41075
|
organize: { exclude: false },
|
|
41076
41076
|
},
|
|
41077
41077
|
is_embedded: false,
|
|
41078
|
-
locale: 'auto',
|
|
41079
41078
|
},
|
|
41080
41079
|
description: 'Configuration for a customer portal',
|
|
41081
41080
|
properties: {
|
|
@@ -41314,9 +41313,8 @@ export default {
|
|
|
41314
41313
|
type: 'object',
|
|
41315
41314
|
},
|
|
41316
41315
|
locale: {
|
|
41317
|
-
default: 'auto',
|
|
41318
41316
|
description: 'The locale to use for the portal.',
|
|
41319
|
-
enum: ['en-US', 'pt-PT'
|
|
41317
|
+
enum: ['en-US', 'pt-PT'],
|
|
41320
41318
|
type: 'string',
|
|
41321
41319
|
},
|
|
41322
41320
|
},
|
|
@@ -54181,9 +54179,8 @@ export default {
|
|
|
54181
54179
|
type: 'object',
|
|
54182
54180
|
},
|
|
54183
54181
|
locale: {
|
|
54184
|
-
default: 'auto',
|
|
54185
54182
|
description: 'The locale to use for the portal.',
|
|
54186
|
-
enum: ['en-US', 'pt-PT'
|
|
54183
|
+
enum: ['en-US', 'pt-PT'],
|
|
54187
54184
|
type: 'string',
|
|
54188
54185
|
},
|
|
54189
54186
|
},
|
|
@@ -54499,9 +54496,8 @@ export default {
|
|
|
54499
54496
|
type: 'object',
|
|
54500
54497
|
},
|
|
54501
54498
|
locale: {
|
|
54502
|
-
default: 'auto',
|
|
54503
54499
|
description: 'The locale to use for the portal.',
|
|
54504
|
-
enum: ['en-US', 'pt-PT'
|
|
54500
|
+
enum: ['en-US', 'pt-PT'],
|
|
54505
54501
|
type: 'string',
|
|
54506
54502
|
},
|
|
54507
54503
|
},
|
|
@@ -30556,7 +30556,7 @@ export type Routes = {
|
|
|
30556
30556
|
}
|
|
30557
30557
|
| undefined
|
|
30558
30558
|
/** The locale to use for the portal. */
|
|
30559
|
-
locale?: 'en-US' | 'pt-PT' |
|
|
30559
|
+
locale?: ('en-US' | 'pt-PT') | undefined
|
|
30560
30560
|
/** The ID of the customization profile to use for the portal. */
|
|
30561
30561
|
customization_profile_id?: string | undefined
|
|
30562
30562
|
} & {
|
|
@@ -64501,7 +64501,7 @@ export type Routes = {
|
|
|
64501
64501
|
}
|
|
64502
64502
|
| undefined
|
|
64503
64503
|
/** The locale to use for the portal. */
|
|
64504
|
-
locale?: 'en-US' | 'pt-PT' |
|
|
64504
|
+
locale?: ('en-US' | 'pt-PT') | undefined
|
|
64505
64505
|
/** The ID of the customization profile to use for the portal. */
|
|
64506
64506
|
customization_profile_id?: string | undefined
|
|
64507
64507
|
/** Business vertical of the customer portal. */
|