-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlists.ts
216 lines (193 loc) · 7.44 KB
/
lists.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
import * as Models from './models';
import * as Parameters from './parameters';
import { Client } from '../clients';
import { Callback, RequestConfig } from '../types';
export class Lists {
constructor(private client: Client) {}
/** Get information about a List */
async getList<T = unknown>(parameters: Parameters.GetList, callback: Callback<T>): Promise<void>;
/** Get information about a List */
async getList<T = unknown>(parameters: Parameters.GetList, callback?: never): Promise<T>;
async getList<T = unknown>(parameters: Parameters.GetList, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}`,
method: 'GET',
params: {
fields: parameters.fields,
},
};
return this.client.sendRequest(config, callback);
}
/** Update the properties of a List */
async updateList<T = unknown>(parameters: Parameters.UpdateList, callback: Callback<T>): Promise<void>;
/** Update the properties of a List */
async updateList<T = unknown>(parameters: Parameters.UpdateList, callback?: never): Promise<T>;
async updateList<T = unknown>(parameters: Parameters.UpdateList, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}`,
method: 'PUT',
params: {
name: parameters.name,
closed: parameters.closed,
idBoard: parameters.idBoard,
pos: parameters.pos,
subscribed: parameters.subscribed,
},
};
return this.client.sendRequest(config, callback);
}
/** Create a new List on a Board */
async createList<T = Models.List>(parameters: Parameters.CreateList, callback: Callback<T>): Promise<void>;
/** Create a new List on a Board */
async createList<T = Models.List>(parameters: Parameters.CreateList, callback?: never): Promise<T>;
async createList<T = Models.List>(parameters: Parameters.CreateList, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: '/lists',
method: 'POST',
params: {
name: parameters.name,
idBoard: parameters.idBoard,
idListSource: parameters.idListSource,
pos: parameters.pos,
},
};
return this.client.sendRequest(config, callback);
}
/** Archive all cards in a list */
async archiveAllCardsInList<T = unknown>(
parameters: Parameters.ArchiveAllCardsInList,
callback: Callback<T>,
): Promise<void>;
/** Archive all cards in a list */
async archiveAllCardsInList<T = unknown>(parameters: Parameters.ArchiveAllCardsInList, callback?: never): Promise<T>;
async archiveAllCardsInList<T = unknown>(
parameters: Parameters.ArchiveAllCardsInList,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/archiveAllCards`,
method: 'POST',
};
return this.client.sendRequest(config, callback);
}
/** Move all Cards in a List */
async moveAllCardsInList<T = unknown>(
parameters: Parameters.MoveAllCardsInList,
callback: Callback<T>,
): Promise<void>;
/** Move all Cards in a List */
async moveAllCardsInList<T = unknown>(parameters: Parameters.MoveAllCardsInList, callback?: never): Promise<T>;
async moveAllCardsInList<T = unknown>(
parameters: Parameters.MoveAllCardsInList,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/moveAllCards`,
method: 'POST',
params: {
idBoard: parameters.idBoard,
idList: parameters.idList,
},
};
return this.client.sendRequest(config, callback);
}
/** Archive or unarchive a list */
async setListCloseState<T = Models.List>(
parameters: Parameters.SetListCloseState,
callback: Callback<T>,
): Promise<void>;
/** Archive or unarchive a list */
async setListCloseState<T = Models.List>(parameters: Parameters.SetListCloseState, callback?: never): Promise<T>;
async setListCloseState<T = Models.List>(
parameters: Parameters.SetListCloseState,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/closed`,
method: 'PUT',
params: {
value: parameters.value,
},
};
return this.client.sendRequest(config, callback);
}
/** Move a List to a different Board */
async moveListToDifferentBoard<T = unknown>(
parameters: Parameters.MoveListToDifferentBoard,
callback: Callback<T>,
): Promise<void>;
/** Move a List to a different Board */
async moveListToDifferentBoard<T = unknown>(
parameters: Parameters.MoveListToDifferentBoard,
callback?: never,
): Promise<T>;
async moveListToDifferentBoard<T = unknown>(
parameters: Parameters.MoveListToDifferentBoard,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/idBoard`,
method: 'PUT',
params: {
value: parameters.value,
},
};
return this.client.sendRequest(config, callback);
}
/** Rename a list */
async renameList<T = unknown>(parameters: Parameters.RenameList, callback: Callback<T>): Promise<void>;
/** Rename a list */
async renameList<T = unknown>(parameters: Parameters.RenameList, callback?: never): Promise<T>;
async renameList<T = unknown>(parameters: Parameters.RenameList, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/${parameters.field}`,
method: 'PUT',
params: {
value: parameters.value,
},
};
return this.client.sendRequest(config, callback);
}
/** Get the Actions on a List */
async getListActions<T = unknown>(parameters: Parameters.GetListActions, callback: Callback<T>): Promise<void>;
/** Get the Actions on a List */
async getListActions<T = unknown>(parameters: Parameters.GetListActions, callback?: never): Promise<T>;
async getListActions<T = unknown>(parameters: Parameters.GetListActions, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/actions`,
method: 'GET',
params: {
filter: parameters.filter,
},
};
return this.client.sendRequest(config, callback);
}
/** Get the board a list is on */
async getListBoard<T = unknown>(parameters: Parameters.GetListBoard, callback: Callback<T>): Promise<void>;
/** Get the board a list is on */
async getListBoard<T = unknown>(parameters: Parameters.GetListBoard, callback?: never): Promise<T>;
async getListBoard<T = unknown>(parameters: Parameters.GetListBoard, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/board`,
method: 'GET',
params: {
fields: parameters.fields,
},
};
return this.client.sendRequest(config, callback);
}
/** List the cards in a list */
async getListCards<T = Models.Card[]>(parameters: Parameters.GetListCards, callback: Callback<T>): Promise<void>;
/** List the cards in a list */
async getListCards<T = Models.Card[]>(parameters: Parameters.GetListCards, callback?: never): Promise<T>;
async getListCards<T = Models.Card[]>(
parameters: Parameters.GetListCards,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/lists/${parameters.id}/cards`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
}