We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 268276b commit 0a099edCopy full SHA for 0a099ed
packages/react/src/stateProxy.ts
@@ -91,6 +91,7 @@ export class StateProxy implements State {
91
'verifyTOTP',
92
'verifyBackupCode',
93
] as const),
94
+ ticket: this.gateMethod(target, 'ticket'),
95
},
96
};
97
}
@@ -119,6 +120,7 @@ export class StateProxy implements State {
119
120
update: gateMethod(target, 'update'),
121
sso: gateMethod(target, 'sso'),
122
password: gateMethod(target, 'password'),
123
+ ticket: gateMethod(target, 'ticket'),
124
finalize: gateMethod(target, 'finalize'),
125
126
verifications: wrapMethods(() => target().verifications, [
0 commit comments