Skip to content

Commit 1186ade

Browse files
authored
feat!: remove referrer_id from shareLink API (#312)
1 parent 0f8855d commit 1186ade

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/generated/schema.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@
214214
"request": {
215215
"type": "object",
216216
"properties": {
217-
"referrer_id": {"type": "string", "maxLength": 64},
218217
"custom_id": {"type": "string", "maxLength": 64},
219218
"message": {"type": "string", "maxLength": 1000},
220219
"link_id": {"type": "string", "maxLength": 64}

src/generated/schemas.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ export type ShareInteractionResponse = zInfer<typeof ShareInteractionResponseSch
154154

155155
// SHARE_LINK
156156
export const ShareLinkRequestSchema = z.object({
157-
referrer_id: z.string().max(64).optional(),
158157
custom_id: z.string().max(64).optional(),
159158
message: z.string().max(1000),
160159
link_id: z.string().max(64).optional(),

0 commit comments

Comments
 (0)