mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
40 lines
858 B
TypeScript
40 lines
858 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 fieldId = '1';
|
|
|
|
const { status } = await client.updateField({
|
|
params: {
|
|
id: documentId,
|
|
fieldId,
|
|
},
|
|
body: {
|
|
type: 'SIGNATURE',
|
|
pageHeight: 2.5, // percent of page to occupy in height
|
|
pageWidth: 5, // percent of page to occupy in width
|
|
pageX: 10, // percent from left
|
|
pageY: 10, // percent from top
|
|
pageNumber: 1,
|
|
},
|
|
});
|
|
|
|
if (status !== 200) {
|
|
throw new Error('Failed to update field');
|
|
}
|
|
};
|
|
|
|
main().catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|