@dazl/api-client 1.0.0
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 +61 -0
- package/dist/db/generated-types.d.ts +274 -0
- package/dist/db/generated-types.d.ts.map +1 -0
- package/dist/db/generated-types.js +6 -0
- package/dist/db/generated-types.js.map +1 -0
- package/dist/db/jsonb.types.d.ts +21 -0
- package/dist/db/jsonb.types.d.ts.map +1 -0
- package/dist/db/jsonb.types.js +2 -0
- package/dist/db/jsonb.types.js.map +1 -0
- package/dist/feature-toggles-config.d.ts +52 -0
- package/dist/feature-toggles-config.d.ts.map +1 -0
- package/dist/feature-toggles-config.js +23 -0
- package/dist/feature-toggles-config.js.map +1 -0
- package/dist/internal/client/client.gen.d.ts +3 -0
- package/dist/internal/client/client.gen.d.ts.map +1 -0
- package/dist/internal/client/client.gen.js +217 -0
- package/dist/internal/client/client.gen.js.map +1 -0
- package/dist/internal/client/index.d.ts +11 -0
- package/dist/internal/client/index.d.ts.map +1 -0
- package/dist/internal/client/index.js +7 -0
- package/dist/internal/client/index.js.map +1 -0
- package/dist/internal/client/types.gen.d.ts +121 -0
- package/dist/internal/client/types.gen.d.ts.map +1 -0
- package/dist/internal/client/types.gen.js +3 -0
- package/dist/internal/client/types.gen.js.map +1 -0
- package/dist/internal/client/utils.gen.d.ts +38 -0
- package/dist/internal/client/utils.gen.d.ts.map +1 -0
- package/dist/internal/client/utils.gen.js +229 -0
- package/dist/internal/client/utils.gen.js.map +1 -0
- package/dist/internal/client.gen.d.ts +13 -0
- package/dist/internal/client.gen.d.ts.map +1 -0
- package/dist/internal/client.gen.js +4 -0
- package/dist/internal/client.gen.js.map +1 -0
- package/dist/internal/core/auth.gen.d.ts +26 -0
- package/dist/internal/core/auth.gen.d.ts.map +1 -0
- package/dist/internal/core/auth.gen.js +15 -0
- package/dist/internal/core/auth.gen.js.map +1 -0
- package/dist/internal/core/bodySerializer.gen.d.ts +26 -0
- package/dist/internal/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/internal/core/bodySerializer.gen.js +58 -0
- package/dist/internal/core/bodySerializer.gen.js.map +1 -0
- package/dist/internal/core/params.gen.d.ts +44 -0
- package/dist/internal/core/params.gen.d.ts.map +1 -0
- package/dist/internal/core/params.gen.js +110 -0
- package/dist/internal/core/params.gen.js.map +1 -0
- package/dist/internal/core/pathSerializer.gen.d.ts +34 -0
- package/dist/internal/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/internal/core/pathSerializer.gen.js +107 -0
- package/dist/internal/core/pathSerializer.gen.js.map +1 -0
- package/dist/internal/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/internal/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/internal/core/queryKeySerializer.gen.js +93 -0
- package/dist/internal/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/internal/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/internal/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/internal/core/serverSentEvents.gen.js +133 -0
- package/dist/internal/core/serverSentEvents.gen.js.map +1 -0
- package/dist/internal/core/types.gen.d.ts +84 -0
- package/dist/internal/core/types.gen.d.ts.map +1 -0
- package/dist/internal/core/types.gen.js +3 -0
- package/dist/internal/core/types.gen.js.map +1 -0
- package/dist/internal/core/utils.gen.d.ts +20 -0
- package/dist/internal/core/utils.gen.d.ts.map +1 -0
- package/dist/internal/core/utils.gen.js +88 -0
- package/dist/internal/core/utils.gen.js.map +1 -0
- package/dist/internal/index.d.ts +3 -0
- package/dist/internal/index.d.ts.map +1 -0
- package/dist/internal/index.js +3 -0
- package/dist/internal/index.js.map +1 -0
- package/dist/internal/sdk.gen.d.ts +157 -0
- package/dist/internal/sdk.gen.d.ts.map +1 -0
- package/dist/internal/sdk.gen.js +639 -0
- package/dist/internal/sdk.gen.js.map +1 -0
- package/dist/internal/types.gen.d.ts +5663 -0
- package/dist/internal/types.gen.d.ts.map +1 -0
- package/dist/internal/types.gen.js +3 -0
- package/dist/internal/types.gen.js.map +1 -0
- package/package.json +47 -0
- package/src/db/generated-types.ts +308 -0
- package/src/db/jsonb.types.ts +20 -0
- package/src/feature-toggles-config.ts +54 -0
- package/src/internal/client/client.gen.ts +277 -0
- package/src/internal/client/index.ts +27 -0
- package/src/internal/client/types.gen.ts +218 -0
- package/src/internal/client/utils.gen.ts +316 -0
- package/src/internal/client.gen.ts +16 -0
- package/src/internal/core/auth.gen.ts +48 -0
- package/src/internal/core/bodySerializer.gen.ts +82 -0
- package/src/internal/core/params.gen.ts +178 -0
- package/src/internal/core/pathSerializer.gen.ts +171 -0
- package/src/internal/core/queryKeySerializer.gen.ts +117 -0
- package/src/internal/core/serverSentEvents.gen.ts +242 -0
- package/src/internal/core/types.gen.ts +110 -0
- package/src/internal/core/utils.gen.ts +140 -0
- package/src/internal/index.ts +4 -0
- package/src/internal/sdk.gen.ts +742 -0
- package/src/internal/types.gen.ts +6133 -0
|
@@ -0,0 +1,639 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
export class UserSettings {
|
|
3
|
+
static getByDazlId(options) {
|
|
4
|
+
return options.client.get({ url: '/user-settings/{dazlId}', ...options });
|
|
5
|
+
}
|
|
6
|
+
static updateByDazlId(options) {
|
|
7
|
+
return options.client.put({
|
|
8
|
+
url: '/user-settings/{dazlId}',
|
|
9
|
+
...options,
|
|
10
|
+
headers: {
|
|
11
|
+
'Content-Type': 'application/json',
|
|
12
|
+
...options.headers
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
export class Billing {
|
|
18
|
+
static getHasSufficientCreditsByDazlId(options) {
|
|
19
|
+
return options.client.get({ url: '/billing/has-sufficient-credits/{dazlId}', ...options });
|
|
20
|
+
}
|
|
21
|
+
static getAllProducts(options) {
|
|
22
|
+
return options.client.get({ url: '/billing/prices', ...options });
|
|
23
|
+
}
|
|
24
|
+
static getPriceById(options) {
|
|
25
|
+
return options.client.get({ url: '/billing/price/{priceId}', ...options });
|
|
26
|
+
}
|
|
27
|
+
static getCustomerInfoByDazlId(options) {
|
|
28
|
+
return options.client.get({ url: '/billing/customer-info/{dazlId}', ...options });
|
|
29
|
+
}
|
|
30
|
+
static updateUserSubscription(options) {
|
|
31
|
+
return options.client.post({
|
|
32
|
+
url: '/billing/update-subscription',
|
|
33
|
+
...options,
|
|
34
|
+
headers: {
|
|
35
|
+
'Content-Type': 'application/json',
|
|
36
|
+
...options.headers
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
static cancelScheduledUpdateByDazlId(options) {
|
|
41
|
+
return options.client.post({ url: '/billing/cancel-scheduled-update/{dazlId}', ...options });
|
|
42
|
+
}
|
|
43
|
+
static createCustomerPortalSession(options) {
|
|
44
|
+
return options.client.post({
|
|
45
|
+
url: '/billing/create-portal-session',
|
|
46
|
+
...options,
|
|
47
|
+
headers: {
|
|
48
|
+
'Content-Type': 'application/json',
|
|
49
|
+
...options.headers
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
static createCustomerWithDefaultSubscription(options) {
|
|
54
|
+
return options.client.put({
|
|
55
|
+
url: '/billing/create-customer-with-default-subscription',
|
|
56
|
+
...options,
|
|
57
|
+
headers: {
|
|
58
|
+
'Content-Type': 'application/json',
|
|
59
|
+
...options.headers
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
static getUserInfoByDazlId(options) {
|
|
64
|
+
return options.client.get({ url: '/billing/user-info/{dazlId}', ...options });
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
export class GitHub {
|
|
68
|
+
static connectUser(options) {
|
|
69
|
+
return options.client.post({
|
|
70
|
+
url: '/github/user/{dazlId}/connect',
|
|
71
|
+
...options,
|
|
72
|
+
headers: {
|
|
73
|
+
'Content-Type': 'application/json',
|
|
74
|
+
...options.headers
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
static disconnectUser(options) {
|
|
79
|
+
return options.client.delete({ url: '/github/user/{dazlId}/disconnect', ...options });
|
|
80
|
+
}
|
|
81
|
+
static getUserInfo(options) {
|
|
82
|
+
return options.client.get({ url: '/github/user/{dazlId}/info', ...options });
|
|
83
|
+
}
|
|
84
|
+
static getInstallations(options) {
|
|
85
|
+
return options.client.get({ url: '/github/user/{dazlId}/installations', ...options });
|
|
86
|
+
}
|
|
87
|
+
static getProjectInfo(options) {
|
|
88
|
+
return options.client.get({ url: '/github/project/{projectId}/info', ...options });
|
|
89
|
+
}
|
|
90
|
+
static createRepository(options) {
|
|
91
|
+
return options.client.post({
|
|
92
|
+
url: '/github/project/{projectId}/repo',
|
|
93
|
+
...options,
|
|
94
|
+
headers: {
|
|
95
|
+
'Content-Type': 'application/json',
|
|
96
|
+
...options.headers
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
static getOAuthUrl(options) {
|
|
101
|
+
return options.client.get({ url: '/github/user/oauth-url', ...options });
|
|
102
|
+
}
|
|
103
|
+
static getAppInstallUrl(options) {
|
|
104
|
+
return options.client.get({ url: '/github/installation/url', ...options });
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
export class Publish {
|
|
108
|
+
static ensureSiteId(options) {
|
|
109
|
+
return options.client.post({
|
|
110
|
+
url: '/publish/site-id',
|
|
111
|
+
...options,
|
|
112
|
+
headers: {
|
|
113
|
+
'Content-Type': 'application/json',
|
|
114
|
+
...options.headers
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
static getLatestDeploy(options) {
|
|
119
|
+
return options.client.get({ url: '/publish/latest', ...options });
|
|
120
|
+
}
|
|
121
|
+
static upsertDeployInDb(options) {
|
|
122
|
+
return options.client.post({
|
|
123
|
+
url: '/publish/upsert-deploy',
|
|
124
|
+
...options,
|
|
125
|
+
headers: {
|
|
126
|
+
'Content-Type': 'application/json',
|
|
127
|
+
...options.headers
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
static updateEnvVars(options) {
|
|
132
|
+
return options.client.post({
|
|
133
|
+
url: '/publish/env-vars',
|
|
134
|
+
...options,
|
|
135
|
+
headers: {
|
|
136
|
+
'Content-Type': 'application/json',
|
|
137
|
+
...options.headers
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
static deleteCustomDomain(options) {
|
|
142
|
+
return options.client.delete({ url: '/publish/custom-domain', ...options });
|
|
143
|
+
}
|
|
144
|
+
static getCustomDomain(options) {
|
|
145
|
+
return options.client.get({ url: '/publish/custom-domain', ...options });
|
|
146
|
+
}
|
|
147
|
+
static addCustomDomain(options) {
|
|
148
|
+
return options.client.post({
|
|
149
|
+
url: '/publish/custom-domain',
|
|
150
|
+
...options,
|
|
151
|
+
headers: {
|
|
152
|
+
'Content-Type': 'application/json',
|
|
153
|
+
...options.headers
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
static deleteSite(options) {
|
|
158
|
+
return options.client.delete({ url: '/publish/site', ...options });
|
|
159
|
+
}
|
|
160
|
+
static getEntriConfig(options) {
|
|
161
|
+
return options.client.get({ url: '/publish/entri-config', ...options });
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
export class Project {
|
|
165
|
+
static duplicateProject(options) {
|
|
166
|
+
return options.client.post({
|
|
167
|
+
url: '/project/duplicate/{projectId}',
|
|
168
|
+
...options,
|
|
169
|
+
headers: {
|
|
170
|
+
'Content-Type': 'application/json',
|
|
171
|
+
...options.headers
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
static deleteProject(options) {
|
|
176
|
+
return options.client.delete({
|
|
177
|
+
url: '/project/{projectId}',
|
|
178
|
+
...options,
|
|
179
|
+
headers: {
|
|
180
|
+
'Content-Type': 'application/json',
|
|
181
|
+
...options.headers
|
|
182
|
+
}
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
static getProjectById(options) {
|
|
186
|
+
return options.client.get({ url: '/project/{projectId}', ...options });
|
|
187
|
+
}
|
|
188
|
+
static updateProject(options) {
|
|
189
|
+
return options.client.patch({
|
|
190
|
+
url: '/project/{projectId}',
|
|
191
|
+
...options,
|
|
192
|
+
headers: {
|
|
193
|
+
'Content-Type': 'application/json',
|
|
194
|
+
...options.headers
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
}
|
|
198
|
+
static createProject(options) {
|
|
199
|
+
return options.client.post({
|
|
200
|
+
url: '/project',
|
|
201
|
+
...options,
|
|
202
|
+
headers: {
|
|
203
|
+
'Content-Type': 'application/json',
|
|
204
|
+
...options.headers
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
static getUserProjects(options) {
|
|
209
|
+
return options.client.get({ url: '/project/user/{ownerDazlId}', ...options });
|
|
210
|
+
}
|
|
211
|
+
static inviteProjectMember(options) {
|
|
212
|
+
return options.client.post({
|
|
213
|
+
url: '/project/{projectId}/members/invite',
|
|
214
|
+
...options,
|
|
215
|
+
headers: {
|
|
216
|
+
'Content-Type': 'application/json',
|
|
217
|
+
...options.headers
|
|
218
|
+
}
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
static acceptProjectInvitation(options) {
|
|
222
|
+
return options.client.post({
|
|
223
|
+
url: '/project/members/accept-invitation',
|
|
224
|
+
...options,
|
|
225
|
+
headers: {
|
|
226
|
+
'Content-Type': 'application/json',
|
|
227
|
+
...options.headers
|
|
228
|
+
}
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
static getProjectCollaborators(options) {
|
|
232
|
+
return options.client.get({ url: '/project/{projectId}/collaborators', ...options });
|
|
233
|
+
}
|
|
234
|
+
static deleteProjectMember(options) {
|
|
235
|
+
return options.client.delete({ url: '/project/{projectId}/members/{memberId}', ...options });
|
|
236
|
+
}
|
|
237
|
+
static deleteProjectInvitation(options) {
|
|
238
|
+
return options.client.delete({ url: '/project/{projectId}/invitations/{invitationId}', ...options });
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
export class Comments {
|
|
242
|
+
static internalDeleteComment(options) {
|
|
243
|
+
return options.client.delete({ url: '/project/{projectId}/comments/{commentId}', ...options });
|
|
244
|
+
}
|
|
245
|
+
static internalGetProjectComment(options) {
|
|
246
|
+
return options.client.get({ url: '/project/{projectId}/comments/{commentId}', ...options });
|
|
247
|
+
}
|
|
248
|
+
static internalEditComment(options) {
|
|
249
|
+
return options.client.patch({
|
|
250
|
+
url: '/project/{projectId}/comments/{commentId}',
|
|
251
|
+
...options,
|
|
252
|
+
headers: {
|
|
253
|
+
'Content-Type': 'application/json',
|
|
254
|
+
...options.headers
|
|
255
|
+
}
|
|
256
|
+
});
|
|
257
|
+
}
|
|
258
|
+
static internalListProjectComments(options) {
|
|
259
|
+
return options.client.get({ url: '/project/{projectId}/comments', ...options });
|
|
260
|
+
}
|
|
261
|
+
static internalCreateComment(options) {
|
|
262
|
+
return options.client.post({
|
|
263
|
+
url: '/project/{projectId}/comments',
|
|
264
|
+
...options,
|
|
265
|
+
headers: {
|
|
266
|
+
'Content-Type': 'application/json',
|
|
267
|
+
...options.headers
|
|
268
|
+
}
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
static internalResolveComment(options) {
|
|
272
|
+
return options.client.post({ url: '/project/{projectId}/comments/{commentId}/resolve', ...options });
|
|
273
|
+
}
|
|
274
|
+
static internalReopenComment(options) {
|
|
275
|
+
return options.client.post({ url: '/project/{projectId}/comments/{commentId}/reopen', ...options });
|
|
276
|
+
}
|
|
277
|
+
static internalCreateReply(options) {
|
|
278
|
+
return options.client.post({
|
|
279
|
+
url: '/project/{projectId}/comments/{commentId}/replies',
|
|
280
|
+
...options,
|
|
281
|
+
headers: {
|
|
282
|
+
'Content-Type': 'application/json',
|
|
283
|
+
...options.headers
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
static internalDeleteReply(options) {
|
|
288
|
+
return options.client.delete({ url: '/project/{projectId}/comments/{commentId}/replies/{replyId}', ...options });
|
|
289
|
+
}
|
|
290
|
+
static internalEditReply(options) {
|
|
291
|
+
return options.client.patch({
|
|
292
|
+
url: '/project/{projectId}/comments/{commentId}/replies/{replyId}',
|
|
293
|
+
...options,
|
|
294
|
+
headers: {
|
|
295
|
+
'Content-Type': 'application/json',
|
|
296
|
+
...options.headers
|
|
297
|
+
}
|
|
298
|
+
});
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
export class Template {
|
|
302
|
+
static getPublicTemplates(options) {
|
|
303
|
+
return options.client.get({ url: '/template/public-templates', ...options });
|
|
304
|
+
}
|
|
305
|
+
static getUserTemplates(options) {
|
|
306
|
+
return options.client.get({ url: '/template/user/{dazlId}', ...options });
|
|
307
|
+
}
|
|
308
|
+
static deleteTemplate(options) {
|
|
309
|
+
return options.client.delete({
|
|
310
|
+
url: '/template/{templateId}',
|
|
311
|
+
...options,
|
|
312
|
+
headers: {
|
|
313
|
+
'Content-Type': 'application/json',
|
|
314
|
+
...options.headers
|
|
315
|
+
}
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
static getTemplate(options) {
|
|
319
|
+
return options.client.get({ url: '/template/{templateId}', ...options });
|
|
320
|
+
}
|
|
321
|
+
static updateTemplate(options) {
|
|
322
|
+
return options.client.patch({
|
|
323
|
+
url: '/template/{templateId}',
|
|
324
|
+
...options,
|
|
325
|
+
headers: {
|
|
326
|
+
'Content-Type': 'application/json',
|
|
327
|
+
...options.headers
|
|
328
|
+
}
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
static createTemplate(options) {
|
|
332
|
+
return options.client.post({
|
|
333
|
+
url: '/template/create',
|
|
334
|
+
...options,
|
|
335
|
+
headers: {
|
|
336
|
+
'Content-Type': 'application/json',
|
|
337
|
+
...options.headers
|
|
338
|
+
}
|
|
339
|
+
});
|
|
340
|
+
}
|
|
341
|
+
static addTemplateSharedWith(options) {
|
|
342
|
+
return options.client.post({
|
|
343
|
+
url: '/template/{templateId}/shared-with',
|
|
344
|
+
...options,
|
|
345
|
+
headers: {
|
|
346
|
+
'Content-Type': 'application/json',
|
|
347
|
+
...options.headers
|
|
348
|
+
}
|
|
349
|
+
});
|
|
350
|
+
}
|
|
351
|
+
static removeTemplateSharedWith(options) {
|
|
352
|
+
return options.client.delete({
|
|
353
|
+
url: '/template/{templateId}/shared-with/{email}',
|
|
354
|
+
...options,
|
|
355
|
+
headers: {
|
|
356
|
+
'Content-Type': 'application/json',
|
|
357
|
+
...options.headers
|
|
358
|
+
}
|
|
359
|
+
});
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
export class Media {
|
|
363
|
+
static getUploadConfiguration(options) {
|
|
364
|
+
return options.client.post({
|
|
365
|
+
url: '/media/upload-configuration',
|
|
366
|
+
...options,
|
|
367
|
+
headers: {
|
|
368
|
+
'Content-Type': 'application/json',
|
|
369
|
+
...options.headers
|
|
370
|
+
}
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* @deprecated
|
|
375
|
+
*/
|
|
376
|
+
static listFiles(options) {
|
|
377
|
+
return options.client.get({ url: '/media/list', ...options });
|
|
378
|
+
}
|
|
379
|
+
static createMedia(options) {
|
|
380
|
+
return options.client.post({
|
|
381
|
+
url: '/media',
|
|
382
|
+
...options,
|
|
383
|
+
headers: {
|
|
384
|
+
'Content-Type': 'application/json',
|
|
385
|
+
...options.headers
|
|
386
|
+
}
|
|
387
|
+
});
|
|
388
|
+
}
|
|
389
|
+
static saveMedia(options) {
|
|
390
|
+
return options.client.post({
|
|
391
|
+
url: '/media/save',
|
|
392
|
+
...options,
|
|
393
|
+
headers: {
|
|
394
|
+
'Content-Type': 'application/json',
|
|
395
|
+
...options.headers
|
|
396
|
+
}
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
export class Capture {
|
|
401
|
+
static takeScreenshot(options) {
|
|
402
|
+
return options.client.post({
|
|
403
|
+
url: '/capture/screenshot',
|
|
404
|
+
...options,
|
|
405
|
+
headers: {
|
|
406
|
+
'Content-Type': 'application/json',
|
|
407
|
+
...options.headers
|
|
408
|
+
}
|
|
409
|
+
});
|
|
410
|
+
}
|
|
411
|
+
static scrapePageContent(options) {
|
|
412
|
+
return options.client.post({
|
|
413
|
+
url: '/capture/scrape',
|
|
414
|
+
...options,
|
|
415
|
+
headers: {
|
|
416
|
+
'Content-Type': 'application/json',
|
|
417
|
+
...options.headers
|
|
418
|
+
}
|
|
419
|
+
});
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
export class User {
|
|
423
|
+
static getUserByDazlId(options) {
|
|
424
|
+
return options.client.get({ url: '/user/{dazlId}', ...options });
|
|
425
|
+
}
|
|
426
|
+
static updateUser(options) {
|
|
427
|
+
return options.client.patch({
|
|
428
|
+
url: '/user/{dazlId}',
|
|
429
|
+
...options,
|
|
430
|
+
headers: {
|
|
431
|
+
'Content-Type': 'application/json',
|
|
432
|
+
...options.headers
|
|
433
|
+
}
|
|
434
|
+
});
|
|
435
|
+
}
|
|
436
|
+
static getUsersByDazlIds(options) {
|
|
437
|
+
return options.client.post({
|
|
438
|
+
url: '/user/list-by-dazl-ids',
|
|
439
|
+
...options,
|
|
440
|
+
headers: {
|
|
441
|
+
'Content-Type': 'application/json',
|
|
442
|
+
...options.headers
|
|
443
|
+
}
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
static getUsersByEmails(options) {
|
|
447
|
+
return options.client.post({
|
|
448
|
+
url: '/user/list-by-emails',
|
|
449
|
+
...options,
|
|
450
|
+
headers: {
|
|
451
|
+
'Content-Type': 'application/json',
|
|
452
|
+
...options.headers
|
|
453
|
+
}
|
|
454
|
+
});
|
|
455
|
+
}
|
|
456
|
+
static createUser(options) {
|
|
457
|
+
return options.client.post({
|
|
458
|
+
url: '/user/create',
|
|
459
|
+
...options,
|
|
460
|
+
headers: {
|
|
461
|
+
'Content-Type': 'application/json',
|
|
462
|
+
...options.headers
|
|
463
|
+
}
|
|
464
|
+
});
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
export class Search {
|
|
468
|
+
static searchWeb(options) {
|
|
469
|
+
return options.client.post({
|
|
470
|
+
url: '/search/web',
|
|
471
|
+
...options,
|
|
472
|
+
headers: {
|
|
473
|
+
'Content-Type': 'application/json',
|
|
474
|
+
...options.headers
|
|
475
|
+
}
|
|
476
|
+
});
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
export class Admin {
|
|
480
|
+
/**
|
|
481
|
+
* Deletes a project and its deployments, logging the admin action. Used by backoffice admins.
|
|
482
|
+
*/
|
|
483
|
+
static adminDeleteProject(options) {
|
|
484
|
+
return options.client.delete({
|
|
485
|
+
url: '/admin/project/{projectId}',
|
|
486
|
+
...options,
|
|
487
|
+
headers: {
|
|
488
|
+
'Content-Type': 'application/json',
|
|
489
|
+
...options.headers
|
|
490
|
+
}
|
|
491
|
+
});
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* Creates a new project record for cloning. Returns the new project ID so the client can perform S3 operations.
|
|
495
|
+
*/
|
|
496
|
+
static adminCloneProjectCreate(options) {
|
|
497
|
+
return options.client.post({
|
|
498
|
+
url: '/admin/project/clone',
|
|
499
|
+
...options,
|
|
500
|
+
headers: {
|
|
501
|
+
'Content-Type': 'application/json',
|
|
502
|
+
...options.headers
|
|
503
|
+
}
|
|
504
|
+
});
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* Logs the successful clone action after S3 operations complete.
|
|
508
|
+
*/
|
|
509
|
+
static adminCloneProjectLog(options) {
|
|
510
|
+
return options.client.post({
|
|
511
|
+
url: '/admin/project/clone/log',
|
|
512
|
+
...options,
|
|
513
|
+
headers: {
|
|
514
|
+
'Content-Type': 'application/json',
|
|
515
|
+
...options.headers
|
|
516
|
+
}
|
|
517
|
+
});
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* Compensating transaction: deletes a newly created project record if S3 copy fails.
|
|
521
|
+
*/
|
|
522
|
+
static adminCleanupProject(options) {
|
|
523
|
+
return options.client.post({
|
|
524
|
+
url: '/admin/project/cleanup',
|
|
525
|
+
...options,
|
|
526
|
+
headers: {
|
|
527
|
+
'Content-Type': 'application/json',
|
|
528
|
+
...options.headers
|
|
529
|
+
}
|
|
530
|
+
});
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* Updates a user's credit balance and logs the change. Used by backoffice admins.
|
|
534
|
+
*/
|
|
535
|
+
static adminUpdateCredits(options) {
|
|
536
|
+
return options.client.put({
|
|
537
|
+
url: '/admin/credits',
|
|
538
|
+
...options,
|
|
539
|
+
headers: {
|
|
540
|
+
'Content-Type': 'application/json',
|
|
541
|
+
...options.headers
|
|
542
|
+
}
|
|
543
|
+
});
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* Logs an arbitrary admin action
|
|
547
|
+
*/
|
|
548
|
+
static adminLogAction(options) {
|
|
549
|
+
return options.client.post({
|
|
550
|
+
url: '/admin/action/log',
|
|
551
|
+
...options,
|
|
552
|
+
headers: {
|
|
553
|
+
'Content-Type': 'application/json',
|
|
554
|
+
...options.headers
|
|
555
|
+
}
|
|
556
|
+
});
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* Purge a user account and all associated data from Cognito, Netlify, S3, Media Platform, Stripe, and the database
|
|
560
|
+
*/
|
|
561
|
+
static purgeUserAccount(options) {
|
|
562
|
+
return options.client.delete({
|
|
563
|
+
url: '/purge/user-account',
|
|
564
|
+
...options,
|
|
565
|
+
headers: {
|
|
566
|
+
'Content-Type': 'application/json',
|
|
567
|
+
...options.headers
|
|
568
|
+
}
|
|
569
|
+
});
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
export class EnvConfig {
|
|
573
|
+
static getFeatureToggles(options) {
|
|
574
|
+
return options.client.get({ url: '/env-config', ...options });
|
|
575
|
+
}
|
|
576
|
+
static openFeatureToggle(options) {
|
|
577
|
+
return options.client.post({
|
|
578
|
+
url: '/env-config/open',
|
|
579
|
+
...options,
|
|
580
|
+
headers: {
|
|
581
|
+
'Content-Type': 'application/json',
|
|
582
|
+
...options.headers
|
|
583
|
+
}
|
|
584
|
+
});
|
|
585
|
+
}
|
|
586
|
+
static closeFeatureToggle(options) {
|
|
587
|
+
return options.client.delete({
|
|
588
|
+
url: '/env-config/close',
|
|
589
|
+
...options,
|
|
590
|
+
headers: {
|
|
591
|
+
'Content-Type': 'application/json',
|
|
592
|
+
...options.headers
|
|
593
|
+
}
|
|
594
|
+
});
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
export class UserKeyValue {
|
|
598
|
+
static getValues(options) {
|
|
599
|
+
return options.client.get({ url: '/user-key-value/{dazlUserId}/values', ...options });
|
|
600
|
+
}
|
|
601
|
+
static setValue(options) {
|
|
602
|
+
return options.client.put({
|
|
603
|
+
url: '/user-key-value/{dazlUserId}/values/{categ}/{name}',
|
|
604
|
+
...options,
|
|
605
|
+
headers: {
|
|
606
|
+
'Content-Type': 'application/json',
|
|
607
|
+
...options.headers
|
|
608
|
+
}
|
|
609
|
+
});
|
|
610
|
+
}
|
|
611
|
+
static deleteCategValues(options) {
|
|
612
|
+
return options.client.delete({ url: '/user-key-value/{dazlUserId}/values/{categ}', ...options });
|
|
613
|
+
}
|
|
614
|
+
static replaceCategValues(options) {
|
|
615
|
+
return options.client.put({
|
|
616
|
+
url: '/user-key-value/{dazlUserId}/values/{categ}',
|
|
617
|
+
...options,
|
|
618
|
+
headers: {
|
|
619
|
+
'Content-Type': 'application/json',
|
|
620
|
+
...options.headers
|
|
621
|
+
}
|
|
622
|
+
});
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
export class Promotions {
|
|
626
|
+
static isPromotionOpen(options) {
|
|
627
|
+
return options.client.get({ url: '/promotions/is-open/{promotionName}', ...options });
|
|
628
|
+
}
|
|
629
|
+
static deactivateUserPromotion(options) {
|
|
630
|
+
return options.client.delete({ url: '/promotions/{dazlUserId}/{promotionName}', ...options });
|
|
631
|
+
}
|
|
632
|
+
static addUserToPromotion(options) {
|
|
633
|
+
return options.client.post({ url: '/promotions/{dazlUserId}/{promotionName}', ...options });
|
|
634
|
+
}
|
|
635
|
+
static getUserActivePromotions(options) {
|
|
636
|
+
return options.client.get({ url: '/promotions/{dazlUserId}/active', ...options });
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
//# sourceMappingURL=sdk.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../src/internal/sdk.gen.ts"],"names":[],"mappings":"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"}
|