asana 3.0.2 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yaml +78 -38
- package/.swagger-codegen/VERSION +1 -1
- package/README.md +140 -29
- package/codegen/templates/README.mustache +129 -26
- package/codegen/templates/api.mustache +17 -15
- package/dist/ApiClient.js +6 -7
- package/dist/api/AllocationsApi.js +307 -0
- package/dist/api/AttachmentsApi.js +22 -95
- package/dist/api/AuditLogAPIApi.js +10 -14
- package/dist/api/BatchAPIApi.js +10 -14
- package/dist/api/CustomFieldSettingsApi.js +16 -23
- package/dist/api/CustomFieldsApi.js +38 -203
- package/dist/api/EventsApi.js +12 -16
- package/dist/api/GoalRelationshipsApi.js +26 -122
- package/dist/api/GoalsApi.js +48 -239
- package/dist/api/JobsApi.js +8 -32
- package/dist/api/MembershipsApi.js +73 -99
- package/dist/api/OrganizationExportsApi.js +12 -59
- package/dist/api/PortfolioMembershipsApi.js +20 -50
- package/dist/api/PortfoliosApi.js +56 -293
- package/dist/api/ProjectBriefsApi.js +20 -113
- package/dist/api/ProjectMembershipsApi.js +14 -41
- package/dist/api/ProjectStatusesApi.js +22 -95
- package/dist/api/ProjectTemplatesApi.js +28 -104
- package/dist/api/ProjectsApi.js +88 -446
- package/dist/api/RulesApi.js +8 -32
- package/dist/api/SectionsApi.js +34 -176
- package/dist/api/StatusUpdatesApi.js +22 -95
- package/dist/api/StoriesApi.js +26 -122
- package/dist/api/TagsApi.js +42 -167
- package/dist/api/TaskTemplatesApi.js +63 -72
- package/dist/api/TasksApi.js +173 -544
- package/dist/api/TeamMembershipsApi.js +26 -59
- package/dist/api/TeamsApi.js +36 -158
- package/dist/api/TimePeriodsApi.js +14 -41
- package/dist/api/TimeTrackingEntriesApi.js +26 -122
- package/dist/api/TypeaheadApi.js +12 -16
- package/dist/api/UserTaskListsApi.js +12 -59
- package/dist/api/UsersApi.js +32 -68
- package/dist/api/WebhooksApi.js +26 -122
- package/dist/api/WorkspaceMembershipsApi.js +20 -50
- package/dist/api/WorkspacesApi.js +26 -122
- package/dist/index.js +7 -0
- package/package.json +1 -1
- package/src/ApiClient.js +4 -4
- package/src/api/AllocationsApi.js +365 -0
- package/src/api/AttachmentsApi.js +42 -134
- package/src/api/AuditLogAPIApi.js +15 -17
- package/src/api/BatchAPIApi.js +15 -17
- package/src/api/CustomFieldSettingsApi.js +28 -32
- package/src/api/CustomFieldsApi.js +78 -290
- package/src/api/EventsApi.js +17 -19
- package/src/api/GoalRelationshipsApi.js +51 -173
- package/src/api/GoalsApi.js +100 -344
- package/src/api/JobsApi.js +11 -41
- package/src/api/MembershipsApi.js +105 -138
- package/src/api/OrganizationExportsApi.js +20 -80
- package/src/api/PortfolioMembershipsApi.js +37 -71
- package/src/api/PortfoliosApi.js +118 -422
- package/src/api/ProjectBriefsApi.js +38 -158
- package/src/api/ProjectMembershipsApi.js +24 -56
- package/src/api/ProjectStatusesApi.js +42 -134
- package/src/api/ProjectTemplatesApi.js +55 -149
- package/src/api/ProjectsApi.js +189 -647
- package/src/api/RulesApi.js +11 -41
- package/src/api/SectionsApi.js +69 -251
- package/src/api/StatusUpdatesApi.js +42 -134
- package/src/api/StoriesApi.js +51 -173
- package/src/api/TagsApi.js +86 -242
- package/src/api/TaskTemplatesApi.js +86 -95
- package/src/api/TasksApi.js +330 -799
- package/src/api/TeamMembershipsApi.js +50 -86
- package/src/api/TeamsApi.js +73 -227
- package/src/api/TimePeriodsApi.js +24 -56
- package/src/api/TimeTrackingEntriesApi.js +51 -173
- package/src/api/TypeaheadApi.js +17 -19
- package/src/api/UserTaskListsApi.js +20 -80
- package/src/api/UsersApi.js +63 -101
- package/src/api/WebhooksApi.js +51 -173
- package/src/api/WorkspaceMembershipsApi.js +37 -71
- package/src/api/WorkspacesApi.js +51 -173
- package/src/index.js +9 -2
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
8
8
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
*
|
|
10
|
-
* Swagger Codegen version: 3.0.
|
|
10
|
+
* Swagger Codegen version: 3.0.54
|
|
11
11
|
*
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*
|
|
@@ -18,7 +18,7 @@ var Collection = require('../utils/collection');
|
|
|
18
18
|
/**
|
|
19
19
|
* TaskTemplates service.
|
|
20
20
|
* @module api/TaskTemplatesApi
|
|
21
|
-
* @version 3.0.
|
|
21
|
+
* @version 3.0.4
|
|
22
22
|
*/
|
|
23
23
|
export class TaskTemplatesApi {
|
|
24
24
|
|
|
@@ -36,6 +36,59 @@ export class TaskTemplatesApi {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* Delete a task template
|
|
41
|
+
* A specific, existing task template can be deleted by making a DELETE request on the URL for that task template. Returns an empty data record.
|
|
42
|
+
* @param {String} task_template_gid Globally unique identifier for the task template.
|
|
43
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data and HTTP response
|
|
44
|
+
*/
|
|
45
|
+
deleteTaskTemplateWithHttpInfo(task_template_gid) {
|
|
46
|
+
|
|
47
|
+
let postBody = null;
|
|
48
|
+
// verify the required parameter 'task_template_gid' is set
|
|
49
|
+
if (task_template_gid === undefined || task_template_gid === null) {
|
|
50
|
+
throw new Error("Missing the required parameter 'task_template_gid' when calling deleteTaskTemplate");
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
let pathParams = {
|
|
54
|
+
'task_template_gid': task_template_gid
|
|
55
|
+
};
|
|
56
|
+
let queryParams = {};
|
|
57
|
+
|
|
58
|
+
let headerParams = {
|
|
59
|
+
|
|
60
|
+
};
|
|
61
|
+
let formParams = {
|
|
62
|
+
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
let authNames = ['personalAccessToken'];
|
|
66
|
+
let contentTypes = [];
|
|
67
|
+
let accepts = ['application/json; charset=UTF-8'];
|
|
68
|
+
let returnType = 'Blob';
|
|
69
|
+
|
|
70
|
+
return this.apiClient.callApi(
|
|
71
|
+
'/task_templates/{task_template_gid}', 'DELETE',
|
|
72
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
73
|
+
authNames, contentTypes, accepts, returnType
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Delete a task template
|
|
79
|
+
* A specific, existing task template can be deleted by making a DELETE request on the URL for that task template. Returns an empty data record.
|
|
80
|
+
* @param {<&vendorExtensions.x-jsdoc-type>} task_template_gid Globally unique identifier for the task template.
|
|
81
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/EmptyResponseData}
|
|
82
|
+
*/
|
|
83
|
+
deleteTaskTemplate(task_template_gid) {
|
|
84
|
+
|
|
85
|
+
return this.deleteTaskTemplateWithHttpInfo(task_template_gid)
|
|
86
|
+
.then(function(response_and_data) {
|
|
87
|
+
return response_and_data.data;
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
39
92
|
/**
|
|
40
93
|
* Get a task template
|
|
41
94
|
* Returns the complete task template record for a single task template.
|
|
@@ -71,36 +124,11 @@ export class TaskTemplatesApi {
|
|
|
71
124
|
let accepts = ['application/json; charset=UTF-8'];
|
|
72
125
|
let returnType = 'Blob';
|
|
73
126
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
pathParams, queryParams, headerParams, formParams, postBody,
|
|
80
|
-
authNames, contentTypes, accepts, returnType
|
|
81
|
-
),
|
|
82
|
-
this.apiClient,
|
|
83
|
-
{
|
|
84
|
-
'path': '/task_templates/{task_template_gid}',
|
|
85
|
-
'httpMethod': 'GET',
|
|
86
|
-
'pathParams': pathParams,
|
|
87
|
-
'queryParams': queryParams,
|
|
88
|
-
'headerParams': headerParams,
|
|
89
|
-
'formParams': formParams,
|
|
90
|
-
'bodyParam': postBody,
|
|
91
|
-
'authNames': authNames,
|
|
92
|
-
'contentTypes': contentTypes,
|
|
93
|
-
'accepts': accepts,
|
|
94
|
-
'returnType': returnType
|
|
95
|
-
}
|
|
96
|
-
)
|
|
97
|
-
} else {
|
|
98
|
-
return this.apiClient.callApi(
|
|
99
|
-
'/task_templates/{task_template_gid}', 'GET',
|
|
100
|
-
pathParams, queryParams, headerParams, formParams, postBody,
|
|
101
|
-
authNames, contentTypes, accepts, returnType
|
|
102
|
-
);
|
|
103
|
-
}
|
|
127
|
+
return this.apiClient.callApi(
|
|
128
|
+
'/task_templates/{task_template_gid}', 'GET',
|
|
129
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
130
|
+
authNames, contentTypes, accepts, returnType
|
|
131
|
+
);
|
|
104
132
|
}
|
|
105
133
|
|
|
106
134
|
/**
|
|
@@ -113,15 +141,10 @@ export class TaskTemplatesApi {
|
|
|
113
141
|
*/
|
|
114
142
|
getTaskTemplate(task_template_gid, opts) {
|
|
115
143
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
return this.getTaskTemplateWithHttpInfo(task_template_gid, opts)
|
|
121
|
-
.then(function(response_and_data) {
|
|
122
|
-
return response_and_data.data;
|
|
123
|
-
});
|
|
124
|
-
}
|
|
144
|
+
return this.getTaskTemplateWithHttpInfo(task_template_gid, opts)
|
|
145
|
+
.then(function(response_and_data) {
|
|
146
|
+
return response_and_data.data;
|
|
147
|
+
});
|
|
125
148
|
}
|
|
126
149
|
|
|
127
150
|
|
|
@@ -157,9 +180,8 @@ export class TaskTemplatesApi {
|
|
|
157
180
|
let contentTypes = [];
|
|
158
181
|
let accepts = ['application/json; charset=UTF-8'];
|
|
159
182
|
let returnType = 'Blob';
|
|
160
|
-
|
|
161
183
|
// Check if RETURN_COLLECTION is set and return a collection object if it is
|
|
162
|
-
if (this.apiClient.RETURN_COLLECTION
|
|
184
|
+
if (this.apiClient.RETURN_COLLECTION) {
|
|
163
185
|
return Collection.fromApiClient(
|
|
164
186
|
this.apiClient.callApi(
|
|
165
187
|
'/task_templates', 'GET',
|
|
@@ -181,13 +203,13 @@ export class TaskTemplatesApi {
|
|
|
181
203
|
'returnType': returnType
|
|
182
204
|
}
|
|
183
205
|
)
|
|
184
|
-
} else {
|
|
185
|
-
return this.apiClient.callApi(
|
|
186
|
-
'/task_templates', 'GET',
|
|
187
|
-
pathParams, queryParams, headerParams, formParams, postBody,
|
|
188
|
-
authNames, contentTypes, accepts, returnType
|
|
189
|
-
);
|
|
190
206
|
}
|
|
207
|
+
|
|
208
|
+
return this.apiClient.callApi(
|
|
209
|
+
'/task_templates', 'GET',
|
|
210
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
211
|
+
authNames, contentTypes, accepts, returnType
|
|
212
|
+
);
|
|
191
213
|
}
|
|
192
214
|
|
|
193
215
|
/**
|
|
@@ -201,16 +223,15 @@ export class TaskTemplatesApi {
|
|
|
201
223
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/TaskTemplateResponseArray}
|
|
202
224
|
*/
|
|
203
225
|
getTaskTemplates(opts) {
|
|
204
|
-
|
|
205
226
|
// Check if RETURN_COLLECTION is set and return a collection object if it is
|
|
206
|
-
if (this.apiClient.RETURN_COLLECTION
|
|
207
|
-
return this.getTaskTemplatesWithHttpInfo(opts)
|
|
208
|
-
} else {
|
|
227
|
+
if (this.apiClient.RETURN_COLLECTION) {
|
|
209
228
|
return this.getTaskTemplatesWithHttpInfo(opts)
|
|
210
|
-
.then(function(response_and_data) {
|
|
211
|
-
return response_and_data.data;
|
|
212
|
-
});
|
|
213
229
|
}
|
|
230
|
+
|
|
231
|
+
return this.getTaskTemplatesWithHttpInfo(opts)
|
|
232
|
+
.then(function(response_and_data) {
|
|
233
|
+
return response_and_data.data;
|
|
234
|
+
});
|
|
214
235
|
}
|
|
215
236
|
|
|
216
237
|
|
|
@@ -250,36 +271,11 @@ export class TaskTemplatesApi {
|
|
|
250
271
|
let accepts = ['application/json; charset=UTF-8'];
|
|
251
272
|
let returnType = 'Blob';
|
|
252
273
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
pathParams, queryParams, headerParams, formParams, postBody,
|
|
259
|
-
authNames, contentTypes, accepts, returnType
|
|
260
|
-
),
|
|
261
|
-
this.apiClient,
|
|
262
|
-
{
|
|
263
|
-
'path': '/task_templates/{task_template_gid}/instantiateTask',
|
|
264
|
-
'httpMethod': 'POST',
|
|
265
|
-
'pathParams': pathParams,
|
|
266
|
-
'queryParams': queryParams,
|
|
267
|
-
'headerParams': headerParams,
|
|
268
|
-
'formParams': formParams,
|
|
269
|
-
'bodyParam': postBody,
|
|
270
|
-
'authNames': authNames,
|
|
271
|
-
'contentTypes': contentTypes,
|
|
272
|
-
'accepts': accepts,
|
|
273
|
-
'returnType': returnType
|
|
274
|
-
}
|
|
275
|
-
)
|
|
276
|
-
} else {
|
|
277
|
-
return this.apiClient.callApi(
|
|
278
|
-
'/task_templates/{task_template_gid}/instantiateTask', 'POST',
|
|
279
|
-
pathParams, queryParams, headerParams, formParams, postBody,
|
|
280
|
-
authNames, contentTypes, accepts, returnType
|
|
281
|
-
);
|
|
282
|
-
}
|
|
274
|
+
return this.apiClient.callApi(
|
|
275
|
+
'/task_templates/{task_template_gid}/instantiateTask', 'POST',
|
|
276
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
277
|
+
authNames, contentTypes, accepts, returnType
|
|
278
|
+
);
|
|
283
279
|
}
|
|
284
280
|
|
|
285
281
|
/**
|
|
@@ -293,15 +289,10 @@ export class TaskTemplatesApi {
|
|
|
293
289
|
*/
|
|
294
290
|
instantiateTask(task_template_gid, opts) {
|
|
295
291
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
return this.instantiateTaskWithHttpInfo(task_template_gid, opts)
|
|
301
|
-
.then(function(response_and_data) {
|
|
302
|
-
return response_and_data.data;
|
|
303
|
-
});
|
|
304
|
-
}
|
|
292
|
+
return this.instantiateTaskWithHttpInfo(task_template_gid, opts)
|
|
293
|
+
.then(function(response_and_data) {
|
|
294
|
+
return response_and_data.data;
|
|
295
|
+
});
|
|
305
296
|
}
|
|
306
297
|
|
|
307
298
|
}
|