-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgithub.ts
118 lines (108 loc) · 3.33 KB
/
github.ts
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { githubCheckAccess } from "../funcs/githubCheckAccess.js";
import { githubCheckPublishingPRs } from "../funcs/githubCheckPublishingPRs.js";
import { githubCheckPublishingSecrets } from "../funcs/githubCheckPublishingSecrets.js";
import { githubConfigureCodeSamples } from "../funcs/githubConfigureCodeSamples.js";
import { githubConfigureMintlifyRepo } from "../funcs/githubConfigureMintlifyRepo.js";
import { githubConfigureTarget } from "../funcs/githubConfigureTarget.js";
import { githubGetAction } from "../funcs/githubGetAction.js";
import { githubStorePublishingSecrets } from "../funcs/githubStorePublishingSecrets.js";
import { githubTriggerAction } from "../funcs/githubTriggerAction.js";
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
import * as operations from "./models/operations/index.js";
import * as shared from "./models/shared/index.js";
import { unwrapAsync } from "./types/fp.js";
export class Github extends ClientSDK {
async checkAccess(
request: operations.CheckGithubAccessRequest,
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(githubCheckAccess(
this,
request,
options,
));
}
async checkPublishingPRs(
request: operations.GithubCheckPublishingPRsRequest,
options?: RequestOptions,
): Promise<operations.GithubCheckPublishingPRsResponse> {
return unwrapAsync(githubCheckPublishingPRs(
this,
request,
options,
));
}
async checkPublishingSecrets(
request: operations.GithubCheckPublishingSecretsRequest,
options?: RequestOptions,
): Promise<operations.GithubCheckPublishingSecretsResponse> {
return unwrapAsync(githubCheckPublishingSecrets(
this,
request,
options,
));
}
async configureCodeSamples(
request: shared.GithubConfigureCodeSamplesRequest,
options?: RequestOptions,
): Promise<operations.GithubConfigureCodeSamplesResponse> {
return unwrapAsync(githubConfigureCodeSamples(
this,
request,
options,
));
}
async configureMintlifyRepo(
request: shared.GithubConfigureMintlifyRepoRequest,
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(githubConfigureMintlifyRepo(
this,
request,
options,
));
}
async configureTarget(
request: shared.GithubConfigureTargetRequest,
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(githubConfigureTarget(
this,
request,
options,
));
}
async getAction(
request: operations.GetGitHubActionRequest,
options?: RequestOptions,
): Promise<operations.GetGitHubActionResponse> {
return unwrapAsync(githubGetAction(
this,
request,
options,
));
}
async storePublishingSecrets(
request: shared.GithubStorePublishingSecretsRequest,
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(githubStorePublishingSecrets(
this,
request,
options,
));
}
async triggerAction(
request: shared.GithubTriggerActionRequest,
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(githubTriggerAction(
this,
request,
options,
));
}
}