feat: specify the api's auth type (#2715)

This commit is contained in:
Finley Ge
2024-09-15 13:06:51 +08:00
committed by shilin66
parent f5359874c8
commit a1096fee6a
5 changed files with 103 additions and 25 deletions

View File

@@ -6,6 +6,7 @@ export type ApiMetaData = {
export type ApiType = {
description?: string;
authorization?: 'apikey' | 'token';
path: string;
url: string;
query?: itemType | itemType[];