Skip to content

Commit 5efda07

Browse files
authored
1 parent b74bcf8 commit 5efda07

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32681,6 +32681,13 @@ export default {
3268132681
'application/json': {
3268232682
schema: {
3268332683
properties: {
32684+
max_use_count: {
32685+
default: 1,
32686+
description:
32687+
'The maximum number of times the instant key can be used. Defaults to 1.',
32688+
format: 'float',
32689+
type: 'number',
32690+
},
3268432691
user_identity_id: {
3268532692
description:
3268632693
'ID of the user identity for which you want to generate an instant key.',

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52539,6 +52539,8 @@ export interface Routes {
5253952539
commonParams: {
5254052540
/** ID of the user identity for which you want to generate an instant key. */
5254152541
user_identity_id: string
52542+
/** The maximum number of times the instant key can be used. Defaults to 1. */
52543+
max_use_count?: number
5254252544
}
5254352545
formData: {}
5254452546
jsonResponse: {

0 commit comments

Comments
 (0)