Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions schemas/timely-customer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,35 @@ export const timelyCustomer = defineType({
title: 'Timely Account ID',
validation: Rule => Rule.required(),
},
{
group: 'timely',
name: 'timelyAuthClientId',
type: 'string',
title: 'Timely Auth Client ID',
description: `
The Auth Client ID of the Timely account.
`,
validation: Rule => Rule.required(),
},
{
group: 'timely',
name: 'timelyAuthClientSecret',
type: 'string',
title: 'Timely Auth Client Secret',
description: `
The Auth Client Secret of the Timely account.
`,
validation: Rule => Rule.required(),
},
{
group: 'timely',
name: 'timelyAuthClientRedirectUri',
type: 'string',
title: 'Timely Auth Client Redirect URI',
description: `
The Auth Client Redirect URI of the Timely account. If not set, it is assumed to be 'urn:ietf:wg:oauth:2.0:oob'.
`,
},
{
group: 'timely',
name: 'timelyToken',
Expand All @@ -33,6 +62,16 @@ export const timelyCustomer = defineType({
`,
validation: Rule => Rule.required(),
},
{
group: 'timely',
name: 'timelyRefreshToken',
type: 'string',
title: 'Timely Refresh Token',
description: `
The refresh token of the Timely API token.
`,
validation: Rule => Rule.required(),
},
{
group: 'timely',
name: 'timelyDefaultClient',
Expand Down
Loading