dub 0.22.3 → 0.23.1
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/.speakeasy/gen.lock +36 -6
- package/.speakeasy/gen.yaml +2 -1
- package/.speakeasy/workflow.lock +21 -0
- package/.speakeasy/workflow.yaml +1 -0
- package/README.md +18 -7
- package/docs/sdks/analytics/README.md +10 -10
- package/docs/sdks/domains/README.md +331 -0
- package/docs/sdks/links/README.md +17 -13
- package/docs/sdks/metatags/README.md +1 -1
- package/docs/sdks/qrcodes/README.md +1 -1
- package/docs/sdks/tags/README.md +2 -2
- package/docs/sdks/workspaces/README.md +3 -3
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/workspaceschema.d.ts +4 -4
- package/models/components/workspaceschema.d.ts.map +1 -1
- package/models/components/workspaceschema.js +2 -2
- package/models/components/workspaceschema.js.map +1 -1
- package/models/operations/adddomain.d.ts +149 -0
- package/models/operations/adddomain.d.ts.map +1 -0
- package/models/operations/adddomain.js +145 -0
- package/models/operations/adddomain.js.map +1 -0
- package/models/operations/bulkcreatelinks.d.ts +1 -751
- package/models/operations/bulkcreatelinks.d.ts.map +1 -1
- package/models/operations/bulkcreatelinks.js.map +1 -1
- package/models/operations/createlink.d.ts +1 -751
- package/models/operations/createlink.d.ts.map +1 -1
- package/models/operations/createlink.js.map +1 -1
- package/models/operations/deletedomain.d.ts +39 -0
- package/models/operations/deletedomain.d.ts.map +1 -0
- package/models/operations/deletedomain.js +75 -0
- package/models/operations/deletedomain.js.map +1 -0
- package/models/operations/editdomain.d.ts +169 -0
- package/models/operations/editdomain.d.ts.map +1 -0
- package/models/operations/editdomain.js +171 -0
- package/models/operations/editdomain.js.map +1 -0
- package/models/operations/editlink.d.ts +1 -751
- package/models/operations/editlink.d.ts.map +1 -1
- package/models/operations/editlink.js.map +1 -1
- package/models/operations/getmetatags.d.ts +9 -9
- package/models/operations/getmetatags.d.ts.map +1 -1
- package/models/operations/getmetatags.js +12 -12
- package/models/operations/getmetatags.js.map +1 -1
- package/models/operations/index.d.ts +6 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +6 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/listdomains.d.ts +91 -0
- package/models/operations/listdomains.d.ts.map +1 -0
- package/models/operations/listdomains.js +100 -0
- package/models/operations/listdomains.js.map +1 -0
- package/models/operations/setprimarydomain.d.ts +103 -0
- package/models/operations/setprimarydomain.d.ts.map +1 -0
- package/models/operations/setprimarydomain.js +116 -0
- package/models/operations/setprimarydomain.js.map +1 -0
- package/models/operations/transferdomain.d.ts +123 -0
- package/models/operations/transferdomain.d.ts.map +1 -0
- package/models/operations/transferdomain.js +142 -0
- package/models/operations/transferdomain.js.map +1 -0
- package/package.json +2 -3
- package/sdk/domains.d.ts +50 -0
- package/sdk/domains.d.ts.map +1 -0
- package/sdk/domains.js +1130 -0
- package/sdk/domains.js.map +1 -0
- package/sdk/sdk.d.ts +3 -0
- package/sdk/sdk.d.ts.map +1 -1
- package/sdk/sdk.js +5 -0
- package/sdk/sdk.js.map +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/components/workspaceschema.ts +6 -6
- package/src/models/operations/adddomain.ts +244 -0
- package/src/models/operations/bulkcreatelinks.ts +1 -751
- package/src/models/operations/createlink.ts +1 -751
- package/src/models/operations/deletedomain.ts +84 -0
- package/src/models/operations/editdomain.ts +290 -0
- package/src/models/operations/editlink.ts +1 -751
- package/src/models/operations/getmetatags.ts +21 -21
- package/src/models/operations/index.ts +6 -0
- package/src/models/operations/listdomains.ts +153 -0
- package/src/models/operations/setprimarydomain.ts +179 -0
- package/src/models/operations/transferdomain.ts +224 -0
- package/src/sdk/domains.ts +1387 -0
- package/src/sdk/sdk.ts +6 -0
|
@@ -7,1005 +7,255 @@ export type BulkCreateLinksTagIds = string | Array<string>;
|
|
|
7
7
|
* Geo targeting information for the short link in JSON format `{[COUNTRY]: https://example.com }`.
|
|
8
8
|
*/
|
|
9
9
|
export type BulkCreateLinksGeo = {
|
|
10
|
-
/**
|
|
11
|
-
* The destination URL of the short link.
|
|
12
|
-
*/
|
|
13
10
|
af?: string | undefined;
|
|
14
|
-
/**
|
|
15
|
-
* The destination URL of the short link.
|
|
16
|
-
*/
|
|
17
11
|
al?: string | undefined;
|
|
18
|
-
/**
|
|
19
|
-
* The destination URL of the short link.
|
|
20
|
-
*/
|
|
21
12
|
dz?: string | undefined;
|
|
22
|
-
/**
|
|
23
|
-
* The destination URL of the short link.
|
|
24
|
-
*/
|
|
25
13
|
as?: string | undefined;
|
|
26
|
-
/**
|
|
27
|
-
* The destination URL of the short link.
|
|
28
|
-
*/
|
|
29
14
|
ad?: string | undefined;
|
|
30
|
-
/**
|
|
31
|
-
* The destination URL of the short link.
|
|
32
|
-
*/
|
|
33
15
|
ao?: string | undefined;
|
|
34
|
-
/**
|
|
35
|
-
* The destination URL of the short link.
|
|
36
|
-
*/
|
|
37
16
|
ai?: string | undefined;
|
|
38
|
-
/**
|
|
39
|
-
* The destination URL of the short link.
|
|
40
|
-
*/
|
|
41
17
|
aq?: string | undefined;
|
|
42
|
-
/**
|
|
43
|
-
* The destination URL of the short link.
|
|
44
|
-
*/
|
|
45
18
|
ag?: string | undefined;
|
|
46
|
-
/**
|
|
47
|
-
* The destination URL of the short link.
|
|
48
|
-
*/
|
|
49
19
|
ar?: string | undefined;
|
|
50
|
-
/**
|
|
51
|
-
* The destination URL of the short link.
|
|
52
|
-
*/
|
|
53
20
|
am?: string | undefined;
|
|
54
|
-
/**
|
|
55
|
-
* The destination URL of the short link.
|
|
56
|
-
*/
|
|
57
21
|
aw?: string | undefined;
|
|
58
|
-
/**
|
|
59
|
-
* The destination URL of the short link.
|
|
60
|
-
*/
|
|
61
22
|
au?: string | undefined;
|
|
62
|
-
/**
|
|
63
|
-
* The destination URL of the short link.
|
|
64
|
-
*/
|
|
65
23
|
at?: string | undefined;
|
|
66
|
-
/**
|
|
67
|
-
* The destination URL of the short link.
|
|
68
|
-
*/
|
|
69
24
|
az?: string | undefined;
|
|
70
|
-
/**
|
|
71
|
-
* The destination URL of the short link.
|
|
72
|
-
*/
|
|
73
25
|
bs?: string | undefined;
|
|
74
|
-
/**
|
|
75
|
-
* The destination URL of the short link.
|
|
76
|
-
*/
|
|
77
26
|
bh?: string | undefined;
|
|
78
|
-
/**
|
|
79
|
-
* The destination URL of the short link.
|
|
80
|
-
*/
|
|
81
27
|
bd?: string | undefined;
|
|
82
|
-
/**
|
|
83
|
-
* The destination URL of the short link.
|
|
84
|
-
*/
|
|
85
28
|
bb?: string | undefined;
|
|
86
|
-
/**
|
|
87
|
-
* The destination URL of the short link.
|
|
88
|
-
*/
|
|
89
29
|
by?: string | undefined;
|
|
90
|
-
/**
|
|
91
|
-
* The destination URL of the short link.
|
|
92
|
-
*/
|
|
93
30
|
be?: string | undefined;
|
|
94
|
-
/**
|
|
95
|
-
* The destination URL of the short link.
|
|
96
|
-
*/
|
|
97
31
|
bz?: string | undefined;
|
|
98
|
-
/**
|
|
99
|
-
* The destination URL of the short link.
|
|
100
|
-
*/
|
|
101
32
|
bj?: string | undefined;
|
|
102
|
-
/**
|
|
103
|
-
* The destination URL of the short link.
|
|
104
|
-
*/
|
|
105
33
|
bm?: string | undefined;
|
|
106
|
-
/**
|
|
107
|
-
* The destination URL of the short link.
|
|
108
|
-
*/
|
|
109
34
|
bt?: string | undefined;
|
|
110
|
-
/**
|
|
111
|
-
* The destination URL of the short link.
|
|
112
|
-
*/
|
|
113
35
|
bo?: string | undefined;
|
|
114
|
-
/**
|
|
115
|
-
* The destination URL of the short link.
|
|
116
|
-
*/
|
|
117
36
|
ba?: string | undefined;
|
|
118
|
-
/**
|
|
119
|
-
* The destination URL of the short link.
|
|
120
|
-
*/
|
|
121
37
|
bw?: string | undefined;
|
|
122
|
-
/**
|
|
123
|
-
* The destination URL of the short link.
|
|
124
|
-
*/
|
|
125
38
|
bv?: string | undefined;
|
|
126
|
-
/**
|
|
127
|
-
* The destination URL of the short link.
|
|
128
|
-
*/
|
|
129
39
|
br?: string | undefined;
|
|
130
|
-
/**
|
|
131
|
-
* The destination URL of the short link.
|
|
132
|
-
*/
|
|
133
40
|
io?: string | undefined;
|
|
134
|
-
/**
|
|
135
|
-
* The destination URL of the short link.
|
|
136
|
-
*/
|
|
137
41
|
bn?: string | undefined;
|
|
138
|
-
/**
|
|
139
|
-
* The destination URL of the short link.
|
|
140
|
-
*/
|
|
141
42
|
bg?: string | undefined;
|
|
142
|
-
/**
|
|
143
|
-
* The destination URL of the short link.
|
|
144
|
-
*/
|
|
145
43
|
bf?: string | undefined;
|
|
146
|
-
/**
|
|
147
|
-
* The destination URL of the short link.
|
|
148
|
-
*/
|
|
149
44
|
bi?: string | undefined;
|
|
150
|
-
/**
|
|
151
|
-
* The destination URL of the short link.
|
|
152
|
-
*/
|
|
153
45
|
kh?: string | undefined;
|
|
154
|
-
/**
|
|
155
|
-
* The destination URL of the short link.
|
|
156
|
-
*/
|
|
157
46
|
cm?: string | undefined;
|
|
158
|
-
/**
|
|
159
|
-
* The destination URL of the short link.
|
|
160
|
-
*/
|
|
161
47
|
ca?: string | undefined;
|
|
162
|
-
/**
|
|
163
|
-
* The destination URL of the short link.
|
|
164
|
-
*/
|
|
165
48
|
cv?: string | undefined;
|
|
166
|
-
/**
|
|
167
|
-
* The destination URL of the short link.
|
|
168
|
-
*/
|
|
169
49
|
ky?: string | undefined;
|
|
170
|
-
/**
|
|
171
|
-
* The destination URL of the short link.
|
|
172
|
-
*/
|
|
173
50
|
cf?: string | undefined;
|
|
174
|
-
/**
|
|
175
|
-
* The destination URL of the short link.
|
|
176
|
-
*/
|
|
177
51
|
td?: string | undefined;
|
|
178
|
-
/**
|
|
179
|
-
* The destination URL of the short link.
|
|
180
|
-
*/
|
|
181
52
|
cl?: string | undefined;
|
|
182
|
-
/**
|
|
183
|
-
* The destination URL of the short link.
|
|
184
|
-
*/
|
|
185
53
|
cn?: string | undefined;
|
|
186
|
-
/**
|
|
187
|
-
* The destination URL of the short link.
|
|
188
|
-
*/
|
|
189
54
|
cx?: string | undefined;
|
|
190
|
-
/**
|
|
191
|
-
* The destination URL of the short link.
|
|
192
|
-
*/
|
|
193
55
|
cc?: string | undefined;
|
|
194
|
-
/**
|
|
195
|
-
* The destination URL of the short link.
|
|
196
|
-
*/
|
|
197
56
|
co?: string | undefined;
|
|
198
|
-
/**
|
|
199
|
-
* The destination URL of the short link.
|
|
200
|
-
*/
|
|
201
57
|
km?: string | undefined;
|
|
202
|
-
/**
|
|
203
|
-
* The destination URL of the short link.
|
|
204
|
-
*/
|
|
205
58
|
cg?: string | undefined;
|
|
206
|
-
/**
|
|
207
|
-
* The destination URL of the short link.
|
|
208
|
-
*/
|
|
209
59
|
cd?: string | undefined;
|
|
210
|
-
/**
|
|
211
|
-
* The destination URL of the short link.
|
|
212
|
-
*/
|
|
213
60
|
ck?: string | undefined;
|
|
214
|
-
/**
|
|
215
|
-
* The destination URL of the short link.
|
|
216
|
-
*/
|
|
217
61
|
cr?: string | undefined;
|
|
218
|
-
/**
|
|
219
|
-
* The destination URL of the short link.
|
|
220
|
-
*/
|
|
221
62
|
ci?: string | undefined;
|
|
222
|
-
/**
|
|
223
|
-
* The destination URL of the short link.
|
|
224
|
-
*/
|
|
225
63
|
hr?: string | undefined;
|
|
226
|
-
/**
|
|
227
|
-
* The destination URL of the short link.
|
|
228
|
-
*/
|
|
229
64
|
cu?: string | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* The destination URL of the short link.
|
|
232
|
-
*/
|
|
233
65
|
cy?: string | undefined;
|
|
234
|
-
/**
|
|
235
|
-
* The destination URL of the short link.
|
|
236
|
-
*/
|
|
237
66
|
cz?: string | undefined;
|
|
238
|
-
/**
|
|
239
|
-
* The destination URL of the short link.
|
|
240
|
-
*/
|
|
241
67
|
dk?: string | undefined;
|
|
242
|
-
/**
|
|
243
|
-
* The destination URL of the short link.
|
|
244
|
-
*/
|
|
245
68
|
dj?: string | undefined;
|
|
246
|
-
/**
|
|
247
|
-
* The destination URL of the short link.
|
|
248
|
-
*/
|
|
249
69
|
dm?: string | undefined;
|
|
250
|
-
/**
|
|
251
|
-
* The destination URL of the short link.
|
|
252
|
-
*/
|
|
253
70
|
do?: string | undefined;
|
|
254
|
-
/**
|
|
255
|
-
* The destination URL of the short link.
|
|
256
|
-
*/
|
|
257
71
|
ec?: string | undefined;
|
|
258
|
-
/**
|
|
259
|
-
* The destination URL of the short link.
|
|
260
|
-
*/
|
|
261
72
|
eg?: string | undefined;
|
|
262
|
-
/**
|
|
263
|
-
* The destination URL of the short link.
|
|
264
|
-
*/
|
|
265
73
|
sv?: string | undefined;
|
|
266
|
-
/**
|
|
267
|
-
* The destination URL of the short link.
|
|
268
|
-
*/
|
|
269
74
|
gq?: string | undefined;
|
|
270
|
-
/**
|
|
271
|
-
* The destination URL of the short link.
|
|
272
|
-
*/
|
|
273
75
|
er?: string | undefined;
|
|
274
|
-
/**
|
|
275
|
-
* The destination URL of the short link.
|
|
276
|
-
*/
|
|
277
76
|
ee?: string | undefined;
|
|
278
|
-
/**
|
|
279
|
-
* The destination URL of the short link.
|
|
280
|
-
*/
|
|
281
77
|
et?: string | undefined;
|
|
282
|
-
/**
|
|
283
|
-
* The destination URL of the short link.
|
|
284
|
-
*/
|
|
285
78
|
fk?: string | undefined;
|
|
286
|
-
/**
|
|
287
|
-
* The destination URL of the short link.
|
|
288
|
-
*/
|
|
289
79
|
fo?: string | undefined;
|
|
290
|
-
/**
|
|
291
|
-
* The destination URL of the short link.
|
|
292
|
-
*/
|
|
293
80
|
fj?: string | undefined;
|
|
294
|
-
/**
|
|
295
|
-
* The destination URL of the short link.
|
|
296
|
-
*/
|
|
297
81
|
fi?: string | undefined;
|
|
298
|
-
/**
|
|
299
|
-
* The destination URL of the short link.
|
|
300
|
-
*/
|
|
301
82
|
fr?: string | undefined;
|
|
302
|
-
/**
|
|
303
|
-
* The destination URL of the short link.
|
|
304
|
-
*/
|
|
305
83
|
gf?: string | undefined;
|
|
306
|
-
/**
|
|
307
|
-
* The destination URL of the short link.
|
|
308
|
-
*/
|
|
309
84
|
pf?: string | undefined;
|
|
310
|
-
/**
|
|
311
|
-
* The destination URL of the short link.
|
|
312
|
-
*/
|
|
313
85
|
tf?: string | undefined;
|
|
314
|
-
/**
|
|
315
|
-
* The destination URL of the short link.
|
|
316
|
-
*/
|
|
317
86
|
ga?: string | undefined;
|
|
318
|
-
/**
|
|
319
|
-
* The destination URL of the short link.
|
|
320
|
-
*/
|
|
321
87
|
gm?: string | undefined;
|
|
322
|
-
/**
|
|
323
|
-
* The destination URL of the short link.
|
|
324
|
-
*/
|
|
325
88
|
ge?: string | undefined;
|
|
326
|
-
/**
|
|
327
|
-
* The destination URL of the short link.
|
|
328
|
-
*/
|
|
329
89
|
de?: string | undefined;
|
|
330
|
-
/**
|
|
331
|
-
* The destination URL of the short link.
|
|
332
|
-
*/
|
|
333
90
|
gh?: string | undefined;
|
|
334
|
-
/**
|
|
335
|
-
* The destination URL of the short link.
|
|
336
|
-
*/
|
|
337
91
|
gi?: string | undefined;
|
|
338
|
-
/**
|
|
339
|
-
* The destination URL of the short link.
|
|
340
|
-
*/
|
|
341
92
|
gr?: string | undefined;
|
|
342
|
-
/**
|
|
343
|
-
* The destination URL of the short link.
|
|
344
|
-
*/
|
|
345
93
|
gl?: string | undefined;
|
|
346
|
-
/**
|
|
347
|
-
* The destination URL of the short link.
|
|
348
|
-
*/
|
|
349
94
|
gd?: string | undefined;
|
|
350
|
-
/**
|
|
351
|
-
* The destination URL of the short link.
|
|
352
|
-
*/
|
|
353
95
|
gp?: string | undefined;
|
|
354
|
-
/**
|
|
355
|
-
* The destination URL of the short link.
|
|
356
|
-
*/
|
|
357
96
|
gu?: string | undefined;
|
|
358
|
-
/**
|
|
359
|
-
* The destination URL of the short link.
|
|
360
|
-
*/
|
|
361
97
|
gt?: string | undefined;
|
|
362
|
-
/**
|
|
363
|
-
* The destination URL of the short link.
|
|
364
|
-
*/
|
|
365
98
|
gn?: string | undefined;
|
|
366
|
-
/**
|
|
367
|
-
* The destination URL of the short link.
|
|
368
|
-
*/
|
|
369
99
|
gw?: string | undefined;
|
|
370
|
-
/**
|
|
371
|
-
* The destination URL of the short link.
|
|
372
|
-
*/
|
|
373
100
|
gy?: string | undefined;
|
|
374
|
-
/**
|
|
375
|
-
* The destination URL of the short link.
|
|
376
|
-
*/
|
|
377
101
|
ht?: string | undefined;
|
|
378
|
-
/**
|
|
379
|
-
* The destination URL of the short link.
|
|
380
|
-
*/
|
|
381
102
|
hm?: string | undefined;
|
|
382
|
-
/**
|
|
383
|
-
* The destination URL of the short link.
|
|
384
|
-
*/
|
|
385
103
|
va?: string | undefined;
|
|
386
|
-
/**
|
|
387
|
-
* The destination URL of the short link.
|
|
388
|
-
*/
|
|
389
104
|
hn?: string | undefined;
|
|
390
|
-
/**
|
|
391
|
-
* The destination URL of the short link.
|
|
392
|
-
*/
|
|
393
105
|
hk?: string | undefined;
|
|
394
|
-
/**
|
|
395
|
-
* The destination URL of the short link.
|
|
396
|
-
*/
|
|
397
106
|
hu?: string | undefined;
|
|
398
|
-
/**
|
|
399
|
-
* The destination URL of the short link.
|
|
400
|
-
*/
|
|
401
107
|
is?: string | undefined;
|
|
402
|
-
/**
|
|
403
|
-
* The destination URL of the short link.
|
|
404
|
-
*/
|
|
405
108
|
in?: string | undefined;
|
|
406
|
-
/**
|
|
407
|
-
* The destination URL of the short link.
|
|
408
|
-
*/
|
|
409
109
|
id?: string | undefined;
|
|
410
|
-
/**
|
|
411
|
-
* The destination URL of the short link.
|
|
412
|
-
*/
|
|
413
110
|
ir?: string | undefined;
|
|
414
|
-
/**
|
|
415
|
-
* The destination URL of the short link.
|
|
416
|
-
*/
|
|
417
111
|
iq?: string | undefined;
|
|
418
|
-
/**
|
|
419
|
-
* The destination URL of the short link.
|
|
420
|
-
*/
|
|
421
112
|
ie?: string | undefined;
|
|
422
|
-
/**
|
|
423
|
-
* The destination URL of the short link.
|
|
424
|
-
*/
|
|
425
113
|
il?: string | undefined;
|
|
426
|
-
/**
|
|
427
|
-
* The destination URL of the short link.
|
|
428
|
-
*/
|
|
429
114
|
it?: string | undefined;
|
|
430
|
-
/**
|
|
431
|
-
* The destination URL of the short link.
|
|
432
|
-
*/
|
|
433
115
|
jm?: string | undefined;
|
|
434
|
-
/**
|
|
435
|
-
* The destination URL of the short link.
|
|
436
|
-
*/
|
|
437
116
|
jp?: string | undefined;
|
|
438
|
-
/**
|
|
439
|
-
* The destination URL of the short link.
|
|
440
|
-
*/
|
|
441
117
|
jo?: string | undefined;
|
|
442
|
-
/**
|
|
443
|
-
* The destination URL of the short link.
|
|
444
|
-
*/
|
|
445
118
|
kz?: string | undefined;
|
|
446
|
-
/**
|
|
447
|
-
* The destination URL of the short link.
|
|
448
|
-
*/
|
|
449
119
|
ke?: string | undefined;
|
|
450
|
-
/**
|
|
451
|
-
* The destination URL of the short link.
|
|
452
|
-
*/
|
|
453
120
|
ki?: string | undefined;
|
|
454
|
-
/**
|
|
455
|
-
* The destination URL of the short link.
|
|
456
|
-
*/
|
|
457
121
|
kp?: string | undefined;
|
|
458
|
-
/**
|
|
459
|
-
* The destination URL of the short link.
|
|
460
|
-
*/
|
|
461
122
|
kr?: string | undefined;
|
|
462
|
-
/**
|
|
463
|
-
* The destination URL of the short link.
|
|
464
|
-
*/
|
|
465
123
|
kw?: string | undefined;
|
|
466
|
-
/**
|
|
467
|
-
* The destination URL of the short link.
|
|
468
|
-
*/
|
|
469
124
|
kg?: string | undefined;
|
|
470
|
-
/**
|
|
471
|
-
* The destination URL of the short link.
|
|
472
|
-
*/
|
|
473
125
|
la?: string | undefined;
|
|
474
|
-
/**
|
|
475
|
-
* The destination URL of the short link.
|
|
476
|
-
*/
|
|
477
126
|
lv?: string | undefined;
|
|
478
|
-
/**
|
|
479
|
-
* The destination URL of the short link.
|
|
480
|
-
*/
|
|
481
127
|
lb?: string | undefined;
|
|
482
|
-
/**
|
|
483
|
-
* The destination URL of the short link.
|
|
484
|
-
*/
|
|
485
128
|
ls?: string | undefined;
|
|
486
|
-
/**
|
|
487
|
-
* The destination URL of the short link.
|
|
488
|
-
*/
|
|
489
129
|
lr?: string | undefined;
|
|
490
|
-
/**
|
|
491
|
-
* The destination URL of the short link.
|
|
492
|
-
*/
|
|
493
130
|
ly?: string | undefined;
|
|
494
|
-
/**
|
|
495
|
-
* The destination URL of the short link.
|
|
496
|
-
*/
|
|
497
131
|
li?: string | undefined;
|
|
498
|
-
/**
|
|
499
|
-
* The destination URL of the short link.
|
|
500
|
-
*/
|
|
501
132
|
lt?: string | undefined;
|
|
502
|
-
/**
|
|
503
|
-
* The destination URL of the short link.
|
|
504
|
-
*/
|
|
505
133
|
lu?: string | undefined;
|
|
506
|
-
/**
|
|
507
|
-
* The destination URL of the short link.
|
|
508
|
-
*/
|
|
509
134
|
mo?: string | undefined;
|
|
510
|
-
/**
|
|
511
|
-
* The destination URL of the short link.
|
|
512
|
-
*/
|
|
513
135
|
mg?: string | undefined;
|
|
514
|
-
/**
|
|
515
|
-
* The destination URL of the short link.
|
|
516
|
-
*/
|
|
517
136
|
mw?: string | undefined;
|
|
518
|
-
/**
|
|
519
|
-
* The destination URL of the short link.
|
|
520
|
-
*/
|
|
521
137
|
my?: string | undefined;
|
|
522
|
-
/**
|
|
523
|
-
* The destination URL of the short link.
|
|
524
|
-
*/
|
|
525
138
|
mv?: string | undefined;
|
|
526
|
-
/**
|
|
527
|
-
* The destination URL of the short link.
|
|
528
|
-
*/
|
|
529
139
|
ml?: string | undefined;
|
|
530
|
-
/**
|
|
531
|
-
* The destination URL of the short link.
|
|
532
|
-
*/
|
|
533
140
|
mt?: string | undefined;
|
|
534
|
-
/**
|
|
535
|
-
* The destination URL of the short link.
|
|
536
|
-
*/
|
|
537
141
|
mh?: string | undefined;
|
|
538
|
-
/**
|
|
539
|
-
* The destination URL of the short link.
|
|
540
|
-
*/
|
|
541
142
|
mq?: string | undefined;
|
|
542
|
-
/**
|
|
543
|
-
* The destination URL of the short link.
|
|
544
|
-
*/
|
|
545
143
|
mr?: string | undefined;
|
|
546
|
-
/**
|
|
547
|
-
* The destination URL of the short link.
|
|
548
|
-
*/
|
|
549
144
|
mu?: string | undefined;
|
|
550
|
-
/**
|
|
551
|
-
* The destination URL of the short link.
|
|
552
|
-
*/
|
|
553
145
|
yt?: string | undefined;
|
|
554
|
-
/**
|
|
555
|
-
* The destination URL of the short link.
|
|
556
|
-
*/
|
|
557
146
|
mx?: string | undefined;
|
|
558
|
-
/**
|
|
559
|
-
* The destination URL of the short link.
|
|
560
|
-
*/
|
|
561
147
|
fm?: string | undefined;
|
|
562
|
-
/**
|
|
563
|
-
* The destination URL of the short link.
|
|
564
|
-
*/
|
|
565
148
|
md?: string | undefined;
|
|
566
|
-
/**
|
|
567
|
-
* The destination URL of the short link.
|
|
568
|
-
*/
|
|
569
149
|
mc?: string | undefined;
|
|
570
|
-
/**
|
|
571
|
-
* The destination URL of the short link.
|
|
572
|
-
*/
|
|
573
150
|
mn?: string | undefined;
|
|
574
|
-
/**
|
|
575
|
-
* The destination URL of the short link.
|
|
576
|
-
*/
|
|
577
151
|
ms?: string | undefined;
|
|
578
|
-
/**
|
|
579
|
-
* The destination URL of the short link.
|
|
580
|
-
*/
|
|
581
152
|
ma?: string | undefined;
|
|
582
|
-
/**
|
|
583
|
-
* The destination URL of the short link.
|
|
584
|
-
*/
|
|
585
153
|
mz?: string | undefined;
|
|
586
|
-
/**
|
|
587
|
-
* The destination URL of the short link.
|
|
588
|
-
*/
|
|
589
154
|
mm?: string | undefined;
|
|
590
|
-
/**
|
|
591
|
-
* The destination URL of the short link.
|
|
592
|
-
*/
|
|
593
155
|
na?: string | undefined;
|
|
594
|
-
/**
|
|
595
|
-
* The destination URL of the short link.
|
|
596
|
-
*/
|
|
597
156
|
nr?: string | undefined;
|
|
598
|
-
/**
|
|
599
|
-
* The destination URL of the short link.
|
|
600
|
-
*/
|
|
601
157
|
np?: string | undefined;
|
|
602
|
-
/**
|
|
603
|
-
* The destination URL of the short link.
|
|
604
|
-
*/
|
|
605
158
|
nl?: string | undefined;
|
|
606
|
-
/**
|
|
607
|
-
* The destination URL of the short link.
|
|
608
|
-
*/
|
|
609
159
|
nc?: string | undefined;
|
|
610
|
-
/**
|
|
611
|
-
* The destination URL of the short link.
|
|
612
|
-
*/
|
|
613
160
|
nz?: string | undefined;
|
|
614
|
-
/**
|
|
615
|
-
* The destination URL of the short link.
|
|
616
|
-
*/
|
|
617
161
|
ni?: string | undefined;
|
|
618
|
-
/**
|
|
619
|
-
* The destination URL of the short link.
|
|
620
|
-
*/
|
|
621
162
|
ne?: string | undefined;
|
|
622
|
-
/**
|
|
623
|
-
* The destination URL of the short link.
|
|
624
|
-
*/
|
|
625
163
|
ng?: string | undefined;
|
|
626
|
-
/**
|
|
627
|
-
* The destination URL of the short link.
|
|
628
|
-
*/
|
|
629
164
|
nu?: string | undefined;
|
|
630
|
-
/**
|
|
631
|
-
* The destination URL of the short link.
|
|
632
|
-
*/
|
|
633
165
|
nf?: string | undefined;
|
|
634
|
-
/**
|
|
635
|
-
* The destination URL of the short link.
|
|
636
|
-
*/
|
|
637
166
|
mk?: string | undefined;
|
|
638
|
-
/**
|
|
639
|
-
* The destination URL of the short link.
|
|
640
|
-
*/
|
|
641
167
|
mp?: string | undefined;
|
|
642
|
-
/**
|
|
643
|
-
* The destination URL of the short link.
|
|
644
|
-
*/
|
|
645
168
|
no?: string | undefined;
|
|
646
|
-
/**
|
|
647
|
-
* The destination URL of the short link.
|
|
648
|
-
*/
|
|
649
169
|
om?: string | undefined;
|
|
650
|
-
/**
|
|
651
|
-
* The destination URL of the short link.
|
|
652
|
-
*/
|
|
653
170
|
pk?: string | undefined;
|
|
654
|
-
/**
|
|
655
|
-
* The destination URL of the short link.
|
|
656
|
-
*/
|
|
657
171
|
pw?: string | undefined;
|
|
658
|
-
/**
|
|
659
|
-
* The destination URL of the short link.
|
|
660
|
-
*/
|
|
661
172
|
ps?: string | undefined;
|
|
662
|
-
|
|
663
|
-
* The destination URL of the short link.
|
|
664
|
-
*/
|
|
665
|
-
pa?: string | undefined;
|
|
666
|
-
/**
|
|
667
|
-
* The destination URL of the short link.
|
|
668
|
-
*/
|
|
173
|
+
pa?: string | undefined;
|
|
669
174
|
pg?: string | undefined;
|
|
670
|
-
/**
|
|
671
|
-
* The destination URL of the short link.
|
|
672
|
-
*/
|
|
673
175
|
py?: string | undefined;
|
|
674
|
-
/**
|
|
675
|
-
* The destination URL of the short link.
|
|
676
|
-
*/
|
|
677
176
|
pe?: string | undefined;
|
|
678
|
-
/**
|
|
679
|
-
* The destination URL of the short link.
|
|
680
|
-
*/
|
|
681
177
|
ph?: string | undefined;
|
|
682
|
-
/**
|
|
683
|
-
* The destination URL of the short link.
|
|
684
|
-
*/
|
|
685
178
|
pn?: string | undefined;
|
|
686
|
-
/**
|
|
687
|
-
* The destination URL of the short link.
|
|
688
|
-
*/
|
|
689
179
|
pl?: string | undefined;
|
|
690
|
-
/**
|
|
691
|
-
* The destination URL of the short link.
|
|
692
|
-
*/
|
|
693
180
|
pt?: string | undefined;
|
|
694
|
-
/**
|
|
695
|
-
* The destination URL of the short link.
|
|
696
|
-
*/
|
|
697
181
|
pr?: string | undefined;
|
|
698
|
-
/**
|
|
699
|
-
* The destination URL of the short link.
|
|
700
|
-
*/
|
|
701
182
|
qa?: string | undefined;
|
|
702
|
-
/**
|
|
703
|
-
* The destination URL of the short link.
|
|
704
|
-
*/
|
|
705
183
|
re?: string | undefined;
|
|
706
|
-
/**
|
|
707
|
-
* The destination URL of the short link.
|
|
708
|
-
*/
|
|
709
184
|
ro?: string | undefined;
|
|
710
|
-
/**
|
|
711
|
-
* The destination URL of the short link.
|
|
712
|
-
*/
|
|
713
185
|
ru?: string | undefined;
|
|
714
|
-
/**
|
|
715
|
-
* The destination URL of the short link.
|
|
716
|
-
*/
|
|
717
186
|
rw?: string | undefined;
|
|
718
|
-
/**
|
|
719
|
-
* The destination URL of the short link.
|
|
720
|
-
*/
|
|
721
187
|
sh?: string | undefined;
|
|
722
|
-
/**
|
|
723
|
-
* The destination URL of the short link.
|
|
724
|
-
*/
|
|
725
188
|
kn?: string | undefined;
|
|
726
|
-
/**
|
|
727
|
-
* The destination URL of the short link.
|
|
728
|
-
*/
|
|
729
189
|
lc?: string | undefined;
|
|
730
|
-
/**
|
|
731
|
-
* The destination URL of the short link.
|
|
732
|
-
*/
|
|
733
190
|
pm?: string | undefined;
|
|
734
|
-
/**
|
|
735
|
-
* The destination URL of the short link.
|
|
736
|
-
*/
|
|
737
191
|
vc?: string | undefined;
|
|
738
|
-
/**
|
|
739
|
-
* The destination URL of the short link.
|
|
740
|
-
*/
|
|
741
192
|
ws?: string | undefined;
|
|
742
|
-
/**
|
|
743
|
-
* The destination URL of the short link.
|
|
744
|
-
*/
|
|
745
193
|
sm?: string | undefined;
|
|
746
|
-
/**
|
|
747
|
-
* The destination URL of the short link.
|
|
748
|
-
*/
|
|
749
194
|
st?: string | undefined;
|
|
750
|
-
/**
|
|
751
|
-
* The destination URL of the short link.
|
|
752
|
-
*/
|
|
753
195
|
sa?: string | undefined;
|
|
754
|
-
/**
|
|
755
|
-
* The destination URL of the short link.
|
|
756
|
-
*/
|
|
757
196
|
sn?: string | undefined;
|
|
758
|
-
/**
|
|
759
|
-
* The destination URL of the short link.
|
|
760
|
-
*/
|
|
761
197
|
sc?: string | undefined;
|
|
762
|
-
/**
|
|
763
|
-
* The destination URL of the short link.
|
|
764
|
-
*/
|
|
765
198
|
sl?: string | undefined;
|
|
766
|
-
/**
|
|
767
|
-
* The destination URL of the short link.
|
|
768
|
-
*/
|
|
769
199
|
sg?: string | undefined;
|
|
770
|
-
/**
|
|
771
|
-
* The destination URL of the short link.
|
|
772
|
-
*/
|
|
773
200
|
sk?: string | undefined;
|
|
774
|
-
/**
|
|
775
|
-
* The destination URL of the short link.
|
|
776
|
-
*/
|
|
777
201
|
si?: string | undefined;
|
|
778
|
-
/**
|
|
779
|
-
* The destination URL of the short link.
|
|
780
|
-
*/
|
|
781
202
|
sb?: string | undefined;
|
|
782
|
-
/**
|
|
783
|
-
* The destination URL of the short link.
|
|
784
|
-
*/
|
|
785
203
|
so?: string | undefined;
|
|
786
|
-
/**
|
|
787
|
-
* The destination URL of the short link.
|
|
788
|
-
*/
|
|
789
204
|
za?: string | undefined;
|
|
790
|
-
/**
|
|
791
|
-
* The destination URL of the short link.
|
|
792
|
-
*/
|
|
793
205
|
gs?: string | undefined;
|
|
794
|
-
/**
|
|
795
|
-
* The destination URL of the short link.
|
|
796
|
-
*/
|
|
797
206
|
es?: string | undefined;
|
|
798
|
-
/**
|
|
799
|
-
* The destination URL of the short link.
|
|
800
|
-
*/
|
|
801
207
|
lk?: string | undefined;
|
|
802
|
-
/**
|
|
803
|
-
* The destination URL of the short link.
|
|
804
|
-
*/
|
|
805
208
|
sd?: string | undefined;
|
|
806
|
-
/**
|
|
807
|
-
* The destination URL of the short link.
|
|
808
|
-
*/
|
|
809
209
|
sr?: string | undefined;
|
|
810
|
-
/**
|
|
811
|
-
* The destination URL of the short link.
|
|
812
|
-
*/
|
|
813
210
|
sj?: string | undefined;
|
|
814
|
-
/**
|
|
815
|
-
* The destination URL of the short link.
|
|
816
|
-
*/
|
|
817
211
|
sz?: string | undefined;
|
|
818
|
-
/**
|
|
819
|
-
* The destination URL of the short link.
|
|
820
|
-
*/
|
|
821
212
|
se?: string | undefined;
|
|
822
|
-
/**
|
|
823
|
-
* The destination URL of the short link.
|
|
824
|
-
*/
|
|
825
213
|
ch?: string | undefined;
|
|
826
|
-
/**
|
|
827
|
-
* The destination URL of the short link.
|
|
828
|
-
*/
|
|
829
214
|
sy?: string | undefined;
|
|
830
|
-
/**
|
|
831
|
-
* The destination URL of the short link.
|
|
832
|
-
*/
|
|
833
215
|
tw?: string | undefined;
|
|
834
|
-
/**
|
|
835
|
-
* The destination URL of the short link.
|
|
836
|
-
*/
|
|
837
216
|
tj?: string | undefined;
|
|
838
|
-
/**
|
|
839
|
-
* The destination URL of the short link.
|
|
840
|
-
*/
|
|
841
217
|
tz?: string | undefined;
|
|
842
|
-
/**
|
|
843
|
-
* The destination URL of the short link.
|
|
844
|
-
*/
|
|
845
218
|
th?: string | undefined;
|
|
846
|
-
/**
|
|
847
|
-
* The destination URL of the short link.
|
|
848
|
-
*/
|
|
849
219
|
tl?: string | undefined;
|
|
850
|
-
/**
|
|
851
|
-
* The destination URL of the short link.
|
|
852
|
-
*/
|
|
853
220
|
tg?: string | undefined;
|
|
854
|
-
/**
|
|
855
|
-
* The destination URL of the short link.
|
|
856
|
-
*/
|
|
857
221
|
tk?: string | undefined;
|
|
858
|
-
/**
|
|
859
|
-
* The destination URL of the short link.
|
|
860
|
-
*/
|
|
861
222
|
to?: string | undefined;
|
|
862
|
-
/**
|
|
863
|
-
* The destination URL of the short link.
|
|
864
|
-
*/
|
|
865
223
|
tt?: string | undefined;
|
|
866
|
-
/**
|
|
867
|
-
* The destination URL of the short link.
|
|
868
|
-
*/
|
|
869
224
|
tn?: string | undefined;
|
|
870
|
-
/**
|
|
871
|
-
* The destination URL of the short link.
|
|
872
|
-
*/
|
|
873
225
|
tr?: string | undefined;
|
|
874
|
-
/**
|
|
875
|
-
* The destination URL of the short link.
|
|
876
|
-
*/
|
|
877
226
|
tm?: string | undefined;
|
|
878
|
-
/**
|
|
879
|
-
* The destination URL of the short link.
|
|
880
|
-
*/
|
|
881
227
|
tc?: string | undefined;
|
|
882
|
-
/**
|
|
883
|
-
* The destination URL of the short link.
|
|
884
|
-
*/
|
|
885
228
|
tv?: string | undefined;
|
|
886
|
-
/**
|
|
887
|
-
* The destination URL of the short link.
|
|
888
|
-
*/
|
|
889
229
|
ug?: string | undefined;
|
|
890
|
-
/**
|
|
891
|
-
* The destination URL of the short link.
|
|
892
|
-
*/
|
|
893
230
|
ua?: string | undefined;
|
|
894
|
-
/**
|
|
895
|
-
* The destination URL of the short link.
|
|
896
|
-
*/
|
|
897
231
|
ae?: string | undefined;
|
|
898
|
-
/**
|
|
899
|
-
* The destination URL of the short link.
|
|
900
|
-
*/
|
|
901
232
|
gb?: string | undefined;
|
|
902
|
-
/**
|
|
903
|
-
* The destination URL of the short link.
|
|
904
|
-
*/
|
|
905
233
|
us?: string | undefined;
|
|
906
|
-
/**
|
|
907
|
-
* The destination URL of the short link.
|
|
908
|
-
*/
|
|
909
234
|
um?: string | undefined;
|
|
910
|
-
/**
|
|
911
|
-
* The destination URL of the short link.
|
|
912
|
-
*/
|
|
913
235
|
uy?: string | undefined;
|
|
914
|
-
/**
|
|
915
|
-
* The destination URL of the short link.
|
|
916
|
-
*/
|
|
917
236
|
uz?: string | undefined;
|
|
918
|
-
/**
|
|
919
|
-
* The destination URL of the short link.
|
|
920
|
-
*/
|
|
921
237
|
vu?: string | undefined;
|
|
922
|
-
/**
|
|
923
|
-
* The destination URL of the short link.
|
|
924
|
-
*/
|
|
925
238
|
ve?: string | undefined;
|
|
926
|
-
/**
|
|
927
|
-
* The destination URL of the short link.
|
|
928
|
-
*/
|
|
929
239
|
vn?: string | undefined;
|
|
930
|
-
/**
|
|
931
|
-
* The destination URL of the short link.
|
|
932
|
-
*/
|
|
933
240
|
vg?: string | undefined;
|
|
934
|
-
/**
|
|
935
|
-
* The destination URL of the short link.
|
|
936
|
-
*/
|
|
937
241
|
vi?: string | undefined;
|
|
938
|
-
/**
|
|
939
|
-
* The destination URL of the short link.
|
|
940
|
-
*/
|
|
941
242
|
wf?: string | undefined;
|
|
942
|
-
/**
|
|
943
|
-
* The destination URL of the short link.
|
|
944
|
-
*/
|
|
945
243
|
eh?: string | undefined;
|
|
946
|
-
/**
|
|
947
|
-
* The destination URL of the short link.
|
|
948
|
-
*/
|
|
949
244
|
ye?: string | undefined;
|
|
950
|
-
/**
|
|
951
|
-
* The destination URL of the short link.
|
|
952
|
-
*/
|
|
953
245
|
zm?: string | undefined;
|
|
954
|
-
/**
|
|
955
|
-
* The destination URL of the short link.
|
|
956
|
-
*/
|
|
957
246
|
zw?: string | undefined;
|
|
958
|
-
/**
|
|
959
|
-
* The destination URL of the short link.
|
|
960
|
-
*/
|
|
961
247
|
ax?: string | undefined;
|
|
962
|
-
/**
|
|
963
|
-
* The destination URL of the short link.
|
|
964
|
-
*/
|
|
965
248
|
bq?: string | undefined;
|
|
966
|
-
/**
|
|
967
|
-
* The destination URL of the short link.
|
|
968
|
-
*/
|
|
969
249
|
cw?: string | undefined;
|
|
970
|
-
/**
|
|
971
|
-
* The destination URL of the short link.
|
|
972
|
-
*/
|
|
973
250
|
gg?: string | undefined;
|
|
974
|
-
/**
|
|
975
|
-
* The destination URL of the short link.
|
|
976
|
-
*/
|
|
977
251
|
im?: string | undefined;
|
|
978
|
-
/**
|
|
979
|
-
* The destination URL of the short link.
|
|
980
|
-
*/
|
|
981
252
|
je?: string | undefined;
|
|
982
|
-
/**
|
|
983
|
-
* The destination URL of the short link.
|
|
984
|
-
*/
|
|
985
253
|
me?: string | undefined;
|
|
986
|
-
/**
|
|
987
|
-
* The destination URL of the short link.
|
|
988
|
-
*/
|
|
989
254
|
bl?: string | undefined;
|
|
990
|
-
/**
|
|
991
|
-
* The destination URL of the short link.
|
|
992
|
-
*/
|
|
993
255
|
mf?: string | undefined;
|
|
994
|
-
/**
|
|
995
|
-
* The destination URL of the short link.
|
|
996
|
-
*/
|
|
997
256
|
rs?: string | undefined;
|
|
998
|
-
/**
|
|
999
|
-
* The destination URL of the short link.
|
|
1000
|
-
*/
|
|
1001
257
|
sx?: string | undefined;
|
|
1002
|
-
/**
|
|
1003
|
-
* The destination URL of the short link.
|
|
1004
|
-
*/
|
|
1005
258
|
ss?: string | undefined;
|
|
1006
|
-
/**
|
|
1007
|
-
* The destination URL of the short link.
|
|
1008
|
-
*/
|
|
1009
259
|
xk?: string | undefined;
|
|
1010
260
|
};
|
|
1011
261
|
export type RequestBody = {
|