@yuno-payments/dashboard-api-mfe 0.35.0-beta.5 → 0.35.0-beta.6
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.
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +2 -0
- package/build/cjs/types/queries/chartgpt/chartgpt.query.d.ts +3 -0
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -0
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +3 -0
- package/build/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -586,5 +586,7 @@ export declare class Api extends HttpClient {
|
|
|
586
586
|
type: string;
|
|
587
587
|
name: string;
|
|
588
588
|
}): Promise<AxiosResponse<T, any>>;
|
|
589
|
+
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
590
|
+
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
589
591
|
}
|
|
590
592
|
export {};
|
package/build/index.d.ts
CHANGED
|
@@ -5135,6 +5135,8 @@ declare class Api extends HttpClient {
|
|
|
5135
5135
|
type: string;
|
|
5136
5136
|
name: string;
|
|
5137
5137
|
}): Promise<AxiosResponse<T, any>>;
|
|
5138
|
+
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
5139
|
+
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
5138
5140
|
}
|
|
5139
5141
|
|
|
5140
5142
|
declare class ApiSingleton extends Api {
|