-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathagents.ts
More file actions
41 lines (37 loc) · 1.31 KB
/
agents.ts
File metadata and controls
41 lines (37 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as AuthAPI from './auth/auth';
import {
AgentAuthDiscoverResponse,
AgentAuthInvocationResponse,
AgentAuthSubmitResponse,
Auth,
AuthAgent,
AuthAgentCreateRequest,
AuthAgentInvocationCreateRequest,
AuthAgentInvocationCreateResponse,
AuthAgentsOffsetPagination,
AuthCreateParams,
AuthListParams,
DiscoveredField,
} from './auth/auth';
export class Agents extends APIResource {
auth: AuthAPI.Auth = new AuthAPI.Auth(this._client);
}
Agents.Auth = Auth;
export declare namespace Agents {
export {
Auth as Auth,
type AgentAuthDiscoverResponse as AgentAuthDiscoverResponse,
type AgentAuthInvocationResponse as AgentAuthInvocationResponse,
type AgentAuthSubmitResponse as AgentAuthSubmitResponse,
type AuthAgent as AuthAgent,
type AuthAgentCreateRequest as AuthAgentCreateRequest,
type AuthAgentInvocationCreateRequest as AuthAgentInvocationCreateRequest,
type AuthAgentInvocationCreateResponse as AuthAgentInvocationCreateResponse,
type DiscoveredField as DiscoveredField,
type AuthAgentsOffsetPagination as AuthAgentsOffsetPagination,
type AuthCreateParams as AuthCreateParams,
type AuthListParams as AuthListParams,
};
}