@huyooo/ui 0.14.10 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -677,11 +677,8 @@ export type Api = {
|
|
|
677
677
|
};
|
|
678
678
|
};
|
|
679
679
|
findOne: {
|
|
680
|
-
/**
|
|
680
|
+
/** 查询 app-id header 对应的应用详情 */
|
|
681
681
|
post: {
|
|
682
|
-
body: {
|
|
683
|
-
id: string;
|
|
684
|
-
};
|
|
685
682
|
return: any;
|
|
686
683
|
};
|
|
687
684
|
};
|
|
@@ -2249,10 +2246,8 @@ export interface ApiClient {
|
|
|
2249
2246
|
}, config?: RequestConfig) => Promise<ApiResponse<any>>;
|
|
2250
2247
|
};
|
|
2251
2248
|
findOne: {
|
|
2252
|
-
/**
|
|
2253
|
-
post: (
|
|
2254
|
-
id: string;
|
|
2255
|
-
}, config?: RequestConfig) => Promise<ApiResponse<any>>;
|
|
2249
|
+
/** 查询 app-id header 对应的应用详情 */
|
|
2250
|
+
post: (config?: RequestConfig) => Promise<ApiResponse<any>>;
|
|
2256
2251
|
};
|
|
2257
2252
|
findByIds: {
|
|
2258
2253
|
/** 根据 ID 列表批量查询应用 */
|