dub 0.62.2 → 0.62.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +10 -10
- package/bin/mcp-server.js.map +23 -23
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/clickevent.d.ts +4 -4
- package/dist/commonjs/models/components/leadcreatedevent.d.ts +4 -4
- package/dist/commonjs/models/components/leadevent.d.ts +4 -4
- package/dist/commonjs/models/components/linkclickedevent.d.ts +4 -4
- package/dist/commonjs/models/components/linkschema.d.ts +5 -5
- package/dist/commonjs/models/components/linkwebhookevent.d.ts +4 -4
- package/dist/commonjs/models/components/salecreatedevent.d.ts +4 -4
- package/dist/commonjs/models/components/saleevent.d.ts +4 -4
- package/dist/commonjs/models/components/workspaceschema.d.ts +6 -6
- package/dist/commonjs/models/components/workspaceschema.d.ts.map +1 -1
- package/dist/commonjs/models/components/workspaceschema.js +4 -4
- package/dist/commonjs/models/components/workspaceschema.js.map +1 -1
- package/dist/commonjs/models/operations/bulkcreatelinks.d.ts +5 -5
- package/dist/commonjs/models/operations/bulkupdatelinks.d.ts +5 -5
- package/dist/commonjs/models/operations/createlink.d.ts +5 -5
- package/dist/commonjs/models/operations/createpartner.d.ts +5 -5
- package/dist/commonjs/models/operations/createpartnerlink.d.ts +5 -5
- package/dist/commonjs/models/operations/createreferralsembedtoken.d.ts +5 -5
- package/dist/commonjs/models/operations/updatelink.d.ts +4 -4
- package/dist/commonjs/models/operations/upsertlink.d.ts +5 -5
- package/dist/commonjs/models/operations/upsertpartnerlink.d.ts +5 -5
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/clickevent.d.ts +4 -4
- package/dist/esm/models/components/leadcreatedevent.d.ts +4 -4
- package/dist/esm/models/components/leadevent.d.ts +4 -4
- package/dist/esm/models/components/linkclickedevent.d.ts +4 -4
- package/dist/esm/models/components/linkschema.d.ts +5 -5
- package/dist/esm/models/components/linkwebhookevent.d.ts +4 -4
- package/dist/esm/models/components/salecreatedevent.d.ts +4 -4
- package/dist/esm/models/components/saleevent.d.ts +4 -4
- package/dist/esm/models/components/workspaceschema.d.ts +6 -6
- package/dist/esm/models/components/workspaceschema.d.ts.map +1 -1
- package/dist/esm/models/components/workspaceschema.js +4 -4
- package/dist/esm/models/components/workspaceschema.js.map +1 -1
- package/dist/esm/models/operations/bulkcreatelinks.d.ts +5 -5
- package/dist/esm/models/operations/bulkupdatelinks.d.ts +5 -5
- package/dist/esm/models/operations/createlink.d.ts +5 -5
- package/dist/esm/models/operations/createpartner.d.ts +5 -5
- package/dist/esm/models/operations/createpartnerlink.d.ts +5 -5
- package/dist/esm/models/operations/createreferralsembedtoken.d.ts +5 -5
- package/dist/esm/models/operations/updatelink.d.ts +4 -4
- package/dist/esm/models/operations/upsertlink.d.ts +5 -5
- package/dist/esm/models/operations/upsertpartnerlink.d.ts +5 -5
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/clickevent.ts +4 -4
- package/src/models/components/leadcreatedevent.ts +4 -4
- package/src/models/components/leadevent.ts +4 -4
- package/src/models/components/linkclickedevent.ts +4 -4
- package/src/models/components/linkschema.ts +5 -5
- package/src/models/components/linkwebhookevent.ts +4 -4
- package/src/models/components/salecreatedevent.ts +4 -4
- package/src/models/components/saleevent.ts +4 -4
- package/src/models/components/workspaceschema.ts +10 -10
- package/src/models/operations/bulkcreatelinks.ts +5 -5
- package/src/models/operations/bulkupdatelinks.ts +5 -5
- package/src/models/operations/createlink.ts +5 -5
- package/src/models/operations/createpartner.ts +5 -5
- package/src/models/operations/createpartnerlink.ts +5 -5
- package/src/models/operations/createreferralsembedtoken.ts +5 -5
- package/src/models/operations/updatelink.ts +4 -4
- package/src/models/operations/upsertlink.ts +5 -5
- package/src/models/operations/upsertpartnerlink.ts +5 -5
|
@@ -96,23 +96,23 @@ export type UpsertLinkRequestBody = {
|
|
|
96
96
|
*/
|
|
97
97
|
password?: string | null | undefined;
|
|
98
98
|
/**
|
|
99
|
-
* Whether the short link uses Custom
|
|
99
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
100
100
|
*/
|
|
101
101
|
proxy?: boolean | undefined;
|
|
102
102
|
/**
|
|
103
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
103
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
104
104
|
*/
|
|
105
105
|
title?: string | null | undefined;
|
|
106
106
|
/**
|
|
107
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
107
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
108
108
|
*/
|
|
109
109
|
description?: string | null | undefined;
|
|
110
110
|
/**
|
|
111
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
111
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
112
112
|
*/
|
|
113
113
|
image?: string | null | undefined;
|
|
114
114
|
/**
|
|
115
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
115
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
116
116
|
*/
|
|
117
117
|
video?: string | null | undefined;
|
|
118
118
|
/**
|
|
@@ -62,23 +62,23 @@ export type UpsertPartnerLinkLinkProps = {
|
|
|
62
62
|
*/
|
|
63
63
|
password?: string | null | undefined;
|
|
64
64
|
/**
|
|
65
|
-
* Whether the short link uses Custom
|
|
65
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
66
66
|
*/
|
|
67
67
|
proxy?: boolean | undefined;
|
|
68
68
|
/**
|
|
69
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
69
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
70
70
|
*/
|
|
71
71
|
title?: string | null | undefined;
|
|
72
72
|
/**
|
|
73
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
73
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
74
74
|
*/
|
|
75
75
|
description?: string | null | undefined;
|
|
76
76
|
/**
|
|
77
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
77
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
78
78
|
*/
|
|
79
79
|
image?: string | null | undefined;
|
|
80
80
|
/**
|
|
81
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
81
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
82
82
|
*/
|
|
83
83
|
video?: string | null | undefined;
|
|
84
84
|
/**
|
package/jsr.json
CHANGED
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -61,7 +61,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
61
61
|
export const SDK_METADATA = {
|
|
62
62
|
language: "typescript",
|
|
63
63
|
openapiDocVersion: "0.0.1",
|
|
64
|
-
sdkVersion: "0.62.
|
|
65
|
-
genVersion: "2.
|
|
66
|
-
userAgent: "speakeasy-sdk/typescript 0.62.
|
|
64
|
+
sdkVersion: "0.62.4",
|
|
65
|
+
genVersion: "2.621.3",
|
|
66
|
+
userAgent: "speakeasy-sdk/typescript 0.62.4 2.621.3 0.0.1 dub",
|
|
67
67
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -338,19 +338,19 @@ export type Link = {
|
|
|
338
338
|
password: string | null;
|
|
339
339
|
proxy: boolean;
|
|
340
340
|
/**
|
|
341
|
-
* The title of the short link. Will be used for Custom
|
|
341
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
342
342
|
*/
|
|
343
343
|
title: string | null;
|
|
344
344
|
/**
|
|
345
|
-
* The description of the short link. Will be used for Custom
|
|
345
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
346
346
|
*/
|
|
347
347
|
description: string | null;
|
|
348
348
|
/**
|
|
349
|
-
* The image of the short link. Will be used for Custom
|
|
349
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
350
350
|
*/
|
|
351
351
|
image: string | null;
|
|
352
352
|
/**
|
|
353
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
353
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
354
354
|
*/
|
|
355
355
|
video: string | null;
|
|
356
356
|
rewrite: boolean;
|
|
@@ -377,19 +377,19 @@ export type LeadCreatedEventLink = {
|
|
|
377
377
|
password: string | null;
|
|
378
378
|
proxy: boolean;
|
|
379
379
|
/**
|
|
380
|
-
* The title of the short link. Will be used for Custom
|
|
380
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
381
381
|
*/
|
|
382
382
|
title: string | null;
|
|
383
383
|
/**
|
|
384
|
-
* The description of the short link. Will be used for Custom
|
|
384
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
385
385
|
*/
|
|
386
386
|
description: string | null;
|
|
387
387
|
/**
|
|
388
|
-
* The image of the short link. Will be used for Custom
|
|
388
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
389
389
|
*/
|
|
390
390
|
image: string | null;
|
|
391
391
|
/**
|
|
392
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
392
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
393
393
|
*/
|
|
394
394
|
video: string | null;
|
|
395
395
|
rewrite: boolean;
|
|
@@ -338,19 +338,19 @@ export type LeadEventLink = {
|
|
|
338
338
|
password: string | null;
|
|
339
339
|
proxy: boolean;
|
|
340
340
|
/**
|
|
341
|
-
* The title of the short link. Will be used for Custom
|
|
341
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
342
342
|
*/
|
|
343
343
|
title: string | null;
|
|
344
344
|
/**
|
|
345
|
-
* The description of the short link. Will be used for Custom
|
|
345
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
346
346
|
*/
|
|
347
347
|
description: string | null;
|
|
348
348
|
/**
|
|
349
|
-
* The image of the short link. Will be used for Custom
|
|
349
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
350
350
|
*/
|
|
351
351
|
image: string | null;
|
|
352
352
|
/**
|
|
353
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
353
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
354
354
|
*/
|
|
355
355
|
video: string | null;
|
|
356
356
|
rewrite: boolean;
|
|
@@ -338,19 +338,19 @@ export type LinkClickedEventLink = {
|
|
|
338
338
|
password: string | null;
|
|
339
339
|
proxy: boolean;
|
|
340
340
|
/**
|
|
341
|
-
* The title of the short link. Will be used for Custom
|
|
341
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
342
342
|
*/
|
|
343
343
|
title: string | null;
|
|
344
344
|
/**
|
|
345
|
-
* The description of the short link. Will be used for Custom
|
|
345
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
346
346
|
*/
|
|
347
347
|
description: string | null;
|
|
348
348
|
/**
|
|
349
|
-
* The image of the short link. Will be used for Custom
|
|
349
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
350
350
|
*/
|
|
351
351
|
image: string | null;
|
|
352
352
|
/**
|
|
353
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
353
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
354
354
|
*/
|
|
355
355
|
video: string | null;
|
|
356
356
|
rewrite: boolean;
|
|
@@ -329,23 +329,23 @@ export type LinkSchema = {
|
|
|
329
329
|
*/
|
|
330
330
|
password: string | null;
|
|
331
331
|
/**
|
|
332
|
-
* Whether the short link uses Custom
|
|
332
|
+
* Whether the short link uses Custom Link Previews feature.
|
|
333
333
|
*/
|
|
334
334
|
proxy?: boolean | undefined;
|
|
335
335
|
/**
|
|
336
|
-
* The title of the short link. Will be used for Custom
|
|
336
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
337
337
|
*/
|
|
338
338
|
title: string | null;
|
|
339
339
|
/**
|
|
340
|
-
* The description of the short link. Will be used for Custom
|
|
340
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
341
341
|
*/
|
|
342
342
|
description: string | null;
|
|
343
343
|
/**
|
|
344
|
-
* The image of the short link. Will be used for Custom
|
|
344
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
345
345
|
*/
|
|
346
346
|
image: string | null;
|
|
347
347
|
/**
|
|
348
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
348
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
349
349
|
*/
|
|
350
350
|
video: string | null;
|
|
351
351
|
/**
|
|
@@ -333,19 +333,19 @@ export type LinkWebhookEventLink = {
|
|
|
333
333
|
password: string | null;
|
|
334
334
|
proxy: boolean;
|
|
335
335
|
/**
|
|
336
|
-
* The title of the short link. Will be used for Custom
|
|
336
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
337
337
|
*/
|
|
338
338
|
title: string | null;
|
|
339
339
|
/**
|
|
340
|
-
* The description of the short link. Will be used for Custom
|
|
340
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
341
341
|
*/
|
|
342
342
|
description: string | null;
|
|
343
343
|
/**
|
|
344
|
-
* The image of the short link. Will be used for Custom
|
|
344
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
345
345
|
*/
|
|
346
346
|
image: string | null;
|
|
347
347
|
/**
|
|
348
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
348
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
349
349
|
*/
|
|
350
350
|
video: string | null;
|
|
351
351
|
rewrite: boolean;
|
|
@@ -377,19 +377,19 @@ export type SaleCreatedEventLink = {
|
|
|
377
377
|
password: string | null;
|
|
378
378
|
proxy: boolean;
|
|
379
379
|
/**
|
|
380
|
-
* The title of the short link. Will be used for Custom
|
|
380
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
381
381
|
*/
|
|
382
382
|
title: string | null;
|
|
383
383
|
/**
|
|
384
|
-
* The description of the short link. Will be used for Custom
|
|
384
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
385
385
|
*/
|
|
386
386
|
description: string | null;
|
|
387
387
|
/**
|
|
388
|
-
* The image of the short link. Will be used for Custom
|
|
388
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
389
389
|
*/
|
|
390
390
|
image: string | null;
|
|
391
391
|
/**
|
|
392
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
392
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
393
393
|
*/
|
|
394
394
|
video: string | null;
|
|
395
395
|
rewrite: boolean;
|
|
@@ -321,19 +321,19 @@ export type SaleEventLink = {
|
|
|
321
321
|
password: string | null;
|
|
322
322
|
proxy: boolean;
|
|
323
323
|
/**
|
|
324
|
-
* The title of the short link. Will be used for Custom
|
|
324
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
325
325
|
*/
|
|
326
326
|
title: string | null;
|
|
327
327
|
/**
|
|
328
|
-
* The description of the short link. Will be used for Custom
|
|
328
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
329
329
|
*/
|
|
330
330
|
description: string | null;
|
|
331
331
|
/**
|
|
332
|
-
* The image of the short link. Will be used for Custom
|
|
332
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
333
333
|
*/
|
|
334
334
|
image: string | null;
|
|
335
335
|
/**
|
|
336
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
336
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
337
337
|
*/
|
|
338
338
|
video: string | null;
|
|
339
339
|
rewrite: boolean;
|
|
@@ -126,13 +126,13 @@ export type WorkspaceSchema = {
|
|
|
126
126
|
*/
|
|
127
127
|
linksLimit: number;
|
|
128
128
|
/**
|
|
129
|
-
* The dollar amount of
|
|
129
|
+
* The dollar amount of partner payouts processed in the current billing cycle (in cents).
|
|
130
130
|
*/
|
|
131
|
-
|
|
131
|
+
payoutsUsage: number;
|
|
132
132
|
/**
|
|
133
|
-
* The
|
|
133
|
+
* The max dollar amount of partner payouts that can be processed within a billing cycle (in cents).
|
|
134
134
|
*/
|
|
135
|
-
|
|
135
|
+
payoutsLimit: number;
|
|
136
136
|
/**
|
|
137
137
|
* The domains limit of the workspace.
|
|
138
138
|
*/
|
|
@@ -363,8 +363,8 @@ export const WorkspaceSchema$inboundSchema: z.ZodType<
|
|
|
363
363
|
usageLimit: z.number(),
|
|
364
364
|
linksUsage: z.number(),
|
|
365
365
|
linksLimit: z.number(),
|
|
366
|
-
|
|
367
|
-
|
|
366
|
+
payoutsUsage: z.number(),
|
|
367
|
+
payoutsLimit: z.number(),
|
|
368
368
|
domainsLimit: z.number(),
|
|
369
369
|
tagsLimit: z.number(),
|
|
370
370
|
foldersUsage: z.number(),
|
|
@@ -400,8 +400,8 @@ export type WorkspaceSchema$Outbound = {
|
|
|
400
400
|
usageLimit: number;
|
|
401
401
|
linksUsage: number;
|
|
402
402
|
linksLimit: number;
|
|
403
|
-
|
|
404
|
-
|
|
403
|
+
payoutsUsage: number;
|
|
404
|
+
payoutsLimit: number;
|
|
405
405
|
domainsLimit: number;
|
|
406
406
|
tagsLimit: number;
|
|
407
407
|
foldersUsage: number;
|
|
@@ -441,8 +441,8 @@ export const WorkspaceSchema$outboundSchema: z.ZodType<
|
|
|
441
441
|
usageLimit: z.number(),
|
|
442
442
|
linksUsage: z.number(),
|
|
443
443
|
linksLimit: z.number(),
|
|
444
|
-
|
|
445
|
-
|
|
444
|
+
payoutsUsage: z.number(),
|
|
445
|
+
payoutsLimit: z.number(),
|
|
446
446
|
domainsLimit: z.number(),
|
|
447
447
|
tagsLimit: z.number(),
|
|
448
448
|
foldersUsage: z.number(),
|
|
@@ -106,23 +106,23 @@ export type RequestBody = {
|
|
|
106
106
|
*/
|
|
107
107
|
password?: string | null | undefined;
|
|
108
108
|
/**
|
|
109
|
-
* Whether the short link uses Custom
|
|
109
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
110
110
|
*/
|
|
111
111
|
proxy?: boolean | undefined;
|
|
112
112
|
/**
|
|
113
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
113
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
114
114
|
*/
|
|
115
115
|
title?: string | null | undefined;
|
|
116
116
|
/**
|
|
117
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
117
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
118
118
|
*/
|
|
119
119
|
description?: string | null | undefined;
|
|
120
120
|
/**
|
|
121
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
121
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
122
122
|
*/
|
|
123
123
|
image?: string | null | undefined;
|
|
124
124
|
/**
|
|
125
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
125
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
126
126
|
*/
|
|
127
127
|
video?: string | null | undefined;
|
|
128
128
|
/**
|
|
@@ -90,23 +90,23 @@ export type Data = {
|
|
|
90
90
|
*/
|
|
91
91
|
password?: string | null | undefined;
|
|
92
92
|
/**
|
|
93
|
-
* Whether the short link uses Custom
|
|
93
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
94
94
|
*/
|
|
95
95
|
proxy?: boolean | undefined;
|
|
96
96
|
/**
|
|
97
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
97
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
98
98
|
*/
|
|
99
99
|
title?: string | null | undefined;
|
|
100
100
|
/**
|
|
101
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
101
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
102
102
|
*/
|
|
103
103
|
description?: string | null | undefined;
|
|
104
104
|
/**
|
|
105
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
105
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
106
106
|
*/
|
|
107
107
|
image?: string | null | undefined;
|
|
108
108
|
/**
|
|
109
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
109
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
110
110
|
*/
|
|
111
111
|
video?: string | null | undefined;
|
|
112
112
|
/**
|
|
@@ -106,23 +106,23 @@ export type CreateLinkRequestBody = {
|
|
|
106
106
|
*/
|
|
107
107
|
password?: string | null | undefined;
|
|
108
108
|
/**
|
|
109
|
-
* Whether the short link uses Custom
|
|
109
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
110
110
|
*/
|
|
111
111
|
proxy?: boolean | undefined;
|
|
112
112
|
/**
|
|
113
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
113
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
114
114
|
*/
|
|
115
115
|
title?: string | null | undefined;
|
|
116
116
|
/**
|
|
117
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
117
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
118
118
|
*/
|
|
119
119
|
description?: string | null | undefined;
|
|
120
120
|
/**
|
|
121
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
121
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
122
122
|
*/
|
|
123
123
|
image?: string | null | undefined;
|
|
124
124
|
/**
|
|
125
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
125
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
126
126
|
*/
|
|
127
127
|
video?: string | null | undefined;
|
|
128
128
|
/**
|
|
@@ -333,23 +333,23 @@ export type LinkProps = {
|
|
|
333
333
|
*/
|
|
334
334
|
password?: string | null | undefined;
|
|
335
335
|
/**
|
|
336
|
-
* Whether the short link uses Custom
|
|
336
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
337
337
|
*/
|
|
338
338
|
proxy?: boolean | undefined;
|
|
339
339
|
/**
|
|
340
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
340
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
341
341
|
*/
|
|
342
342
|
title?: string | null | undefined;
|
|
343
343
|
/**
|
|
344
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
344
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
345
345
|
*/
|
|
346
346
|
description?: string | null | undefined;
|
|
347
347
|
/**
|
|
348
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
348
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
349
349
|
*/
|
|
350
350
|
image?: string | null | undefined;
|
|
351
351
|
/**
|
|
352
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
352
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
353
353
|
*/
|
|
354
354
|
video?: string | null | undefined;
|
|
355
355
|
/**
|
|
@@ -72,23 +72,23 @@ export type CreatePartnerLinkLinkProps = {
|
|
|
72
72
|
*/
|
|
73
73
|
password?: string | null | undefined;
|
|
74
74
|
/**
|
|
75
|
-
* Whether the short link uses Custom
|
|
75
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
76
76
|
*/
|
|
77
77
|
proxy?: boolean | undefined;
|
|
78
78
|
/**
|
|
79
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
79
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
80
80
|
*/
|
|
81
81
|
title?: string | null | undefined;
|
|
82
82
|
/**
|
|
83
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
83
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
84
84
|
*/
|
|
85
85
|
description?: string | null | undefined;
|
|
86
86
|
/**
|
|
87
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
87
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
88
88
|
*/
|
|
89
89
|
image?: string | null | undefined;
|
|
90
90
|
/**
|
|
91
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
91
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
92
92
|
*/
|
|
93
93
|
video?: string | null | undefined;
|
|
94
94
|
/**
|
|
@@ -335,23 +335,23 @@ export type CreateReferralsEmbedTokenLinkProps = {
|
|
|
335
335
|
*/
|
|
336
336
|
password?: string | null | undefined;
|
|
337
337
|
/**
|
|
338
|
-
* Whether the short link uses Custom
|
|
338
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
339
339
|
*/
|
|
340
340
|
proxy?: boolean | undefined;
|
|
341
341
|
/**
|
|
342
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
342
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
343
343
|
*/
|
|
344
344
|
title?: string | null | undefined;
|
|
345
345
|
/**
|
|
346
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
346
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
347
347
|
*/
|
|
348
348
|
description?: string | null | undefined;
|
|
349
349
|
/**
|
|
350
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
350
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
351
351
|
*/
|
|
352
352
|
image?: string | null | undefined;
|
|
353
353
|
/**
|
|
354
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
354
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
355
355
|
*/
|
|
356
356
|
video?: string | null | undefined;
|
|
357
357
|
/**
|
|
@@ -106,20 +106,20 @@ export type UpdateLinkRequestBody = {
|
|
|
106
106
|
*/
|
|
107
107
|
password?: string | null | undefined;
|
|
108
108
|
/**
|
|
109
|
-
* Whether the short link uses Custom
|
|
109
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
110
110
|
*/
|
|
111
111
|
proxy?: boolean | undefined;
|
|
112
112
|
/**
|
|
113
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
113
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
114
114
|
*/
|
|
115
115
|
title?: string | null | undefined;
|
|
116
116
|
/**
|
|
117
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
117
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
118
118
|
*/
|
|
119
119
|
description?: string | null | undefined;
|
|
120
120
|
image?: string | null | undefined;
|
|
121
121
|
/**
|
|
122
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
122
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
123
123
|
*/
|
|
124
124
|
video?: string | null | undefined;
|
|
125
125
|
/**
|
|
@@ -106,23 +106,23 @@ export type UpsertLinkRequestBody = {
|
|
|
106
106
|
*/
|
|
107
107
|
password?: string | null | undefined;
|
|
108
108
|
/**
|
|
109
|
-
* Whether the short link uses Custom
|
|
109
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
110
110
|
*/
|
|
111
111
|
proxy?: boolean | undefined;
|
|
112
112
|
/**
|
|
113
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
113
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
114
114
|
*/
|
|
115
115
|
title?: string | null | undefined;
|
|
116
116
|
/**
|
|
117
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
117
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
118
118
|
*/
|
|
119
119
|
description?: string | null | undefined;
|
|
120
120
|
/**
|
|
121
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
121
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
122
122
|
*/
|
|
123
123
|
image?: string | null | undefined;
|
|
124
124
|
/**
|
|
125
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
125
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
126
126
|
*/
|
|
127
127
|
video?: string | null | undefined;
|
|
128
128
|
/**
|