mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
⚡ Minor cleanup HelpScout-Node
This commit is contained in:
parent
5caaa741bb
commit
a45c9acb67
|
@ -584,7 +584,7 @@ export const conversationFields = [
|
||||||
value: 'asc',
|
value: 'asc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Desc',
|
name: 'DESC',
|
||||||
value: 'desc',
|
value: 'desc',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -687,7 +687,7 @@ export const customerFields = [
|
||||||
value: 'asc',
|
value: 'asc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Desc',
|
name: 'DESC',
|
||||||
value: 'desc',
|
value: 'desc',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -12,7 +12,6 @@ import {
|
||||||
import {
|
import {
|
||||||
get,
|
get,
|
||||||
} from 'lodash';
|
} from 'lodash';
|
||||||
import { queryResult } from 'pg-promise';
|
|
||||||
|
|
||||||
export async function helpscoutApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
export async function helpscoutApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
let options: OptionsWithUri = {
|
let options: OptionsWithUri = {
|
||||||
|
|
Loading…
Reference in a new issue