-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapps.ts
More file actions
41 lines (36 loc) · 1.26 KB
/
apps.ts
File metadata and controls
41 lines (36 loc) · 1.26 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 DeploymentsAPI from './deployments';
import {
DeploymentCreateParams,
DeploymentCreateResponse,
DeploymentFollowResponse,
Deployments,
} from './deployments';
import * as InvocationsAPI from './invocations';
import {
InvocationCreateParams,
InvocationCreateResponse,
InvocationRetrieveResponse,
Invocations,
} from './invocations';
export class Apps extends APIResource {
deployments: DeploymentsAPI.Deployments = new DeploymentsAPI.Deployments(this._client);
invocations: InvocationsAPI.Invocations = new InvocationsAPI.Invocations(this._client);
}
Apps.Deployments = Deployments;
Apps.Invocations = Invocations;
export declare namespace Apps {
export {
Deployments as Deployments,
type DeploymentCreateResponse as DeploymentCreateResponse,
type DeploymentFollowResponse as DeploymentFollowResponse,
type DeploymentCreateParams as DeploymentCreateParams,
};
export {
Invocations as Invocations,
type InvocationCreateResponse as InvocationCreateResponse,
type InvocationRetrieveResponse as InvocationRetrieveResponse,
type InvocationCreateParams as InvocationCreateParams,
};
}