We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d24121 + d3b6c0a commit c9f42e5Copy full SHA for c9f42e5
1 file changed
lib/JobsResource.ts
@@ -69,7 +69,9 @@ export default class JobsResource {
69
70
// See below for an explanation on how this type signature works
71
async create(data: JobTemplate | null = null): Promise<Job> {
72
- const response = await this.cloudConvert.axios.post('jobs', data);
+ const response = await this.cloudConvert.axios.post('jobs', data, {
73
+ maxBodyLength: Infinity
74
+ });
75
return response.data.data;
76
}
77
0 commit comments