Skip to content

Commit

Permalink
change response id types from number > string
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmcgowan committed Feb 5, 2024
1 parent 1b515a0 commit fec3dcb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/eighty-sloths-appear.md
@@ -0,0 +1,5 @@
---
"submitjson": patch
---

change submission response ids from type number > string
10 changes: 5 additions & 5 deletions v1.d.ts
Expand Up @@ -120,8 +120,8 @@ export interface components {
emailStatus?: string | null
/** @example Endpoint name {xxxyyzz} */
emailSubject?: string
/** @example 12345 */
endpointId?: number
/** @example xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx */
endpointId?: string
/** @example Test Contact Form */
endpointName?: string
/** @example XxJqpisK8 */
Expand All @@ -139,12 +139,12 @@ export interface components {
securityHoneypot?: boolean
/** @enum {string} */
submissionFormat?: 'raw' | 'pretty'
/** @example xxxx-xxxx-xxxx-xxx */
/** @example xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx */
submissionId?: string
/** @example ping */
submissionSound?: string
/** @example 12345 */
userId?: number
/** @example xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx */
userId?: string
/** @enum {string|null} */
webhookStatus?: 'success' | 'partial-success' | 'error'
/** @enum {string|null} */
Expand Down

0 comments on commit fec3dcb

Please sign in to comment.