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
|
import { pick } from '@shared/core-utils'
import { HttpStatusCode, ResultList, RunnerRegistrationToken } from '@shared/models'
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class RunnerRegistrationTokensCommand extends AbstractCommand {
list (options: OverrideCommandOptions & {
start?: number
count?: number
sort?: string
} = {}) {
const path = '/api/v1/runners/registration-tokens'
return this.getRequestBody<ResultList<RunnerRegistrationToken>>({
...options,
path,
query: pick(options, [ 'start', 'count', 'sort' ]),
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
generate (options: OverrideCommandOptions = {}) {
const path = '/api/v1/runners/registration-tokens/generate'
return this.postBodyRequest({
...options,
path,
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
delete (options: OverrideCommandOptions & {
id: number
}) {
const path = '/api/v1/runners/registration-tokens/' + options.id
return this.deleteRequest({
...options,
path,
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
async getFirstRegistrationToken (options: OverrideCommandOptions = {}) {
const { data } = await this.list(options)
return data[0].registrationToken
}
}
|