DOCSTRING:
{% if item.added %}
Added: on v{{item.added}}
{% endif %}
{% if item.deprecated %}
Deprecated: since v{{item.deprecated}}
{% endif %}
{% if item.entrypoint %}
URI: {{item.entrypoint}}
{% endif %}
{% if item.docs %}
{{item.docs}}
{% endif %}
{% if item.changes %}
CHANGES:
{% for change in item.changes %}
- {{change.0}} - {{change.1}}
{% endfor %}
{% endif %}
{% if item.spec %}
PARAMS (SPEC):
{% endif %}
{% if param-style = "js" %}
{% if item.params-schema-js %}
PARAMS:
{{item.params-schema-js}}
{% endif %}
{% if item.result-schema-js %}
RESPONSE:
{{item.result-schema-js}}
{% endif %}
{% if item.webhook-schema-js %}
WEBHOOK PAYLOAD:
{{item.webhook-schema-js}}
{% endif %}
{% else %}
{% if item.params-schema-clj %}
PARAMS:
{{item.params-schema-clj}}
{% endif %}
{% if item.result-schema-clj %}
RESPONSE:
{{item.result-schema-clj}}
{% endif %}
{% if item.webhook-schema-clj %}
WEBHOOK PAYLOAD:
{{item.webhook-schema-clj}}
{% endif %}
{% endif %}