fix: redirect v2 beta url

This commit is contained in:
David Nguyen
2025-11-04 11:55:07 +11:00
parent bbf1dd3c6b
commit c89ca83f44
17 changed files with 31 additions and 23 deletions

View File

@ -13,7 +13,7 @@ export const createAttachmentRoute = authenticatedProcedure
path: '/envelope/attachment/create',
summary: 'Create attachment',
description: 'Create a new attachment for an envelope',
tags: ['Envelope Attachment'],
tags: ['Envelope Attachments'],
},
})
.input(ZCreateAttachmentRequestSchema)

View File

@ -13,7 +13,7 @@ export const deleteAttachmentRoute = authenticatedProcedure
path: '/envelope/attachment/delete',
summary: 'Delete attachment',
description: 'Delete an attachment from an envelope',
tags: ['Envelope Attachment'],
tags: ['Envelope Attachments'],
},
})
.input(ZDeleteAttachmentRequestSchema)

View File

@ -15,7 +15,7 @@ export const findAttachmentsRoute = maybeAuthenticatedProcedure
path: '/envelope/attachment',
summary: 'Find attachments',
description: 'Find all attachments for an envelope',
tags: ['Envelope Attachment'],
tags: ['Envelope Attachments'],
},
})
.input(ZFindAttachmentsRequestSchema)

View File

@ -13,7 +13,7 @@ export const updateAttachmentRoute = authenticatedProcedure
path: '/envelope/attachment/update',
summary: 'Update attachment',
description: 'Update an existing attachment',
tags: ['Envelope Attachment'],
tags: ['Envelope Attachments'],
},
})
.input(ZUpdateAttachmentRequestSchema)

View File

@ -20,7 +20,7 @@ export const createEnvelopeItemsRoute = authenticatedProcedure
path: '/envelope/item/create-many',
summary: 'Create envelope items',
description: 'Create multiple envelope items for an envelope',
tags: ['Envelope Item'],
tags: ['Envelope Items'],
},
})
.input(ZCreateEnvelopeItemsRequestSchema)

View File

@ -18,7 +18,7 @@ export const deleteEnvelopeItemRoute = authenticatedProcedure
path: '/envelope/item/delete',
summary: 'Delete envelope item',
description: 'Delete an envelope item from an envelope',
tags: ['Envelope Item'],
tags: ['Envelope Items'],
},
})
.input(ZDeleteEnvelopeItemRequestSchema)

View File

@ -20,7 +20,7 @@ export const deleteEnvelopeFieldRoute = authenticatedProcedure
path: '/envelope/field/delete',
summary: 'Delete envelope field',
description: 'Delete an envelope field',
tags: ['Envelope Field'],
tags: ['Envelope Fields'],
},
})
.input(ZDeleteEnvelopeFieldRequestSchema)

View File

@ -13,7 +13,7 @@ export const getEnvelopeFieldRoute = authenticatedProcedure
path: '/envelope/field/{fieldId}',
summary: 'Get envelope field',
description: 'Returns an envelope field given an ID',
tags: ['Envelope Field'],
tags: ['Envelope Fields'],
},
})
.input(ZGetEnvelopeFieldRequestSchema)

View File

@ -13,7 +13,7 @@ export const updateEnvelopeFieldsRoute = authenticatedProcedure
path: '/envelope/field/update-many',
summary: 'Update envelope fields',
description: 'Update multiple envelope fields for an envelope',
tags: ['Envelope Field'],
tags: ['Envelope Fields'],
},
})
.input(ZUpdateEnvelopeFieldsRequestSchema)

View File

@ -13,7 +13,7 @@ export const deleteEnvelopeRecipientRoute = authenticatedProcedure
path: '/envelope/recipient/delete',
summary: 'Delete envelope recipient',
description: 'Delete an envelope recipient',
tags: ['Envelope Recipient'],
tags: ['Envelope Recipients'],
},
})
.input(ZDeleteEnvelopeRecipientRequestSchema)

View File

@ -15,7 +15,7 @@ export const getEnvelopeRecipientRoute = authenticatedProcedure
path: '/envelope/recipient/{recipientId}',
summary: 'Get envelope recipient',
description: 'Returns an envelope recipient given an ID',
tags: ['Envelope Recipient'],
tags: ['Envelope Recipients'],
},
})
.input(ZGetEnvelopeRecipientRequestSchema)

View File

@ -13,7 +13,7 @@ export const updateEnvelopeRecipientsRoute = authenticatedProcedure
path: '/envelope/recipient/update-many',
summary: 'Update envelope recipients',
description: 'Update multiple recipients for an envelope',
tags: ['Envelope Recipient'],
tags: ['Envelope Recipients'],
},
})
.input(ZUpdateEnvelopeRecipientsRequestSchema)

View File

@ -16,7 +16,7 @@ export const updateEnvelopeItemsRoute = authenticatedProcedure
path: '/envelope/item/update-many',
summary: 'Update envelope items',
description: 'Update multiple envelope items for an envelope',
tags: ['Envelope Item'],
tags: ['Envelope Items'],
},
})
.input(ZUpdateEnvelopeItemsRequestSchema)