Browse Source

refactor(sdk): signupReqType

pull/5262/head
Wing-Kam Wong 2 years ago
parent
commit
eb0e84cc5b
  1. 8
      packages/nocodb-sdk/src/lib/Api.ts

8
packages/nocodb-sdk/src/lib/Api.ts

@ -1960,6 +1960,14 @@ export interface SignUpReqType {
* @example password123456789
*/
password: string;
/** Model for StringOrNull */
firstname?: StringOrNullType;
/** Model for StringOrNull */
lastname?: StringOrNullType;
/** Sign Up Token. Used for invitation. */
token?: StringOrNullType;
/** Ignore Subscription */
ignore_subscribe?: BoolType;
}
/**

Loading…
Cancel
Save