mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
32 lines
614 B
TypeScript
32 lines
614 B
TypeScript
import { initClient } from '@ts-rest/core';
|
|
|
|
import { ApiContractV1 } from '../contract';
|
|
|
|
const main = async () => {
|
|
const client = initClient(ApiContractV1, {
|
|
baseUrl: 'http://localhost:3000/api/v1',
|
|
baseHeaders: {
|
|
authorization: 'Bearer <my-token>',
|
|
},
|
|
});
|
|
|
|
const documentId = '1';
|
|
const recipientId = '1';
|
|
|
|
const { status } = await client.deleteRecipient({
|
|
params: {
|
|
id: documentId,
|
|
recipientId,
|
|
},
|
|
});
|
|
|
|
if (status !== 200) {
|
|
throw new Error('Failed to update recipient');
|
|
}
|
|
};
|
|
|
|
main().catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|