@mastra/claude 1.0.1-alpha.2 → 1.0.1-alpha.21

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../../src/client/schemas.gen.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ export declare const comments: {
2
+ createMessage: {
3
+ comment: string;
4
+ doc: string;
5
+ };
6
+ createMessageBatch: {
7
+ comment: string;
8
+ doc: string;
9
+ };
10
+ retrieveMessageBatch: {
11
+ comment: string;
12
+ doc: string;
13
+ };
14
+ };
15
+ //# sourceMappingURL=service-comments.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service-comments.d.ts","sourceRoot":"","sources":["../../src/client/service-comments.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;CAapB,CAAC"}
@@ -0,0 +1,29 @@
1
+ import { type Options } from '@hey-api/client-fetch';
2
+ import type { CreateMessageData, CreateMessageBatchData, RetrieveMessageBatchData } from './types.gen';
3
+ export declare const client: import("@hey-api/client-fetch").Client<Request, Response, import("@hey-api/client-fetch").RequestOptionsBase<false> & import("@hey-api/client-fetch").Config<false> & {
4
+ headers: Headers;
5
+ }>;
6
+ /**
7
+ * Create a Message
8
+ * Send a structured list of input messages with text and/or image content, and the
9
+ * model will generate the next message in the conversation.
10
+ *
11
+ * The Messages API can be used for either single queries or stateless multi-turn
12
+ * conversations.
13
+ *
14
+ */
15
+ export declare const createMessage: <ThrowOnError extends boolean = false>(options: Options<CreateMessageData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<import("./types.gen").Message, unknown, ThrowOnError>;
16
+ /**
17
+ * Create a Message Batch
18
+ * Send a batch of Message creation requests.
19
+ */
20
+ export declare const createMessageBatch: <ThrowOnError extends boolean = false>(options: Options<CreateMessageBatchData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<import("./types.gen").MessageBatch, unknown, ThrowOnError>;
21
+ /**
22
+ * Retrieve a Message Batch
23
+ * This endpoint is idempotent and can be used to poll for Message Batch
24
+ * completion. To access the results of a Message Batch, make a request to the
25
+ * `results_url` field in the response.
26
+ *
27
+ */
28
+ export declare const retrieveMessageBatch: <ThrowOnError extends boolean = false>(options: Options<RetrieveMessageBatchData, ThrowOnError>) => import("@hey-api/client-fetch").RequestResult<import("./types.gen").MessageBatch, unknown, ThrowOnError>;
29
+ //# sourceMappingURL=services.gen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"services.gen.d.ts","sourceRoot":"","sources":["../../src/client/services.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAA8B,KAAK,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEjF,OAAO,KAAK,EACV,iBAAiB,EAGjB,sBAAsB,EAGtB,wBAAwB,EAGzB,MAAM,aAAa,CAAC;AAErB,eAAO,MAAM,MAAM;;EAA+B,CAAC;AAEnD;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa,GAAI,YAAY,SAAS,OAAO,mBAC/C,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC,wGAMlD,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,GAAI,YAAY,SAAS,OAAO,mBACpD,OAAO,CAAC,sBAAsB,EAAE,YAAY,CAAC,6GAMvD,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,oBAAoB,GAAI,YAAY,SAAS,OAAO,mBACtD,OAAO,CAAC,wBAAwB,EAAE,YAAY,CAAC,6GAMzD,CAAC"}