Skip to content

Commit 09893b2

Browse files
committed
Lint fixes
1 parent 9c84c0a commit 09893b2

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

src/clients/core/macros.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const {Client} = require('../client');
2828
* @property {RecursivePartial<Macro>} macro - The macro object to create or update.
2929
*/
3030

31-
3231
/**
3332
* The Macros class provides methods for interacting with the Zendesk Macros API.
3433
* @see {@link https://developer.zendesk.com/api-reference/ticketing/business-rules/macros/} Zendesk Macros API

src/clients/core/tickets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const {Client} = require('../client');
130130
/**
131131
* @typedef {object} Via
132132
* @property {string} [channel] - How the ticket or event was created expressed as a via type or via id
133-
* @property {object} source
133+
* @property {object} source - For some channels a source object gives more information about how or why the ticket or event was created
134134
*/
135135

136136
/**

src/clients/helpcenter/articles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ class Articles extends Client {
6767
return this.getAll([locale, 'articles']);
6868
}
6969

70-
7170
/**
7271
* List articles by section ID
7372
* @param {number} sectionID - The section ID to filter articles by

src/clients/helpcenter/categories.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const {ApiTypes} = require('../../constants');
1818
* @property {string} [url] - The API url of this category
1919
*/
2020

21-
2221
class Categories extends Client {
2322
constructor(options) {
2423
super(options, ApiTypes.helpcenter);

0 commit comments

Comments
 (0)