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
|
@@ -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/dist/esm/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "0.0.1";
|
|
34
|
-
readonly sdkVersion: "0.62.
|
|
35
|
-
readonly genVersion: "2.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.62.
|
|
34
|
+
readonly sdkVersion: "0.62.4";
|
|
35
|
+
readonly genVersion: "2.621.3";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.62.4 2.621.3 0.0.1 dub";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
|
|
|
27
27
|
export const SDK_METADATA = {
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "0.0.1",
|
|
30
|
-
sdkVersion: "0.62.
|
|
31
|
-
genVersion: "2.
|
|
32
|
-
userAgent: "speakeasy-sdk/typescript 0.62.
|
|
30
|
+
sdkVersion: "0.62.4",
|
|
31
|
+
genVersion: "2.621.3",
|
|
32
|
+
userAgent: "speakeasy-sdk/typescript 0.62.4 2.621.3 0.0.1 dub",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
|
@@ -53,7 +53,7 @@ import { tool$workspacesUpdate } from "./tools/workspacesUpdate.js";
|
|
|
53
53
|
export function createMCPServer(deps) {
|
|
54
54
|
const server = new McpServer({
|
|
55
55
|
name: "Dub",
|
|
56
|
-
version: "0.62.
|
|
56
|
+
version: "0.62.4",
|
|
57
57
|
});
|
|
58
58
|
const client = new DubCore({
|
|
59
59
|
token: deps.token,
|
|
@@ -322,19 +322,19 @@ export type Link = {
|
|
|
322
322
|
password: string | null;
|
|
323
323
|
proxy: boolean;
|
|
324
324
|
/**
|
|
325
|
-
* The title of the short link. Will be used for Custom
|
|
325
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
326
326
|
*/
|
|
327
327
|
title: string | null;
|
|
328
328
|
/**
|
|
329
|
-
* The description of the short link. Will be used for Custom
|
|
329
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
330
330
|
*/
|
|
331
331
|
description: string | null;
|
|
332
332
|
/**
|
|
333
|
-
* The image of the short link. Will be used for Custom
|
|
333
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
334
334
|
*/
|
|
335
335
|
image: string | null;
|
|
336
336
|
/**
|
|
337
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
337
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
338
338
|
*/
|
|
339
339
|
video: string | null;
|
|
340
340
|
rewrite: boolean;
|
|
@@ -360,19 +360,19 @@ export type LeadCreatedEventLink = {
|
|
|
360
360
|
password: string | null;
|
|
361
361
|
proxy: boolean;
|
|
362
362
|
/**
|
|
363
|
-
* The title of the short link. Will be used for Custom
|
|
363
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
364
364
|
*/
|
|
365
365
|
title: string | null;
|
|
366
366
|
/**
|
|
367
|
-
* The description of the short link. Will be used for Custom
|
|
367
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
368
368
|
*/
|
|
369
369
|
description: string | null;
|
|
370
370
|
/**
|
|
371
|
-
* The image of the short link. Will be used for Custom
|
|
371
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
372
372
|
*/
|
|
373
373
|
image: string | null;
|
|
374
374
|
/**
|
|
375
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
375
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
376
376
|
*/
|
|
377
377
|
video: string | null;
|
|
378
378
|
rewrite: boolean;
|
|
@@ -322,19 +322,19 @@ export type LeadEventLink = {
|
|
|
322
322
|
password: string | null;
|
|
323
323
|
proxy: boolean;
|
|
324
324
|
/**
|
|
325
|
-
* The title of the short link. Will be used for Custom
|
|
325
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
326
326
|
*/
|
|
327
327
|
title: string | null;
|
|
328
328
|
/**
|
|
329
|
-
* The description of the short link. Will be used for Custom
|
|
329
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
330
330
|
*/
|
|
331
331
|
description: string | null;
|
|
332
332
|
/**
|
|
333
|
-
* The image of the short link. Will be used for Custom
|
|
333
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
334
334
|
*/
|
|
335
335
|
image: string | null;
|
|
336
336
|
/**
|
|
337
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
337
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
338
338
|
*/
|
|
339
339
|
video: string | null;
|
|
340
340
|
rewrite: boolean;
|
|
@@ -322,19 +322,19 @@ export type LinkClickedEventLink = {
|
|
|
322
322
|
password: string | null;
|
|
323
323
|
proxy: boolean;
|
|
324
324
|
/**
|
|
325
|
-
* The title of the short link. Will be used for Custom
|
|
325
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
326
326
|
*/
|
|
327
327
|
title: string | null;
|
|
328
328
|
/**
|
|
329
|
-
* The description of the short link. Will be used for Custom
|
|
329
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
330
330
|
*/
|
|
331
331
|
description: string | null;
|
|
332
332
|
/**
|
|
333
|
-
* The image of the short link. Will be used for Custom
|
|
333
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
334
334
|
*/
|
|
335
335
|
image: string | null;
|
|
336
336
|
/**
|
|
337
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
337
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
338
338
|
*/
|
|
339
339
|
video: string | null;
|
|
340
340
|
rewrite: boolean;
|
|
@@ -315,23 +315,23 @@ export type LinkSchema = {
|
|
|
315
315
|
*/
|
|
316
316
|
password: string | null;
|
|
317
317
|
/**
|
|
318
|
-
* Whether the short link uses Custom
|
|
318
|
+
* Whether the short link uses Custom Link Previews feature.
|
|
319
319
|
*/
|
|
320
320
|
proxy?: boolean | undefined;
|
|
321
321
|
/**
|
|
322
|
-
* The title of the short link. Will be used for Custom
|
|
322
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
323
323
|
*/
|
|
324
324
|
title: string | null;
|
|
325
325
|
/**
|
|
326
|
-
* The description of the short link. Will be used for Custom
|
|
326
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
327
327
|
*/
|
|
328
328
|
description: string | null;
|
|
329
329
|
/**
|
|
330
|
-
* The image of the short link. Will be used for Custom
|
|
330
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
331
331
|
*/
|
|
332
332
|
image: string | null;
|
|
333
333
|
/**
|
|
334
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
334
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
335
335
|
*/
|
|
336
336
|
video: string | null;
|
|
337
337
|
/**
|
|
@@ -315,19 +315,19 @@ export type LinkWebhookEventLink = {
|
|
|
315
315
|
password: string | null;
|
|
316
316
|
proxy: boolean;
|
|
317
317
|
/**
|
|
318
|
-
* The title of the short link. Will be used for Custom
|
|
318
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
319
319
|
*/
|
|
320
320
|
title: string | null;
|
|
321
321
|
/**
|
|
322
|
-
* The description of the short link. Will be used for Custom
|
|
322
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
323
323
|
*/
|
|
324
324
|
description: string | null;
|
|
325
325
|
/**
|
|
326
|
-
* The image of the short link. Will be used for Custom
|
|
326
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
327
327
|
*/
|
|
328
328
|
image: string | null;
|
|
329
329
|
/**
|
|
330
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
330
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
331
331
|
*/
|
|
332
332
|
video: string | null;
|
|
333
333
|
rewrite: boolean;
|
|
@@ -360,19 +360,19 @@ export type SaleCreatedEventLink = {
|
|
|
360
360
|
password: string | null;
|
|
361
361
|
proxy: boolean;
|
|
362
362
|
/**
|
|
363
|
-
* The title of the short link. Will be used for Custom
|
|
363
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
364
364
|
*/
|
|
365
365
|
title: string | null;
|
|
366
366
|
/**
|
|
367
|
-
* The description of the short link. Will be used for Custom
|
|
367
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
368
368
|
*/
|
|
369
369
|
description: string | null;
|
|
370
370
|
/**
|
|
371
|
-
* The image of the short link. Will be used for Custom
|
|
371
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
372
372
|
*/
|
|
373
373
|
image: string | null;
|
|
374
374
|
/**
|
|
375
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
375
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
376
376
|
*/
|
|
377
377
|
video: string | null;
|
|
378
378
|
rewrite: boolean;
|
|
@@ -306,19 +306,19 @@ export type SaleEventLink = {
|
|
|
306
306
|
password: string | null;
|
|
307
307
|
proxy: boolean;
|
|
308
308
|
/**
|
|
309
|
-
* The title of the short link. Will be used for Custom
|
|
309
|
+
* The title of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
310
310
|
*/
|
|
311
311
|
title: string | null;
|
|
312
312
|
/**
|
|
313
|
-
* The description of the short link. Will be used for Custom
|
|
313
|
+
* The description of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
314
314
|
*/
|
|
315
315
|
description: string | null;
|
|
316
316
|
/**
|
|
317
|
-
* The image of the short link. Will be used for Custom
|
|
317
|
+
* The image of the short link. Will be used for Custom Link Previews if `proxy` is true.
|
|
318
318
|
*/
|
|
319
319
|
image: string | null;
|
|
320
320
|
/**
|
|
321
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
321
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
322
322
|
*/
|
|
323
323
|
video: string | null;
|
|
324
324
|
rewrite: boolean;
|
|
@@ -116,13 +116,13 @@ export type WorkspaceSchema = {
|
|
|
116
116
|
*/
|
|
117
117
|
linksLimit: number;
|
|
118
118
|
/**
|
|
119
|
-
* The dollar amount of
|
|
119
|
+
* The dollar amount of partner payouts processed in the current billing cycle (in cents).
|
|
120
120
|
*/
|
|
121
|
-
|
|
121
|
+
payoutsUsage: number;
|
|
122
122
|
/**
|
|
123
|
-
* The
|
|
123
|
+
* The max dollar amount of partner payouts that can be processed within a billing cycle (in cents).
|
|
124
124
|
*/
|
|
125
|
-
|
|
125
|
+
payoutsLimit: number;
|
|
126
126
|
/**
|
|
127
127
|
* The domains limit of the workspace.
|
|
128
128
|
*/
|
|
@@ -310,8 +310,8 @@ export type WorkspaceSchema$Outbound = {
|
|
|
310
310
|
usageLimit: number;
|
|
311
311
|
linksUsage: number;
|
|
312
312
|
linksLimit: number;
|
|
313
|
-
|
|
314
|
-
|
|
313
|
+
payoutsUsage: number;
|
|
314
|
+
payoutsLimit: number;
|
|
315
315
|
domainsLimit: number;
|
|
316
316
|
tagsLimit: number;
|
|
317
317
|
foldersUsage: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaceschema.d.ts","sourceRoot":"","sources":["../../../../src/models/components/workspaceschema.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,IAAI;;;;;;;;;CASP,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,IAAI,CAAC,CAAC;AAE3C;;GAEG;AACH,eAAO,MAAM,IAAI;;;CAGP,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,IAAI,CAAC,CAAC;AAE3C,MAAM,MAAM,KAAK,GAAG;IAClB;;OAEG;IACH,IAAI,EAAE,IAAI,CAAC;IACX;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,IAAI,EAAE,IAAI,CAAC;IACX;;OAEG;IACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"workspaceschema.d.ts","sourceRoot":"","sources":["../../../../src/models/components/workspaceschema.ts"],"names":[],"mappings":"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"}
|
|
@@ -127,8 +127,8 @@ export const WorkspaceSchema$inboundSchema = z.object({
|
|
|
127
127
|
usageLimit: z.number(),
|
|
128
128
|
linksUsage: z.number(),
|
|
129
129
|
linksLimit: z.number(),
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
payoutsUsage: z.number(),
|
|
131
|
+
payoutsLimit: z.number(),
|
|
132
132
|
domainsLimit: z.number(),
|
|
133
133
|
tagsLimit: z.number(),
|
|
134
134
|
foldersUsage: z.number(),
|
|
@@ -163,8 +163,8 @@ export const WorkspaceSchema$outboundSchema = z.object({
|
|
|
163
163
|
usageLimit: z.number(),
|
|
164
164
|
linksUsage: z.number(),
|
|
165
165
|
linksLimit: z.number(),
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
payoutsUsage: z.number(),
|
|
167
|
+
payoutsLimit: z.number(),
|
|
168
168
|
domainsLimit: z.number(),
|
|
169
169
|
tagsLimit: z.number(),
|
|
170
170
|
foldersUsage: z.number(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaceschema.js","sourceRoot":"","sources":["../../../../src/models/components/workspaceschema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"workspaceschema.js","sourceRoot":"","sources":["../../../../src/models/components/workspaceschema.ts"],"names":[],"mappings":"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"}
|
|
@@ -96,23 +96,23 @@ export type RequestBody = {
|
|
|
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
|
/**
|
|
@@ -80,23 +80,23 @@ export type Data = {
|
|
|
80
80
|
*/
|
|
81
81
|
password?: string | null | undefined;
|
|
82
82
|
/**
|
|
83
|
-
* Whether the short link uses Custom
|
|
83
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
84
84
|
*/
|
|
85
85
|
proxy?: boolean | undefined;
|
|
86
86
|
/**
|
|
87
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
87
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
88
88
|
*/
|
|
89
89
|
title?: string | null | undefined;
|
|
90
90
|
/**
|
|
91
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
91
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
92
92
|
*/
|
|
93
93
|
description?: string | null | undefined;
|
|
94
94
|
/**
|
|
95
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
95
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
96
96
|
*/
|
|
97
97
|
image?: string | null | undefined;
|
|
98
98
|
/**
|
|
99
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
99
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
100
100
|
*/
|
|
101
101
|
video?: string | null | undefined;
|
|
102
102
|
/**
|
|
@@ -96,23 +96,23 @@ export type CreateLinkRequestBody = {
|
|
|
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
|
/**
|
|
@@ -322,23 +322,23 @@ export type LinkProps = {
|
|
|
322
322
|
*/
|
|
323
323
|
password?: string | null | undefined;
|
|
324
324
|
/**
|
|
325
|
-
* Whether the short link uses Custom
|
|
325
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
326
326
|
*/
|
|
327
327
|
proxy?: boolean | undefined;
|
|
328
328
|
/**
|
|
329
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
329
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
330
330
|
*/
|
|
331
331
|
title?: string | null | undefined;
|
|
332
332
|
/**
|
|
333
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
333
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
334
334
|
*/
|
|
335
335
|
description?: string | null | undefined;
|
|
336
336
|
/**
|
|
337
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
337
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
338
338
|
*/
|
|
339
339
|
image?: string | null | undefined;
|
|
340
340
|
/**
|
|
341
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
341
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
342
342
|
*/
|
|
343
343
|
video?: string | null | undefined;
|
|
344
344
|
/**
|
|
@@ -62,23 +62,23 @@ export type CreatePartnerLinkLinkProps = {
|
|
|
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
|
/**
|
|
@@ -322,23 +322,23 @@ export type CreateReferralsEmbedTokenLinkProps = {
|
|
|
322
322
|
*/
|
|
323
323
|
password?: string | null | undefined;
|
|
324
324
|
/**
|
|
325
|
-
* Whether the short link uses Custom
|
|
325
|
+
* Whether the short link uses Custom Link Previews feature. Defaults to `false` if not provided.
|
|
326
326
|
*/
|
|
327
327
|
proxy?: boolean | undefined;
|
|
328
328
|
/**
|
|
329
|
-
* The custom link preview title (og:title). Will be used for Custom
|
|
329
|
+
* The custom link preview title (og:title). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
330
330
|
*/
|
|
331
331
|
title?: string | null | undefined;
|
|
332
332
|
/**
|
|
333
|
-
* The custom link preview description (og:description). Will be used for Custom
|
|
333
|
+
* The custom link preview description (og:description). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
334
334
|
*/
|
|
335
335
|
description?: string | null | undefined;
|
|
336
336
|
/**
|
|
337
|
-
* The custom link preview image (og:image). Will be used for Custom
|
|
337
|
+
* The custom link preview image (og:image). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
338
338
|
*/
|
|
339
339
|
image?: string | null | undefined;
|
|
340
340
|
/**
|
|
341
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
341
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
342
342
|
*/
|
|
343
343
|
video?: string | null | undefined;
|
|
344
344
|
/**
|
|
@@ -96,20 +96,20 @@ export type UpdateLinkRequestBody = {
|
|
|
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
|
image?: string | null | undefined;
|
|
111
111
|
/**
|
|
112
|
-
* The custom link preview video (og:video). Will be used for Custom
|
|
112
|
+
* The custom link preview video (og:video). Will be used for Custom Link Previews if `proxy` is true. Learn more: https://d.to/og
|
|
113
113
|
*/
|
|
114
114
|
video?: string | null | undefined;
|
|
115
115
|
/**
|