We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8855d commit 1186adeCopy full SHA for 1186ade
src/generated/schema.json
@@ -214,7 +214,6 @@
214
"request": {
215
"type": "object",
216
"properties": {
217
- "referrer_id": {"type": "string", "maxLength": 64},
218
"custom_id": {"type": "string", "maxLength": 64},
219
"message": {"type": "string", "maxLength": 1000},
220
"link_id": {"type": "string", "maxLength": 64}
src/generated/schemas.ts
@@ -154,7 +154,6 @@ export type ShareInteractionResponse = zInfer<typeof ShareInteractionResponseSch
154
155
// SHARE_LINK
156
export const ShareLinkRequestSchema = z.object({
157
- referrer_id: z.string().max(64).optional(),
158
custom_id: z.string().max(64).optional(),
159
message: z.string().max(1000),
160
link_id: z.string().max(64).optional(),
0 commit comments