From 29d1ab1f38eaea7c07e9016febf4a357de6e8d2c Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Fri, 3 Mar 2023 14:23:21 +0800 Subject: [PATCH] chore(sdk): regenerate Api.ts --- packages/nocodb-sdk/src/lib/Api.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/packages/nocodb-sdk/src/lib/Api.ts b/packages/nocodb-sdk/src/lib/Api.ts index bf2e919cd9..e366f03d04 100644 --- a/packages/nocodb-sdk/src/lib/Api.ts +++ b/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; }