dub 0.24.1 → 0.24.2
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/README.md +5 -0
- package/docs/sdks/domains/README.md +5 -5
- package/docs/sdks/links/README.md +9 -0
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/domainschema.d.ts +80 -0
- package/models/components/domainschema.d.ts.map +1 -0
- package/models/components/domainschema.js +94 -0
- package/models/components/domainschema.js.map +1 -0
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/operations/adddomain.d.ts +0 -81
- package/models/operations/adddomain.d.ts.map +1 -1
- package/models/operations/adddomain.js +1 -64
- package/models/operations/adddomain.js.map +1 -1
- package/models/operations/bulkcreatelinks.d.ts +17 -0
- package/models/operations/bulkcreatelinks.d.ts.map +1 -1
- package/models/operations/bulkcreatelinks.js +11 -1
- package/models/operations/bulkcreatelinks.js.map +1 -1
- package/models/operations/createlink.d.ts +17 -0
- package/models/operations/createlink.d.ts.map +1 -1
- package/models/operations/createlink.js +17 -1
- package/models/operations/createlink.js.map +1 -1
- package/models/operations/editdomain.d.ts +0 -81
- package/models/operations/editdomain.d.ts.map +1 -1
- package/models/operations/editdomain.js +1 -64
- package/models/operations/editdomain.js.map +1 -1
- package/models/operations/editlink.d.ts +17 -0
- package/models/operations/editlink.d.ts.map +1 -1
- package/models/operations/editlink.js +17 -1
- package/models/operations/editlink.js.map +1 -1
- package/models/operations/getlinks.d.ts +17 -0
- package/models/operations/getlinks.d.ts.map +1 -1
- package/models/operations/getlinks.js +17 -1
- package/models/operations/getlinks.js.map +1 -1
- package/models/operations/getlinkscount.d.ts +17 -0
- package/models/operations/getlinkscount.d.ts.map +1 -1
- package/models/operations/getlinkscount.js +11 -1
- package/models/operations/getlinkscount.js.map +1 -1
- package/models/operations/listdomains.d.ts +0 -78
- package/models/operations/listdomains.d.ts.map +1 -1
- package/models/operations/listdomains.js +1 -64
- package/models/operations/listdomains.js.map +1 -1
- package/models/operations/setprimarydomain.d.ts +0 -81
- package/models/operations/setprimarydomain.d.ts.map +1 -1
- package/models/operations/setprimarydomain.js +1 -64
- package/models/operations/setprimarydomain.js.map +1 -1
- package/models/operations/transferdomain.d.ts +0 -81
- package/models/operations/transferdomain.d.ts.map +1 -1
- package/models/operations/transferdomain.js +1 -64
- package/models/operations/transferdomain.js.map +1 -1
- package/package.json +1 -1
- package/sdk/domains.d.ts +6 -5
- package/sdk/domains.d.ts.map +1 -1
- package/sdk/domains.js +6 -5
- package/sdk/domains.js.map +1 -1
- package/sdk/links.d.ts.map +1 -1
- package/sdk/links.js +8 -0
- package/sdk/links.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/domainschema.ts +138 -0
- package/src/models/components/index.ts +1 -0
- package/src/models/operations/adddomain.ts +0 -136
- package/src/models/operations/bulkcreatelinks.ts +27 -0
- package/src/models/operations/createlink.ts +30 -0
- package/src/models/operations/editdomain.ts +0 -138
- package/src/models/operations/editlink.ts +30 -0
- package/src/models/operations/getlinks.ts +30 -0
- package/src/models/operations/getlinkscount.ts +29 -0
- package/src/models/operations/listdomains.ts +0 -134
- package/src/models/operations/setprimarydomain.ts +0 -137
- package/src/models/operations/transferdomain.ts +0 -137
- package/src/sdk/domains.ts +11 -10
- package/src/sdk/links.ts +8 -0
|
@@ -11,60 +11,6 @@ export type SetPrimaryDomainRequest = {
|
|
|
11
11
|
slug: string;
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
/**
|
|
15
|
-
* The type of redirect to use for this domain.
|
|
16
|
-
*/
|
|
17
|
-
export const SetPrimaryDomainType = {
|
|
18
|
-
Redirect: "redirect",
|
|
19
|
-
Rewrite: "rewrite",
|
|
20
|
-
} as const;
|
|
21
|
-
/**
|
|
22
|
-
* The type of redirect to use for this domain.
|
|
23
|
-
*/
|
|
24
|
-
export type SetPrimaryDomainType = (typeof SetPrimaryDomainType)[keyof typeof SetPrimaryDomainType];
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* The domain was set as primary
|
|
28
|
-
*/
|
|
29
|
-
export type SetPrimaryDomainResponseBody = {
|
|
30
|
-
/**
|
|
31
|
-
* The domain name.
|
|
32
|
-
*/
|
|
33
|
-
slug: string;
|
|
34
|
-
/**
|
|
35
|
-
* Whether the domain is verified.
|
|
36
|
-
*/
|
|
37
|
-
verified?: boolean | undefined;
|
|
38
|
-
/**
|
|
39
|
-
* Whether the domain is the primary domain for the workspace.
|
|
40
|
-
*/
|
|
41
|
-
primary?: boolean | undefined;
|
|
42
|
-
/**
|
|
43
|
-
* Whether the domain is archived.
|
|
44
|
-
*/
|
|
45
|
-
archived?: boolean | undefined;
|
|
46
|
-
/**
|
|
47
|
-
* Provide context to your teammates in the link creation modal by showing them an example of a link to be shortened.
|
|
48
|
-
*/
|
|
49
|
-
placeholder?: string | undefined;
|
|
50
|
-
/**
|
|
51
|
-
* The URL to redirect to when a link under this domain has expired.
|
|
52
|
-
*/
|
|
53
|
-
expiredUrl: string | null;
|
|
54
|
-
/**
|
|
55
|
-
* The page your users will get redirected to when they visit your domain.
|
|
56
|
-
*/
|
|
57
|
-
target: string | null;
|
|
58
|
-
/**
|
|
59
|
-
* The type of redirect to use for this domain.
|
|
60
|
-
*/
|
|
61
|
-
type: SetPrimaryDomainType;
|
|
62
|
-
/**
|
|
63
|
-
* The number of clicks on the domain.
|
|
64
|
-
*/
|
|
65
|
-
clicks?: number | undefined;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
14
|
/** @internal */
|
|
69
15
|
export namespace SetPrimaryDomainRequest$ {
|
|
70
16
|
export type Inbound = {
|
|
@@ -95,86 +41,3 @@ export namespace SetPrimaryDomainRequest$ {
|
|
|
95
41
|
};
|
|
96
42
|
});
|
|
97
43
|
}
|
|
98
|
-
|
|
99
|
-
/** @internal */
|
|
100
|
-
export const SetPrimaryDomainType$: z.ZodNativeEnum<typeof SetPrimaryDomainType> =
|
|
101
|
-
z.nativeEnum(SetPrimaryDomainType);
|
|
102
|
-
|
|
103
|
-
/** @internal */
|
|
104
|
-
export namespace SetPrimaryDomainResponseBody$ {
|
|
105
|
-
export type Inbound = {
|
|
106
|
-
slug: string;
|
|
107
|
-
verified?: boolean | undefined;
|
|
108
|
-
primary?: boolean | undefined;
|
|
109
|
-
archived?: boolean | undefined;
|
|
110
|
-
placeholder?: string | undefined;
|
|
111
|
-
expiredUrl: string | null;
|
|
112
|
-
target: string | null;
|
|
113
|
-
type: SetPrimaryDomainType;
|
|
114
|
-
clicks?: number | undefined;
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
export const inboundSchema: z.ZodType<SetPrimaryDomainResponseBody, z.ZodTypeDef, Inbound> = z
|
|
118
|
-
.object({
|
|
119
|
-
slug: z.string(),
|
|
120
|
-
verified: z.boolean().default(false),
|
|
121
|
-
primary: z.boolean().default(false),
|
|
122
|
-
archived: z.boolean().default(false),
|
|
123
|
-
placeholder: z.string().default("https://dub.co/help/article/what-is-dub"),
|
|
124
|
-
expiredUrl: z.nullable(z.string()),
|
|
125
|
-
target: z.nullable(z.string()),
|
|
126
|
-
type: SetPrimaryDomainType$,
|
|
127
|
-
clicks: z.number().default(0),
|
|
128
|
-
})
|
|
129
|
-
.transform((v) => {
|
|
130
|
-
return {
|
|
131
|
-
slug: v.slug,
|
|
132
|
-
verified: v.verified,
|
|
133
|
-
primary: v.primary,
|
|
134
|
-
archived: v.archived,
|
|
135
|
-
placeholder: v.placeholder,
|
|
136
|
-
expiredUrl: v.expiredUrl,
|
|
137
|
-
target: v.target,
|
|
138
|
-
type: v.type,
|
|
139
|
-
clicks: v.clicks,
|
|
140
|
-
};
|
|
141
|
-
});
|
|
142
|
-
|
|
143
|
-
export type Outbound = {
|
|
144
|
-
slug: string;
|
|
145
|
-
verified: boolean;
|
|
146
|
-
primary: boolean;
|
|
147
|
-
archived: boolean;
|
|
148
|
-
placeholder: string;
|
|
149
|
-
expiredUrl: string | null;
|
|
150
|
-
target: string | null;
|
|
151
|
-
type: SetPrimaryDomainType;
|
|
152
|
-
clicks: number;
|
|
153
|
-
};
|
|
154
|
-
|
|
155
|
-
export const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, SetPrimaryDomainResponseBody> = z
|
|
156
|
-
.object({
|
|
157
|
-
slug: z.string(),
|
|
158
|
-
verified: z.boolean().default(false),
|
|
159
|
-
primary: z.boolean().default(false),
|
|
160
|
-
archived: z.boolean().default(false),
|
|
161
|
-
placeholder: z.string().default("https://dub.co/help/article/what-is-dub"),
|
|
162
|
-
expiredUrl: z.nullable(z.string()),
|
|
163
|
-
target: z.nullable(z.string()),
|
|
164
|
-
type: SetPrimaryDomainType$,
|
|
165
|
-
clicks: z.number().default(0),
|
|
166
|
-
})
|
|
167
|
-
.transform((v) => {
|
|
168
|
-
return {
|
|
169
|
-
slug: v.slug,
|
|
170
|
-
verified: v.verified,
|
|
171
|
-
primary: v.primary,
|
|
172
|
-
archived: v.archived,
|
|
173
|
-
placeholder: v.placeholder,
|
|
174
|
-
expiredUrl: v.expiredUrl,
|
|
175
|
-
target: v.target,
|
|
176
|
-
type: v.type,
|
|
177
|
-
clicks: v.clicks,
|
|
178
|
-
};
|
|
179
|
-
});
|
|
180
|
-
}
|
|
@@ -19,60 +19,6 @@ export type TransferDomainRequest = {
|
|
|
19
19
|
requestBody?: TransferDomainRequestBody | undefined;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* The type of redirect to use for this domain.
|
|
24
|
-
*/
|
|
25
|
-
export const TransferDomainType = {
|
|
26
|
-
Redirect: "redirect",
|
|
27
|
-
Rewrite: "rewrite",
|
|
28
|
-
} as const;
|
|
29
|
-
/**
|
|
30
|
-
* The type of redirect to use for this domain.
|
|
31
|
-
*/
|
|
32
|
-
export type TransferDomainType = (typeof TransferDomainType)[keyof typeof TransferDomainType];
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* The domain transfer initiated
|
|
36
|
-
*/
|
|
37
|
-
export type TransferDomainResponseBody = {
|
|
38
|
-
/**
|
|
39
|
-
* The domain name.
|
|
40
|
-
*/
|
|
41
|
-
slug: string;
|
|
42
|
-
/**
|
|
43
|
-
* Whether the domain is verified.
|
|
44
|
-
*/
|
|
45
|
-
verified?: boolean | undefined;
|
|
46
|
-
/**
|
|
47
|
-
* Whether the domain is the primary domain for the workspace.
|
|
48
|
-
*/
|
|
49
|
-
primary?: boolean | undefined;
|
|
50
|
-
/**
|
|
51
|
-
* Whether the domain is archived.
|
|
52
|
-
*/
|
|
53
|
-
archived?: boolean | undefined;
|
|
54
|
-
/**
|
|
55
|
-
* Provide context to your teammates in the link creation modal by showing them an example of a link to be shortened.
|
|
56
|
-
*/
|
|
57
|
-
placeholder?: string | undefined;
|
|
58
|
-
/**
|
|
59
|
-
* The URL to redirect to when a link under this domain has expired.
|
|
60
|
-
*/
|
|
61
|
-
expiredUrl: string | null;
|
|
62
|
-
/**
|
|
63
|
-
* The page your users will get redirected to when they visit your domain.
|
|
64
|
-
*/
|
|
65
|
-
target: string | null;
|
|
66
|
-
/**
|
|
67
|
-
* The type of redirect to use for this domain.
|
|
68
|
-
*/
|
|
69
|
-
type: TransferDomainType;
|
|
70
|
-
/**
|
|
71
|
-
* The number of clicks on the domain.
|
|
72
|
-
*/
|
|
73
|
-
clicks?: number | undefined;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
22
|
/** @internal */
|
|
77
23
|
export namespace TransferDomainRequestBody$ {
|
|
78
24
|
export type Inbound = {
|
|
@@ -140,86 +86,3 @@ export namespace TransferDomainRequest$ {
|
|
|
140
86
|
};
|
|
141
87
|
});
|
|
142
88
|
}
|
|
143
|
-
|
|
144
|
-
/** @internal */
|
|
145
|
-
export const TransferDomainType$: z.ZodNativeEnum<typeof TransferDomainType> =
|
|
146
|
-
z.nativeEnum(TransferDomainType);
|
|
147
|
-
|
|
148
|
-
/** @internal */
|
|
149
|
-
export namespace TransferDomainResponseBody$ {
|
|
150
|
-
export type Inbound = {
|
|
151
|
-
slug: string;
|
|
152
|
-
verified?: boolean | undefined;
|
|
153
|
-
primary?: boolean | undefined;
|
|
154
|
-
archived?: boolean | undefined;
|
|
155
|
-
placeholder?: string | undefined;
|
|
156
|
-
expiredUrl: string | null;
|
|
157
|
-
target: string | null;
|
|
158
|
-
type: TransferDomainType;
|
|
159
|
-
clicks?: number | undefined;
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
export const inboundSchema: z.ZodType<TransferDomainResponseBody, z.ZodTypeDef, Inbound> = z
|
|
163
|
-
.object({
|
|
164
|
-
slug: z.string(),
|
|
165
|
-
verified: z.boolean().default(false),
|
|
166
|
-
primary: z.boolean().default(false),
|
|
167
|
-
archived: z.boolean().default(false),
|
|
168
|
-
placeholder: z.string().default("https://dub.co/help/article/what-is-dub"),
|
|
169
|
-
expiredUrl: z.nullable(z.string()),
|
|
170
|
-
target: z.nullable(z.string()),
|
|
171
|
-
type: TransferDomainType$,
|
|
172
|
-
clicks: z.number().default(0),
|
|
173
|
-
})
|
|
174
|
-
.transform((v) => {
|
|
175
|
-
return {
|
|
176
|
-
slug: v.slug,
|
|
177
|
-
verified: v.verified,
|
|
178
|
-
primary: v.primary,
|
|
179
|
-
archived: v.archived,
|
|
180
|
-
placeholder: v.placeholder,
|
|
181
|
-
expiredUrl: v.expiredUrl,
|
|
182
|
-
target: v.target,
|
|
183
|
-
type: v.type,
|
|
184
|
-
clicks: v.clicks,
|
|
185
|
-
};
|
|
186
|
-
});
|
|
187
|
-
|
|
188
|
-
export type Outbound = {
|
|
189
|
-
slug: string;
|
|
190
|
-
verified: boolean;
|
|
191
|
-
primary: boolean;
|
|
192
|
-
archived: boolean;
|
|
193
|
-
placeholder: string;
|
|
194
|
-
expiredUrl: string | null;
|
|
195
|
-
target: string | null;
|
|
196
|
-
type: TransferDomainType;
|
|
197
|
-
clicks: number;
|
|
198
|
-
};
|
|
199
|
-
|
|
200
|
-
export const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, TransferDomainResponseBody> = z
|
|
201
|
-
.object({
|
|
202
|
-
slug: z.string(),
|
|
203
|
-
verified: z.boolean().default(false),
|
|
204
|
-
primary: z.boolean().default(false),
|
|
205
|
-
archived: z.boolean().default(false),
|
|
206
|
-
placeholder: z.string().default("https://dub.co/help/article/what-is-dub"),
|
|
207
|
-
expiredUrl: z.nullable(z.string()),
|
|
208
|
-
target: z.nullable(z.string()),
|
|
209
|
-
type: TransferDomainType$,
|
|
210
|
-
clicks: z.number().default(0),
|
|
211
|
-
})
|
|
212
|
-
.transform((v) => {
|
|
213
|
-
return {
|
|
214
|
-
slug: v.slug,
|
|
215
|
-
verified: v.verified,
|
|
216
|
-
primary: v.primary,
|
|
217
|
-
archived: v.archived,
|
|
218
|
-
placeholder: v.placeholder,
|
|
219
|
-
expiredUrl: v.expiredUrl,
|
|
220
|
-
target: v.target,
|
|
221
|
-
type: v.type,
|
|
222
|
-
clicks: v.clicks,
|
|
223
|
-
};
|
|
224
|
-
});
|
|
225
|
-
}
|
package/src/sdk/domains.ts
CHANGED
|
@@ -8,6 +8,7 @@ import * as enc$ from "../lib/encodings";
|
|
|
8
8
|
import { HTTPClient } from "../lib/http";
|
|
9
9
|
import * as schemas$ from "../lib/schemas";
|
|
10
10
|
import { ClientSDK, RequestOptions } from "../lib/sdks";
|
|
11
|
+
import * as components from "../models/components";
|
|
11
12
|
import * as errors from "../models/errors";
|
|
12
13
|
import * as operations from "../models/operations";
|
|
13
14
|
import * as z from "zod";
|
|
@@ -48,7 +49,7 @@ export class Domains extends ClientSDK {
|
|
|
48
49
|
async list(
|
|
49
50
|
_input: operations.ListDomainsRequest,
|
|
50
51
|
options?: RequestOptions
|
|
51
|
-
): Promise<Array<
|
|
52
|
+
): Promise<Array<components.DomainSchema>> {
|
|
52
53
|
const headers$ = new Headers();
|
|
53
54
|
headers$.set("user-agent", SDK_METADATA.userAgent);
|
|
54
55
|
headers$.set("Accept", "application/json");
|
|
@@ -124,7 +125,7 @@ export class Domains extends ClientSDK {
|
|
|
124
125
|
const result = schemas$.parse(
|
|
125
126
|
responseBody,
|
|
126
127
|
(val$) => {
|
|
127
|
-
return z.array(
|
|
128
|
+
return z.array(components.DomainSchema$.inboundSchema).parse(val$);
|
|
128
129
|
},
|
|
129
130
|
"Response validation failed"
|
|
130
131
|
);
|
|
@@ -261,7 +262,7 @@ export class Domains extends ClientSDK {
|
|
|
261
262
|
async add(
|
|
262
263
|
input: operations.AddDomainRequestBody | undefined,
|
|
263
264
|
options?: RequestOptions
|
|
264
|
-
): Promise<
|
|
265
|
+
): Promise<components.DomainSchema> {
|
|
265
266
|
const headers$ = new Headers();
|
|
266
267
|
headers$.set("user-agent", SDK_METADATA.userAgent);
|
|
267
268
|
headers$.set("Content-Type", "application/json");
|
|
@@ -347,7 +348,7 @@ export class Domains extends ClientSDK {
|
|
|
347
348
|
const result = schemas$.parse(
|
|
348
349
|
responseBody,
|
|
349
350
|
(val$) => {
|
|
350
|
-
return
|
|
351
|
+
return components.DomainSchema$.inboundSchema.parse(val$);
|
|
351
352
|
},
|
|
352
353
|
"Response validation failed"
|
|
353
354
|
);
|
|
@@ -712,7 +713,7 @@ export class Domains extends ClientSDK {
|
|
|
712
713
|
slug: string,
|
|
713
714
|
requestBody?: operations.EditDomainRequestBody | undefined,
|
|
714
715
|
options?: RequestOptions
|
|
715
|
-
): Promise<
|
|
716
|
+
): Promise<components.DomainSchema> {
|
|
716
717
|
const input$: operations.EditDomainRequest = {
|
|
717
718
|
slug: slug,
|
|
718
719
|
requestBody: requestBody,
|
|
@@ -807,7 +808,7 @@ export class Domains extends ClientSDK {
|
|
|
807
808
|
const result = schemas$.parse(
|
|
808
809
|
responseBody,
|
|
809
810
|
(val$) => {
|
|
810
|
-
return
|
|
811
|
+
return components.DomainSchema$.inboundSchema.parse(val$);
|
|
811
812
|
},
|
|
812
813
|
"Response validation failed"
|
|
813
814
|
);
|
|
@@ -944,7 +945,7 @@ export class Domains extends ClientSDK {
|
|
|
944
945
|
async setPrimary(
|
|
945
946
|
input: operations.SetPrimaryDomainRequest,
|
|
946
947
|
options?: RequestOptions
|
|
947
|
-
): Promise<
|
|
948
|
+
): Promise<components.DomainSchema> {
|
|
948
949
|
const headers$ = new Headers();
|
|
949
950
|
headers$.set("user-agent", SDK_METADATA.userAgent);
|
|
950
951
|
headers$.set("Accept", "application/json");
|
|
@@ -1034,7 +1035,7 @@ export class Domains extends ClientSDK {
|
|
|
1034
1035
|
const result = schemas$.parse(
|
|
1035
1036
|
responseBody,
|
|
1036
1037
|
(val$) => {
|
|
1037
|
-
return
|
|
1038
|
+
return components.DomainSchema$.inboundSchema.parse(val$);
|
|
1038
1039
|
},
|
|
1039
1040
|
"Response validation failed"
|
|
1040
1041
|
);
|
|
@@ -1172,7 +1173,7 @@ export class Domains extends ClientSDK {
|
|
|
1172
1173
|
slug: string,
|
|
1173
1174
|
requestBody?: operations.TransferDomainRequestBody | undefined,
|
|
1174
1175
|
options?: RequestOptions
|
|
1175
|
-
): Promise<
|
|
1176
|
+
): Promise<components.DomainSchema> {
|
|
1176
1177
|
const input$: operations.TransferDomainRequest = {
|
|
1177
1178
|
slug: slug,
|
|
1178
1179
|
requestBody: requestBody,
|
|
@@ -1267,7 +1268,7 @@ export class Domains extends ClientSDK {
|
|
|
1267
1268
|
const result = schemas$.parse(
|
|
1268
1269
|
responseBody,
|
|
1269
1270
|
(val$) => {
|
|
1270
|
-
return
|
|
1271
|
+
return components.DomainSchema$.inboundSchema.parse(val$);
|
|
1271
1272
|
},
|
|
1272
1273
|
"Response validation failed"
|
|
1273
1274
|
);
|
package/src/sdk/links.ts
CHANGED
|
@@ -78,6 +78,10 @@ export class Links extends ClientSDK {
|
|
|
78
78
|
enc$.encodeForm("sort", payload$.sort, { explode: true, charEncoding: "percent" }),
|
|
79
79
|
enc$.encodeForm("tagId", payload$.tagId, { explode: true, charEncoding: "percent" }),
|
|
80
80
|
enc$.encodeForm("tagIds", payload$.tagIds, { explode: true, charEncoding: "percent" }),
|
|
81
|
+
enc$.encodeForm("tagNames", payload$.tagNames, {
|
|
82
|
+
explode: true,
|
|
83
|
+
charEncoding: "percent",
|
|
84
|
+
}),
|
|
81
85
|
enc$.encodeForm("userId", payload$.userId, { explode: true, charEncoding: "percent" }),
|
|
82
86
|
enc$.encodeForm("withTags", payload$.withTags, {
|
|
83
87
|
explode: true,
|
|
@@ -536,6 +540,10 @@ export class Links extends ClientSDK {
|
|
|
536
540
|
}),
|
|
537
541
|
enc$.encodeForm("tagId", payload$.tagId, { explode: true, charEncoding: "percent" }),
|
|
538
542
|
enc$.encodeForm("tagIds", payload$.tagIds, { explode: true, charEncoding: "percent" }),
|
|
543
|
+
enc$.encodeForm("tagNames", payload$.tagNames, {
|
|
544
|
+
explode: true,
|
|
545
|
+
charEncoding: "percent",
|
|
546
|
+
}),
|
|
539
547
|
enc$.encodeForm("userId", payload$.userId, { explode: true, charEncoding: "percent" }),
|
|
540
548
|
enc$.encodeForm("withTags", payload$.withTags, {
|
|
541
549
|
explode: true,
|