Browse Source

chore(sdk): regenerate Api.ts

pull/5222/head
Wing-Kam Wong 2 years ago
parent
commit
29d1ab1f38
  1. 16
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -13,20 +13,24 @@
* Model for API Token
*/
export interface ApiTokenType {
created_at?: any;
description?: string;
fk_user_id?: string;
/** Unique ID */
/** Unique API Token ID */
id?: IdType;
/** Foreign Key to User */
fk_user_id?: IdType;
/** API Token Description */
description?: string;
/** API Token */
token?: string;
updated_at?: any;
}
/**
* Model for API Token Request
*/
export interface ApiTokenReqType {
/** Description of the API token */
/**
* Description of the API token
* @example This API Token is for ABC application
*/
description?: string;
}

Loading…
Cancel
Save