@mastra/client-js 0.0.0-mastra-3123-mcp-server-20250419180157 → 0.0.0-mastra-3338-mastra-memory-pinecone-20250507174328
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/CHANGELOG.md +247 -3
- package/dist/index.cjs +427 -8
- package/dist/index.d.cts +150 -5
- package/dist/index.d.ts +150 -5
- package/dist/index.js +427 -8
- package/package.json +11 -6
- package/src/adapters/agui.test.ts +167 -0
- package/src/adapters/agui.ts +219 -0
- package/src/client.ts +47 -11
- package/src/index.test.ts +4 -4
- package/src/resources/agent.ts +3 -2
- package/src/resources/base.ts +1 -1
- package/src/resources/index.ts +1 -0
- package/src/resources/memory-thread.ts +1 -8
- package/src/resources/network.ts +1 -1
- package/src/resources/tool.ts +9 -3
- package/src/resources/vnext-workflow.ts +257 -0
- package/src/resources/workflow.ts +38 -2
- package/src/types.ts +40 -2
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
// Cross-platform UUID generation function
|
|
2
|
+
import { AbstractAgent, EventType } from '@ag-ui/client';
|
|
3
|
+
import type {
|
|
4
|
+
BaseEvent,
|
|
5
|
+
RunAgentInput,
|
|
6
|
+
AgentConfig,
|
|
7
|
+
RunStartedEvent,
|
|
8
|
+
RunFinishedEvent,
|
|
9
|
+
TextMessageStartEvent,
|
|
10
|
+
TextMessageContentEvent,
|
|
11
|
+
TextMessageEndEvent,
|
|
12
|
+
Message,
|
|
13
|
+
ToolCallStartEvent,
|
|
14
|
+
ToolCallArgsEvent,
|
|
15
|
+
ToolCallEndEvent,
|
|
16
|
+
} from '@ag-ui/client';
|
|
17
|
+
import type { CoreMessage } from '@mastra/core';
|
|
18
|
+
import { Observable } from 'rxjs';
|
|
19
|
+
import type { Agent } from '../resources/agent';
|
|
20
|
+
|
|
21
|
+
interface MastraAgentConfig extends AgentConfig {
|
|
22
|
+
agent: Agent;
|
|
23
|
+
agentId: string;
|
|
24
|
+
resourceId?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export class AGUIAdapter extends AbstractAgent {
|
|
28
|
+
agent: Agent;
|
|
29
|
+
resourceId?: string;
|
|
30
|
+
constructor({ agent, agentId, resourceId, ...rest }: MastraAgentConfig) {
|
|
31
|
+
super({
|
|
32
|
+
agentId,
|
|
33
|
+
...rest,
|
|
34
|
+
});
|
|
35
|
+
this.agent = agent;
|
|
36
|
+
this.resourceId = resourceId;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
protected run(input: RunAgentInput): Observable<BaseEvent> {
|
|
40
|
+
return new Observable<BaseEvent>(subscriber => {
|
|
41
|
+
const convertedMessages = convertMessagesToMastraMessages(input.messages);
|
|
42
|
+
|
|
43
|
+
subscriber.next({
|
|
44
|
+
type: EventType.RUN_STARTED,
|
|
45
|
+
threadId: input.threadId,
|
|
46
|
+
runId: input.runId,
|
|
47
|
+
} as RunStartedEvent);
|
|
48
|
+
|
|
49
|
+
this.agent
|
|
50
|
+
.stream({
|
|
51
|
+
threadId: input.threadId,
|
|
52
|
+
resourceId: this.resourceId ?? '',
|
|
53
|
+
runId: input.runId,
|
|
54
|
+
messages: convertedMessages,
|
|
55
|
+
clientTools: input.tools.reduce(
|
|
56
|
+
(acc, tool) => {
|
|
57
|
+
acc[tool.name as string] = {
|
|
58
|
+
id: tool.name,
|
|
59
|
+
description: tool.description,
|
|
60
|
+
inputSchema: tool.parameters,
|
|
61
|
+
};
|
|
62
|
+
return acc;
|
|
63
|
+
},
|
|
64
|
+
{} as Record<string, any>,
|
|
65
|
+
),
|
|
66
|
+
})
|
|
67
|
+
.then(response => {
|
|
68
|
+
let currentMessageId: string | undefined = undefined;
|
|
69
|
+
return response.processDataStream({
|
|
70
|
+
onTextPart: text => {
|
|
71
|
+
if (currentMessageId === undefined) {
|
|
72
|
+
currentMessageId = generateUUID();
|
|
73
|
+
|
|
74
|
+
const message: TextMessageStartEvent = {
|
|
75
|
+
type: EventType.TEXT_MESSAGE_START,
|
|
76
|
+
messageId: currentMessageId,
|
|
77
|
+
role: 'assistant',
|
|
78
|
+
};
|
|
79
|
+
subscriber.next(message);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const message: TextMessageContentEvent = {
|
|
83
|
+
type: EventType.TEXT_MESSAGE_CONTENT,
|
|
84
|
+
messageId: currentMessageId,
|
|
85
|
+
delta: text,
|
|
86
|
+
};
|
|
87
|
+
subscriber.next(message);
|
|
88
|
+
},
|
|
89
|
+
onFinishMessagePart: message => {
|
|
90
|
+
console.log('onFinishMessagePart', message);
|
|
91
|
+
if (currentMessageId !== undefined) {
|
|
92
|
+
const message: TextMessageEndEvent = {
|
|
93
|
+
type: EventType.TEXT_MESSAGE_END,
|
|
94
|
+
messageId: currentMessageId,
|
|
95
|
+
};
|
|
96
|
+
subscriber.next(message);
|
|
97
|
+
}
|
|
98
|
+
// Emit run finished event
|
|
99
|
+
subscriber.next({
|
|
100
|
+
type: EventType.RUN_FINISHED,
|
|
101
|
+
threadId: input.threadId,
|
|
102
|
+
runId: input.runId,
|
|
103
|
+
} as RunFinishedEvent);
|
|
104
|
+
|
|
105
|
+
// Complete the observable
|
|
106
|
+
subscriber.complete();
|
|
107
|
+
},
|
|
108
|
+
onToolCallPart(streamPart) {
|
|
109
|
+
const parentMessageId = currentMessageId || generateUUID();
|
|
110
|
+
subscriber.next({
|
|
111
|
+
type: EventType.TOOL_CALL_START,
|
|
112
|
+
toolCallId: streamPart.toolCallId,
|
|
113
|
+
toolCallName: streamPart.toolName,
|
|
114
|
+
parentMessageId,
|
|
115
|
+
} as ToolCallStartEvent);
|
|
116
|
+
|
|
117
|
+
subscriber.next({
|
|
118
|
+
type: EventType.TOOL_CALL_ARGS,
|
|
119
|
+
toolCallId: streamPart.toolCallId,
|
|
120
|
+
delta: JSON.stringify(streamPart.args),
|
|
121
|
+
parentMessageId,
|
|
122
|
+
} as ToolCallArgsEvent);
|
|
123
|
+
|
|
124
|
+
subscriber.next({
|
|
125
|
+
type: EventType.TOOL_CALL_END,
|
|
126
|
+
toolCallId: streamPart.toolCallId,
|
|
127
|
+
parentMessageId,
|
|
128
|
+
} as ToolCallEndEvent);
|
|
129
|
+
},
|
|
130
|
+
});
|
|
131
|
+
})
|
|
132
|
+
.catch(error => {
|
|
133
|
+
console.log('error', error);
|
|
134
|
+
// Handle error
|
|
135
|
+
subscriber.error(error);
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
return () => {};
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Generates a UUID v4 that works in both browser and Node.js environments
|
|
145
|
+
*/
|
|
146
|
+
export function generateUUID(): string {
|
|
147
|
+
// Use crypto.randomUUID() if available (Node.js environment or modern browsers)
|
|
148
|
+
if (typeof crypto !== 'undefined') {
|
|
149
|
+
// Browser crypto API or Node.js crypto global
|
|
150
|
+
if (typeof crypto.randomUUID === 'function') {
|
|
151
|
+
return crypto.randomUUID();
|
|
152
|
+
}
|
|
153
|
+
// Fallback for older browsers
|
|
154
|
+
if (typeof crypto.getRandomValues === 'function') {
|
|
155
|
+
const buffer = new Uint8Array(16);
|
|
156
|
+
crypto.getRandomValues(buffer);
|
|
157
|
+
// Set version (4) and variant (8, 9, A, or B)
|
|
158
|
+
buffer[6] = (buffer[6]! & 0x0f) | 0x40; // version 4
|
|
159
|
+
buffer[8] = (buffer[8]! & 0x3f) | 0x80; // variant
|
|
160
|
+
|
|
161
|
+
// Convert to hex string in UUID format
|
|
162
|
+
let hex = '';
|
|
163
|
+
for (let i = 0; i < 16; i++) {
|
|
164
|
+
hex += buffer[i]!.toString(16).padStart(2, '0');
|
|
165
|
+
// Add hyphens at standard positions
|
|
166
|
+
if (i === 3 || i === 5 || i === 7 || i === 9) hex += '-';
|
|
167
|
+
}
|
|
168
|
+
return hex;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// Last resort fallback (less secure but works everywhere)
|
|
173
|
+
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
|
|
174
|
+
const r = (Math.random() * 16) | 0;
|
|
175
|
+
const v = c === 'x' ? r : (r & 0x3) | 0x8;
|
|
176
|
+
return v.toString(16);
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export function convertMessagesToMastraMessages(messages: Message[]): CoreMessage[] {
|
|
181
|
+
const result: CoreMessage[] = [];
|
|
182
|
+
|
|
183
|
+
for (const message of messages) {
|
|
184
|
+
if (message.role === 'assistant') {
|
|
185
|
+
const parts: any[] = message.content ? [{ type: 'text', text: message.content }] : [];
|
|
186
|
+
for (const toolCall of message.toolCalls ?? []) {
|
|
187
|
+
parts.push({
|
|
188
|
+
type: 'tool-call',
|
|
189
|
+
toolCallId: toolCall.id,
|
|
190
|
+
toolName: toolCall.function.name,
|
|
191
|
+
args: JSON.parse(toolCall.function.arguments),
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
result.push({
|
|
195
|
+
role: 'assistant',
|
|
196
|
+
content: parts,
|
|
197
|
+
});
|
|
198
|
+
} else if (message.role === 'user') {
|
|
199
|
+
result.push({
|
|
200
|
+
role: 'user',
|
|
201
|
+
content: message.content || '',
|
|
202
|
+
});
|
|
203
|
+
} else if (message.role === 'tool') {
|
|
204
|
+
result.push({
|
|
205
|
+
role: 'tool',
|
|
206
|
+
content: [
|
|
207
|
+
{
|
|
208
|
+
type: 'tool-result',
|
|
209
|
+
toolCallId: message.toolCallId,
|
|
210
|
+
toolName: 'unknown',
|
|
211
|
+
result: message.content,
|
|
212
|
+
},
|
|
213
|
+
],
|
|
214
|
+
});
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return result;
|
|
219
|
+
}
|
package/src/client.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { AbstractAgent } from '@ag-ui/client';
|
|
2
|
+
import { AGUIAdapter } from './adapters/agui';
|
|
3
|
+
import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, Network, VNextWorkflow } from './resources';
|
|
2
4
|
import type {
|
|
3
5
|
ClientOptions,
|
|
4
6
|
CreateMemoryThreadParams,
|
|
@@ -13,8 +15,8 @@ import type {
|
|
|
13
15
|
GetTelemetryParams,
|
|
14
16
|
GetTelemetryResponse,
|
|
15
17
|
GetToolResponse,
|
|
18
|
+
GetVNextWorkflowResponse,
|
|
16
19
|
GetWorkflowResponse,
|
|
17
|
-
RequestOptions,
|
|
18
20
|
SaveMessageToMemoryParams,
|
|
19
21
|
SaveMessageToMemoryResponse,
|
|
20
22
|
} from './types';
|
|
@@ -32,6 +34,25 @@ export class MastraClient extends BaseResource {
|
|
|
32
34
|
return this.request('/api/agents');
|
|
33
35
|
}
|
|
34
36
|
|
|
37
|
+
public async getAGUI({ resourceId }: { resourceId: string }): Promise<Record<string, AbstractAgent>> {
|
|
38
|
+
const agents = await this.getAgents();
|
|
39
|
+
|
|
40
|
+
return Object.entries(agents).reduce(
|
|
41
|
+
(acc, [agentId]) => {
|
|
42
|
+
const agent = this.getAgent(agentId);
|
|
43
|
+
|
|
44
|
+
acc[agentId] = new AGUIAdapter({
|
|
45
|
+
agentId,
|
|
46
|
+
agent,
|
|
47
|
+
resourceId,
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
return acc;
|
|
51
|
+
},
|
|
52
|
+
{} as Record<string, AbstractAgent>,
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
35
56
|
/**
|
|
36
57
|
* Gets an agent instance by ID
|
|
37
58
|
* @param agentId - ID of the agent to retrieve
|
|
@@ -122,6 +143,23 @@ export class MastraClient extends BaseResource {
|
|
|
122
143
|
return new Workflow(this.options, workflowId);
|
|
123
144
|
}
|
|
124
145
|
|
|
146
|
+
/**
|
|
147
|
+
* Retrieves all available vNext workflows
|
|
148
|
+
* @returns Promise containing map of vNext workflow IDs to vNext workflow details
|
|
149
|
+
*/
|
|
150
|
+
public getVNextWorkflows(): Promise<Record<string, GetVNextWorkflowResponse>> {
|
|
151
|
+
return this.request('/api/workflows/v-next');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Gets a vNext workflow instance by ID
|
|
156
|
+
* @param workflowId - ID of the vNext workflow to retrieve
|
|
157
|
+
* @returns vNext Workflow instance
|
|
158
|
+
*/
|
|
159
|
+
public getVNextWorkflow(workflowId: string) {
|
|
160
|
+
return new VNextWorkflow(this.options, workflowId);
|
|
161
|
+
}
|
|
162
|
+
|
|
125
163
|
/**
|
|
126
164
|
* Gets a vector instance by name
|
|
127
165
|
* @param vectorName - Name of the vector to retrieve
|
|
@@ -163,17 +201,9 @@ export class MastraClient extends BaseResource {
|
|
|
163
201
|
* @returns Promise containing telemetry data
|
|
164
202
|
*/
|
|
165
203
|
public getTelemetry(params?: GetTelemetryParams): Promise<GetTelemetryResponse> {
|
|
166
|
-
const { name, scope, page, perPage, attribute } = params || {};
|
|
204
|
+
const { name, scope, page, perPage, attribute, fromDate, toDate } = params || {};
|
|
167
205
|
const _attribute = attribute ? Object.entries(attribute).map(([key, value]) => `${key}:${value}`) : [];
|
|
168
206
|
|
|
169
|
-
const queryObj = {
|
|
170
|
-
...(name ? { name } : {}),
|
|
171
|
-
...(scope ? { scope } : {}),
|
|
172
|
-
...(page ? { page: String(page) } : {}),
|
|
173
|
-
...(perPage ? { perPage: String(perPage) } : {}),
|
|
174
|
-
...(_attribute?.length ? { attribute: _attribute } : {}),
|
|
175
|
-
} as const;
|
|
176
|
-
|
|
177
207
|
const searchParams = new URLSearchParams();
|
|
178
208
|
if (name) {
|
|
179
209
|
searchParams.set('name', name);
|
|
@@ -196,6 +226,12 @@ export class MastraClient extends BaseResource {
|
|
|
196
226
|
searchParams.set('attribute', _attribute);
|
|
197
227
|
}
|
|
198
228
|
}
|
|
229
|
+
if (fromDate) {
|
|
230
|
+
searchParams.set('fromDate', fromDate.toISOString());
|
|
231
|
+
}
|
|
232
|
+
if (toDate) {
|
|
233
|
+
searchParams.set('toDate', toDate.toISOString());
|
|
234
|
+
}
|
|
199
235
|
|
|
200
236
|
if (searchParams.size) {
|
|
201
237
|
return this.request(`/api/telemetry?${searchParams}`);
|
package/src/index.test.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { MessageType } from '@mastra/core';
|
|
2
1
|
import { describe, expect, beforeEach, it, vi } from 'vitest';
|
|
3
2
|
|
|
4
3
|
import { MastraClient } from './client';
|
|
@@ -489,7 +488,7 @@ describe('MastraClient Resources', () => {
|
|
|
489
488
|
const result = await memoryThread.update({
|
|
490
489
|
title: 'Updated Thread',
|
|
491
490
|
metadata: { updated: true },
|
|
492
|
-
|
|
491
|
+
resourceId: 'test-resource',
|
|
493
492
|
});
|
|
494
493
|
expect(result).toEqual(mockResponse);
|
|
495
494
|
expect(global.fetch).toHaveBeenCalledWith(
|
|
@@ -536,6 +535,7 @@ describe('MastraClient Resources', () => {
|
|
|
536
535
|
content: 'test',
|
|
537
536
|
role: 'user' as const,
|
|
538
537
|
threadId: 'test-thread',
|
|
538
|
+
resourceId: 'test-resource',
|
|
539
539
|
createdAt: new Date('2025-03-26T10:40:55.116Z'),
|
|
540
540
|
},
|
|
541
541
|
];
|
|
@@ -584,10 +584,10 @@ describe('MastraClient Resources', () => {
|
|
|
584
584
|
it('should execute tool', async () => {
|
|
585
585
|
const mockResponse = { data: 'test' };
|
|
586
586
|
mockFetchResponse(mockResponse);
|
|
587
|
-
const result = await tool.execute({ data: '' });
|
|
587
|
+
const result = await tool.execute({ data: '', runId: 'test-run-id' });
|
|
588
588
|
expect(result).toEqual(mockResponse);
|
|
589
589
|
expect(global.fetch).toHaveBeenCalledWith(
|
|
590
|
-
`${clientOptions.baseUrl}/api/tools/test-tool/execute`,
|
|
590
|
+
`${clientOptions.baseUrl}/api/tools/test-tool/execute?runId=test-run-id`,
|
|
591
591
|
expect.objectContaining({
|
|
592
592
|
method: 'POST',
|
|
593
593
|
headers: expect.objectContaining({
|
package/src/resources/agent.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
1
2
|
import type { GenerateReturn } from '@mastra/core';
|
|
2
3
|
import type { JSONSchema7 } from 'json-schema';
|
|
3
4
|
import { ZodSchema } from 'zod';
|
|
4
5
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
|
-
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
6
6
|
|
|
7
7
|
import type {
|
|
8
8
|
GenerateParams,
|
|
@@ -29,7 +29,6 @@ export class AgentTool extends BaseResource {
|
|
|
29
29
|
* @param params - Parameters required for tool execution
|
|
30
30
|
* @returns Promise containing tool execution results
|
|
31
31
|
*/
|
|
32
|
-
/** @deprecated use CreateRun/startRun */
|
|
33
32
|
execute(params: { data: any }): Promise<any> {
|
|
34
33
|
return this.request(`/api/agents/${this.agentId}/tools/${this.toolId}/execute`, {
|
|
35
34
|
method: 'POST',
|
|
@@ -127,6 +126,7 @@ export class Agent extends BaseResource {
|
|
|
127
126
|
params.experimental_output instanceof ZodSchema
|
|
128
127
|
? zodToJsonSchema(params.experimental_output)
|
|
129
128
|
: params.experimental_output,
|
|
129
|
+
runtimeContext: params.runtimeContext ? Object.fromEntries(params.runtimeContext.entries()) : undefined,
|
|
130
130
|
};
|
|
131
131
|
|
|
132
132
|
return this.request(`/api/agents/${this.agentId}/generate`, {
|
|
@@ -154,6 +154,7 @@ export class Agent extends BaseResource {
|
|
|
154
154
|
params.experimental_output instanceof ZodSchema
|
|
155
155
|
? zodToJsonSchema(params.experimental_output)
|
|
156
156
|
: params.experimental_output,
|
|
157
|
+
runtimeContext: params.runtimeContext ? Object.fromEntries(params.runtimeContext.entries()) : undefined,
|
|
157
158
|
};
|
|
158
159
|
|
|
159
160
|
const response: Response & {
|
package/src/resources/base.ts
CHANGED
package/src/resources/index.ts
CHANGED
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import type { StorageThreadType } from '@mastra/core';
|
|
2
2
|
|
|
3
|
-
import type {
|
|
4
|
-
CreateMemoryThreadParams,
|
|
5
|
-
GetMemoryThreadMessagesResponse,
|
|
6
|
-
GetMemoryThreadResponse,
|
|
7
|
-
ClientOptions,
|
|
8
|
-
SaveMessageToMemoryParams,
|
|
9
|
-
UpdateMemoryThreadParams,
|
|
10
|
-
} from '../types';
|
|
3
|
+
import type { GetMemoryThreadMessagesResponse, ClientOptions, UpdateMemoryThreadParams } from '../types';
|
|
11
4
|
|
|
12
5
|
import { BaseResource } from './base';
|
|
13
6
|
|
package/src/resources/network.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
1
2
|
import type { GenerateReturn } from '@mastra/core';
|
|
2
3
|
import type { JSONSchema7 } from 'json-schema';
|
|
3
4
|
import { ZodSchema } from 'zod';
|
|
@@ -6,7 +7,6 @@ import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
|
6
7
|
import type { GenerateParams, ClientOptions, StreamParams, GetNetworkResponse } from '../types';
|
|
7
8
|
|
|
8
9
|
import { BaseResource } from './base';
|
|
9
|
-
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
10
10
|
|
|
11
11
|
export class Network extends BaseResource {
|
|
12
12
|
constructor(
|
package/src/resources/tool.ts
CHANGED
|
@@ -23,10 +23,16 @@ export class Tool extends BaseResource {
|
|
|
23
23
|
* @param params - Parameters required for tool execution
|
|
24
24
|
* @returns Promise containing the tool execution results
|
|
25
25
|
*/
|
|
26
|
-
execute(params: { data: any }): Promise<any> {
|
|
27
|
-
|
|
26
|
+
execute(params: { data: any; runId?: string }): Promise<any> {
|
|
27
|
+
const url = new URLSearchParams();
|
|
28
|
+
|
|
29
|
+
if (params.runId) {
|
|
30
|
+
url.set('runId', params.runId);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
return this.request(`/api/tools/${this.toolId}/execute?${url.toString()}`, {
|
|
28
34
|
method: 'POST',
|
|
29
|
-
body: params,
|
|
35
|
+
body: params.data,
|
|
30
36
|
});
|
|
31
37
|
}
|
|
32
38
|
}
|