File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
- return await this.client.call('{{ method .method | caseLower }}', path, {
1
+ await this.client.call('{{ method .method | caseLower }}', path, {
2
2
{% for parameter in method .parameters .header %}
3
3
'{{ parameter .name }}': ${{ parameter .name | caseCamel | escapeKeyword }},
4
4
{% endfor %}
5
5
{% for key , header in method .headers %}
6
6
'{{ key }}': '{{ header }}',
7
7
{% endfor %}
8
- }, payload{% if method .type == ' location' %}, 'arraybuffer'{% endif %}
9
- );
8
+ }, payload{% if method .type == ' location' %}, 'arraybuffer'{% endif %});
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class {{ service.name | caseUcfirst }} extends Service {
63
63
{% else %}
64
64
{{ include (' node/base/requests/api.twig' ) }}
65
65
{% endif %}
66
- }
66
+ }
67
67
{% endfor %}
68
68
}
69
69
You can’t perform that action at this time.
0 commit comments