@docyrus/ui-pro-ai-assistant 0.2.3 → 0.2.5
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/dist/hooks/use-assistant-api.d.ts +0 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/stub.d.ts +7 -0
- package/dist/stub.js +10 -0
- package/dist/stub.js.map +1 -0
- package/dist/vite.js +165 -1
- package/dist/vite.js.map +1 -1
- package/dist/worker.js +163 -1
- package/dist/worker.js.map +1 -1
- package/package.json +3 -1
- package/dist/chunk-VSTHZ22Q.js +0 -165
- package/dist/chunk-VSTHZ22Q.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -2700,7 +2700,7 @@ function useAssistantApi({
|
|
|
2700
2700
|
instructions: params.instructions,
|
|
2701
2701
|
tenant_ai_agent_id: tenantAiAgentId,
|
|
2702
2702
|
tenant_ai_agent_deployment_id: deploymentId,
|
|
2703
|
-
created_by:
|
|
2703
|
+
created_by: configUser.id
|
|
2704
2704
|
});
|
|
2705
2705
|
if (response.success && response.data) {
|
|
2706
2706
|
toast.success(t("toast.project_created_success"));
|
|
@@ -2716,6 +2716,7 @@ function useAssistantApi({
|
|
|
2716
2716
|
apiClient,
|
|
2717
2717
|
tenantAiAgentId,
|
|
2718
2718
|
deploymentId,
|
|
2719
|
+
configUser.id,
|
|
2719
2720
|
t
|
|
2720
2721
|
]);
|
|
2721
2722
|
const updateProject2 = useCallback(async (projectId, params) => {
|