import { createPiece, PieceAuth } from '@activepieces/pieces-framework'; import { createCustomApiCallAction } from '@activepieces/pieces-common'; export const ashbyAuth = PieceAuth.CustomAuth({ required: true, props: { apiKey: PieceAuth.SecretText({ displayName: 'API key', required: true, }), }, }); export const ashby = createPiece({ displayName: 'Ashby', auth: ashbyAuth, minimumSupportedRelease: '0.36.1', logoUrl: 'https://cdn.activepieces.com/pieces/ashby.png', authors: ['AdamSelene'], actions: [ createCustomApiCallAction({ baseUrl: () => `https://api.ashbyhq.com/`, auth: ashbyAuth, authMapping: async (auth) => { const { apiKey } = auth.props; return { Authorization: `Basic ${Buffer.from(`${apiKey}:`).toString( 'base64' )}`, 'Content-Type': 'application/json', }; }, }), ], triggers: [], });