Commit Graph

279 Commits

Author SHA1 Message Date
93aece9644 chore: dependency updates (#1808) 2025-05-22 14:30:22 +10:00
44bc769e60 v1.11.1 2025-05-20 22:37:46 +10:00
8540f24de0 v1.11.0 2025-05-19 15:44:10 +10:00
e40c5d9d24 v1.10.3 2025-05-03 09:23:25 +10:00
bf1c1ff9dc v1.10.2 2025-05-03 08:11:27 +10:00
ac7d24eb12 v1.10.1 2025-05-03 07:39:19 +10:00
8c9dd5e372 v1.10.0 2025-05-02 12:03:08 +10:00
dd2ef3a657 v1.10.0-rc.5 2025-04-17 23:01:43 +10:00
e613e0e347 feat: support embedded authoring for creation (#1741)
Adds support for creating documents and templates
using our embed components.

Support is super primitive at the moment and is being polished.
2025-04-11 00:20:39 +10:00
da71613c9f v1.10.0-rc.4 2025-03-31 20:02:22 +11:00
a87af910c7 v1.10.0-rc.2 2025-03-28 01:50:59 +11:00
231f51bd1f v1.10.0-rc.1 2025-03-22 17:34:33 +11:00
c6743a7cec v1.10.0-rc.0 2025-03-22 03:23:23 +11:00
8d6bf91d12 fix: persist theme cookie for a much longer time (#1693) 2025-03-12 16:09:37 +11:00
422770a8c7 feat: allow fields prefill when generating a document from a template (#1615)
This change allows API users to pre-fill fields with values by
passing the data in the request body. Example body for V2 API endpoint
`/api/v2-beta/template/use`:

```json
{
    "templateId": 1,
    "recipients": [
        {
            "id": 1,
            "email": "signer1@mail.com",
            "name": "Signer 1"
        },
        {
            "id": 2,
            "email": "signer2@mail.com",
            "name": "Signer 2"
        }
    ],
    "prefillValues": [
        {
            "id": 14,
            "fieldMeta": {
                "type": "text",
                "label": "my label",
                "placeholder": "text placeholder test",
                "text": "auto-sign value",
                "characterLimit": 25,
                "textAlign": "right",
                "fontSize": 94,
                "required": true
            }
        },
        {
            "id": 15,
            "fieldMeta": {
                "type": "radio",
                "label": "radio label",
                "placeholder": "new radio placeholder",
                "required": false,
                "readOnly": true,
                "values": [
                    {
                        "id": 2,
                        "checked": true,
                        "value": "radio val 1"
                    },
                    {
                        "id": 3,
                        "checked": false,
                        "value": "radio val 2"
                    }
                ]
            }
        },
        {
            "id": 16,
            "fieldMeta": {
                "type": "dropdown",
                "label": "dropdown label",
                "placeholder": "DD placeholder",
                "required": false,
                "readOnly": false,
                "values": [
                    {
                        "value": "option 1"
                    },
                    {
                        "value": "option 2"
                    },
                    {
                        "value": "option 3"
                    }
                ],
                "defaultValue": "option 2"
            }
        }
    ],
    "distributeDocument": false,
    "customDocumentDataId": ""
}
```
2025-03-06 19:45:33 +11:00
ad520bb032 fix: remove oauth from embeds 2025-02-27 14:08:59 +11:00
596d30e2e5 fix: remove lazy pdf loader 2025-02-26 21:48:06 +11:00
7e8955b89c fix: add posthog error monitor 2025-02-25 15:14:45 +11:00
113ab293bb chore: make all the docker stuff work 2025-02-14 14:53:01 +11:00
92db4d68db fix: cleanup env variables 2025-02-13 20:56:44 +11:00
ebc2b00067 fix: add sign up hook 2025-02-13 20:21:23 +11:00
87dcdd44cd chore: update local seed data (#1622)
Add multiple example documents, pending documents, and templates for
both admin and example users
2025-02-13 19:50:05 +11:00
c9e8a32471 feat: bulk send templates via csv (#1578)
Implements a bulk send feature allowing users to upload a CSV file to
create multiple documents from a template. Includes CSV template
generation, background processing, and email notifications.
2025-02-13 18:44:29 +11:00
383b5f78f0 feat: migrate nextjs to rr7 2025-02-13 14:10:38 +11:00
dc36a8182c v1.9.0-rc.11 2025-01-21 09:49:22 +11:00
058d9dd0ba v1.9.0-rc.10 2025-01-20 19:54:39 +11:00
7c1e0f34e8 v1.9.0-rc.9 2025-01-20 16:08:15 +11:00
0d3864548c fix: bump trpc and openapi packages (#1591) 2025-01-19 22:07:02 +11:00
5750f2b477 feat: add prisma json types (#1583) 2025-01-15 13:46:45 +11:00
901be70f97 feat: add consistent response schemas (#1582) 2025-01-14 00:43:35 +11:00
dcaccb65f2 v1.9.0-rc.8 2025-01-13 10:21:05 +11:00
4e197ac24c v1.9.0-rc.7 2025-01-09 15:07:11 +11:00
07c852744b v1.9.0-rc.6 2025-01-08 20:18:09 +11:00
cfe7b3a51f fix: remove marketing (#1562) 2024-12-31 15:45:22 +11:00
98b2da5018 v1.9.0-rc.5 2024-12-26 13:41:04 +11:00
22c9fb777b fix: perf improvements 2024-12-18 15:01:57 +11:00
2da051a7f9 v1.9.0-rc.4 2024-12-18 08:14:50 +11:00
861e9c976b v1.9.0-rc.3 2024-12-16 09:35:33 +11:00
b4a7f1887d feat: add trpc openapi (#1535) 2024-12-14 01:23:35 +09:00
a21ee2cea6 v1.9.0-rc.2 2024-12-13 15:16:26 +11:00
c9fe134852 v1.9.0-rc.1 2024-12-12 10:31:44 +11:00
ed862413b1 v1.9.0-rc.0 2024-12-11 09:48:01 +11:00
9d02ab4a5e feat: open page api (#1419) 2024-12-10 21:19:05 +11:00
9f45fe62e4 fix: refactor teams router (#1500) 2024-12-05 22:14:47 +09:00
0e7e9e17c9 v1.8.1 2024-12-05 13:57:05 +11:00
b3ccb3d26f v1.8.1-rc.9 2024-12-05 13:53:35 +11:00
0c53f5b061 v1.8.1-rc.8 2024-12-04 23:29:15 +11:00
5e08d0cffb v1.8.1-rc.7 2024-12-04 22:43:41 +11:00
a687064a42 v1.8.1-rc.6 2024-12-04 14:58:29 +11:00
4282a96ee7 v1.8.1-rc.5 2024-12-03 15:44:10 +11:00