vercel-api-js 1.0.1 → 1.6.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/dist/components.cjs +8931 -0
- package/dist/components.d.mts +7017 -0
- package/dist/components.d.mts.map +1 -0
- package/dist/components.mjs +8570 -0
- package/dist/effect.cjs +7893 -0
- package/dist/effect.d.mts +6801 -0
- package/dist/effect.d.mts.map +1 -0
- package/dist/effect.mjs +7871 -0
- package/dist/index.cjs +33432 -0
- package/dist/index.d.ts +72589 -1714
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +29151 -7
- package/dist/schemas.cjs +21657 -0
- package/dist/schemas.d.mts +13353 -0
- package/dist/schemas.d.mts.map +1 -0
- package/dist/schemas.mjs +17574 -0
- package/dist/types.cjs +3125 -0
- package/dist/types.d.mts +51848 -0
- package/dist/types.d.mts.map +1 -0
- package/dist/types.mjs +2930 -0
- package/package.json +57 -29
- package/README.md +0 -9
- package/dist/client.d.mts +0 -228
- package/dist/client.d.ts +0 -228
- package/dist/client.js +0 -75
- package/dist/client.mjs +0 -68
- package/dist/generated/components.d.mts +0 -2600
- package/dist/generated/components.d.ts +0 -2600
- package/dist/generated/components.js +0 -3579
- package/dist/generated/components.mjs +0 -3395
- package/dist/generated/mcp.d.mts +0 -2061
- package/dist/generated/mcp.d.ts +0 -2061
- package/dist/generated/mcp.js +0 -4692
- package/dist/generated/mcp.mjs +0 -4508
- package/dist/generated/schemas.d.mts +0 -19403
- package/dist/generated/schemas.d.ts +0 -19403
- package/dist/generated/schemas.js +0 -7619
- package/dist/generated/schemas.mjs +0 -7589
- package/dist/generated/types.d.mts +0 -15009
- package/dist/generated/types.d.ts +0 -15009
- package/dist/generated/types.js +0 -951
- package/dist/generated/types.mjs +0 -946
- package/dist/index.d.mts +0 -1718
- package/dist/index.js +0 -49
- package/dist/mcp.d.mts +0 -1
- package/dist/mcp.d.ts +0 -1
- package/dist/mcp.js +0 -5
- package/dist/mcp.mjs +0 -1
- package/dist/utils/fetch.d.mts +0 -18
- package/dist/utils/fetch.d.ts +0 -18
- package/dist/utils/fetch.js +0 -8
- package/dist/utils/fetch.mjs +0 -5
- package/dist/utils/fetcher.d.mts +0 -21
- package/dist/utils/fetcher.d.ts +0 -21
- package/dist/utils/fetcher.js +0 -69
- package/dist/utils/fetcher.mjs +0 -66
- package/dist/utils/lang.d.mts +0 -1
- package/dist/utils/lang.d.ts +0 -1
- package/dist/utils/lang.js +0 -9
- package/dist/utils/lang.mjs +0 -6
- package/dist/utils/mcp.d.mts +0 -1
- package/dist/utils/mcp.d.ts +0 -1
- package/dist/utils/mcp.js +0 -2
- package/dist/utils/mcp.mjs +0 -1
- package/dist/utils/types.d.mts +0 -3
- package/dist/utils/types.d.ts +0 -3
- package/dist/utils/types.js +0 -2
- package/dist/utils/types.mjs +0 -1
package/dist/index.d.mts
DELETED
|
@@ -1,1718 +0,0 @@
|
|
|
1
|
-
import * as Components from "./generated/components.mjs";
|
|
2
|
-
import * as Schemas from "./generated/schemas.mjs";
|
|
3
|
-
import * as Types from "./generated/types.mjs";
|
|
4
|
-
declare const Fetchers: {
|
|
5
|
-
readAccessGroup({ pathParams: { idOrName }, queryParams, config }: {
|
|
6
|
-
pathParams: Types.ReadAccessGroupPathParams;
|
|
7
|
-
queryParams?: Types.ReadAccessGroupQueryParams | undefined;
|
|
8
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
9
|
-
client?: typeof import("./utils/fetcher").client;
|
|
10
|
-
};
|
|
11
|
-
}): Promise<unknown>;
|
|
12
|
-
updateAccessGroup({ pathParams: { idOrName }, queryParams, config }: {
|
|
13
|
-
pathParams: Types.UpdateAccessGroupPathParams;
|
|
14
|
-
queryParams?: Types.UpdateAccessGroupQueryParams | undefined;
|
|
15
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
16
|
-
client?: typeof import("./utils/fetcher").client;
|
|
17
|
-
};
|
|
18
|
-
}): Promise<unknown>;
|
|
19
|
-
deleteAccessGroup({ pathParams: { idOrName }, queryParams, config }: {
|
|
20
|
-
pathParams: Types.DeleteAccessGroupPathParams;
|
|
21
|
-
queryParams?: Types.DeleteAccessGroupQueryParams | undefined;
|
|
22
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
23
|
-
client?: typeof import("./utils/fetcher").client;
|
|
24
|
-
};
|
|
25
|
-
}): Promise<unknown>;
|
|
26
|
-
listAccessGroupMembers({ pathParams: { idOrName }, queryParams, config }: {
|
|
27
|
-
pathParams: Types.ListAccessGroupMembersPathParams;
|
|
28
|
-
queryParams?: Types.ListAccessGroupMembersQueryParams | undefined;
|
|
29
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
30
|
-
client?: typeof import("./utils/fetcher").client;
|
|
31
|
-
};
|
|
32
|
-
}): Promise<unknown>;
|
|
33
|
-
listAccessGroups({ queryParams, config }: {
|
|
34
|
-
queryParams?: Types.ListAccessGroupsQueryParams | undefined;
|
|
35
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
36
|
-
client?: typeof import("./utils/fetcher").client;
|
|
37
|
-
};
|
|
38
|
-
}): Promise<unknown>;
|
|
39
|
-
createAccessGroup({ queryParams, config }: {
|
|
40
|
-
queryParams?: Types.CreateAccessGroupQueryParams | undefined;
|
|
41
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
42
|
-
client?: typeof import("./utils/fetcher").client;
|
|
43
|
-
};
|
|
44
|
-
}): Promise<unknown>;
|
|
45
|
-
listAccessGroupProjects({ pathParams: { idOrName }, queryParams, config }: {
|
|
46
|
-
pathParams: Types.ListAccessGroupProjectsPathParams;
|
|
47
|
-
queryParams?: Types.ListAccessGroupProjectsQueryParams | undefined;
|
|
48
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
49
|
-
client?: typeof import("./utils/fetcher").client;
|
|
50
|
-
};
|
|
51
|
-
}): Promise<unknown>;
|
|
52
|
-
createAccessGroupProject({ pathParams: { accessGroupIdOrName }, queryParams, config }: {
|
|
53
|
-
pathParams: Types.CreateAccessGroupProjectPathParams;
|
|
54
|
-
queryParams?: Types.CreateAccessGroupProjectQueryParams | undefined;
|
|
55
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
56
|
-
client?: typeof import("./utils/fetcher").client;
|
|
57
|
-
};
|
|
58
|
-
}): Promise<unknown>;
|
|
59
|
-
readAccessGroupProject({ pathParams: { accessGroupIdOrName, projectId }, queryParams, config }: {
|
|
60
|
-
pathParams: Types.ReadAccessGroupProjectPathParams;
|
|
61
|
-
queryParams?: Types.ReadAccessGroupProjectQueryParams | undefined;
|
|
62
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
63
|
-
client?: typeof import("./utils/fetcher").client;
|
|
64
|
-
};
|
|
65
|
-
}): Promise<unknown>;
|
|
66
|
-
updateAccessGroupProject({ pathParams: { accessGroupIdOrName, projectId }, queryParams, config }: {
|
|
67
|
-
pathParams: Types.UpdateAccessGroupProjectPathParams;
|
|
68
|
-
queryParams?: Types.UpdateAccessGroupProjectQueryParams | undefined;
|
|
69
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
70
|
-
client?: typeof import("./utils/fetcher").client;
|
|
71
|
-
};
|
|
72
|
-
}): Promise<unknown>;
|
|
73
|
-
deleteAccessGroupProject({ pathParams: { accessGroupIdOrName, projectId }, queryParams, config }: {
|
|
74
|
-
pathParams: Types.DeleteAccessGroupProjectPathParams;
|
|
75
|
-
queryParams?: Types.DeleteAccessGroupProjectQueryParams | undefined;
|
|
76
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
77
|
-
client?: typeof import("./utils/fetcher").client;
|
|
78
|
-
};
|
|
79
|
-
}): Promise<unknown>;
|
|
80
|
-
recordEvents({ queryParams, headers, config }: {
|
|
81
|
-
queryParams?: Types.RecordEventsQueryParams | undefined;
|
|
82
|
-
headers?: Types.RecordEventsHeaderParams | undefined;
|
|
83
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
84
|
-
client?: typeof import("./utils/fetcher").client;
|
|
85
|
-
};
|
|
86
|
-
}): Promise<unknown>;
|
|
87
|
-
status({ queryParams, config }: {
|
|
88
|
-
queryParams?: Types.StatusQueryParams | undefined;
|
|
89
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
90
|
-
client?: typeof import("./utils/fetcher").client;
|
|
91
|
-
};
|
|
92
|
-
}): Promise<unknown>;
|
|
93
|
-
uploadArtifact({ pathParams: { hash }, headers, queryParams, config }: {
|
|
94
|
-
pathParams: Types.UploadArtifactPathParams;
|
|
95
|
-
headers: Types.UploadArtifactHeaderParams;
|
|
96
|
-
queryParams?: Types.UploadArtifactQueryParams | undefined;
|
|
97
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
98
|
-
client?: typeof import("./utils/fetcher").client;
|
|
99
|
-
};
|
|
100
|
-
}): Promise<unknown>;
|
|
101
|
-
downloadArtifact({ pathParams: { hash }, queryParams, headers, config }: {
|
|
102
|
-
pathParams: Types.DownloadArtifactPathParams;
|
|
103
|
-
queryParams?: Types.DownloadArtifactQueryParams | undefined;
|
|
104
|
-
headers?: Types.DownloadArtifactHeaderParams | undefined;
|
|
105
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
106
|
-
client?: typeof import("./utils/fetcher").client;
|
|
107
|
-
};
|
|
108
|
-
}): Promise<unknown>;
|
|
109
|
-
artifactQuery({ queryParams, config }: {
|
|
110
|
-
queryParams?: Types.ArtifactQueryQueryParams | undefined;
|
|
111
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
112
|
-
client?: typeof import("./utils/fetcher").client;
|
|
113
|
-
};
|
|
114
|
-
}): Promise<unknown>;
|
|
115
|
-
createCheck({ pathParams: { deploymentId }, queryParams, config }: {
|
|
116
|
-
pathParams: Types.CreateCheckPathParams;
|
|
117
|
-
queryParams?: Types.CreateCheckQueryParams | undefined;
|
|
118
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
119
|
-
client?: typeof import("./utils/fetcher").client;
|
|
120
|
-
};
|
|
121
|
-
}): Promise<unknown>;
|
|
122
|
-
getAllChecks({ pathParams: { deploymentId }, queryParams, config }: {
|
|
123
|
-
pathParams: Types.GetAllChecksPathParams;
|
|
124
|
-
queryParams?: Types.GetAllChecksQueryParams | undefined;
|
|
125
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
126
|
-
client?: typeof import("./utils/fetcher").client;
|
|
127
|
-
};
|
|
128
|
-
}): Promise<unknown>;
|
|
129
|
-
getCheck({ pathParams: { deploymentId, checkId }, queryParams, config }: {
|
|
130
|
-
pathParams: Types.GetCheckPathParams;
|
|
131
|
-
queryParams?: Types.GetCheckQueryParams | undefined;
|
|
132
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
133
|
-
client?: typeof import("./utils/fetcher").client;
|
|
134
|
-
};
|
|
135
|
-
}): Promise<unknown>;
|
|
136
|
-
updateCheck({ pathParams: { deploymentId, checkId }, queryParams, config }: {
|
|
137
|
-
pathParams: Types.UpdateCheckPathParams;
|
|
138
|
-
queryParams?: Types.UpdateCheckQueryParams | undefined;
|
|
139
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
140
|
-
client?: typeof import("./utils/fetcher").client;
|
|
141
|
-
};
|
|
142
|
-
}): Promise<unknown>;
|
|
143
|
-
rerequestCheck({ pathParams: { deploymentId, checkId }, queryParams, config }: {
|
|
144
|
-
pathParams: Types.RerequestCheckPathParams;
|
|
145
|
-
queryParams?: Types.RerequestCheckQueryParams | undefined;
|
|
146
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
147
|
-
client?: typeof import("./utils/fetcher").client;
|
|
148
|
-
};
|
|
149
|
-
}): Promise<unknown>;
|
|
150
|
-
purgeAllDataCache({ queryParams, config }: {
|
|
151
|
-
queryParams: Types.PurgeAllDataCacheQueryParams;
|
|
152
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
153
|
-
client?: typeof import("./utils/fetcher").client;
|
|
154
|
-
};
|
|
155
|
-
}): Promise<unknown>;
|
|
156
|
-
updateDataCacheBillingSettings({ config }: {
|
|
157
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
158
|
-
client?: typeof import("./utils/fetcher").client;
|
|
159
|
-
};
|
|
160
|
-
}): Promise<unknown>;
|
|
161
|
-
updateProjectDataCache({ pathParams: { projectId }, queryParams, config }: {
|
|
162
|
-
pathParams: Types.UpdateProjectDataCachePathParams;
|
|
163
|
-
queryParams?: Types.UpdateProjectDataCacheQueryParams | undefined;
|
|
164
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
165
|
-
client?: typeof import("./utils/fetcher").client;
|
|
166
|
-
};
|
|
167
|
-
}): Promise<unknown>;
|
|
168
|
-
getDeploymentEvents({ pathParams: { idOrUrl }, queryParams, config }: {
|
|
169
|
-
pathParams: Types.GetDeploymentEventsPathParams;
|
|
170
|
-
queryParams?: Types.GetDeploymentEventsQueryParams | undefined;
|
|
171
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
172
|
-
client?: typeof import("./utils/fetcher").client;
|
|
173
|
-
};
|
|
174
|
-
}): Promise<unknown>;
|
|
175
|
-
updateIntegrationDeploymentAction({ pathParams: { deploymentId, integrationConfigurationId, resourceId, action }, config }: {
|
|
176
|
-
pathParams: Types.UpdateIntegrationDeploymentActionPathParams;
|
|
177
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
178
|
-
client?: typeof import("./utils/fetcher").client;
|
|
179
|
-
};
|
|
180
|
-
}): Promise<unknown>;
|
|
181
|
-
getDeployment({ pathParams: { idOrUrl }, queryParams, config }: {
|
|
182
|
-
pathParams: Types.GetDeploymentPathParams;
|
|
183
|
-
queryParams?: Types.GetDeploymentQueryParams | undefined;
|
|
184
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
185
|
-
client?: typeof import("./utils/fetcher").client;
|
|
186
|
-
};
|
|
187
|
-
}): Promise<unknown>;
|
|
188
|
-
createDeployment({ queryParams, config }: {
|
|
189
|
-
queryParams?: Types.CreateDeploymentQueryParams | undefined;
|
|
190
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
191
|
-
client?: typeof import("./utils/fetcher").client;
|
|
192
|
-
};
|
|
193
|
-
}): Promise<unknown>;
|
|
194
|
-
cancelDeployment({ pathParams: { id }, queryParams, config }: {
|
|
195
|
-
pathParams: Types.CancelDeploymentPathParams;
|
|
196
|
-
queryParams?: Types.CancelDeploymentQueryParams | undefined;
|
|
197
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
198
|
-
client?: typeof import("./utils/fetcher").client;
|
|
199
|
-
};
|
|
200
|
-
}): Promise<unknown>;
|
|
201
|
-
buyDomain({ queryParams, config }: {
|
|
202
|
-
queryParams?: Types.BuyDomainQueryParams | undefined;
|
|
203
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
204
|
-
client?: typeof import("./utils/fetcher").client;
|
|
205
|
-
};
|
|
206
|
-
}): Promise<unknown>;
|
|
207
|
-
checkDomainPrice({ queryParams, config }: {
|
|
208
|
-
queryParams: Types.CheckDomainPriceQueryParams;
|
|
209
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
210
|
-
client?: typeof import("./utils/fetcher").client;
|
|
211
|
-
};
|
|
212
|
-
}): Promise<unknown>;
|
|
213
|
-
checkDomainStatus({ queryParams, config }: {
|
|
214
|
-
queryParams: Types.CheckDomainStatusQueryParams;
|
|
215
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
216
|
-
client?: typeof import("./utils/fetcher").client;
|
|
217
|
-
};
|
|
218
|
-
}): Promise<unknown>;
|
|
219
|
-
getRecords({ pathParams: { domain }, queryParams, config }: {
|
|
220
|
-
pathParams: Types.GetRecordsPathParams;
|
|
221
|
-
queryParams?: Types.GetRecordsQueryParams | undefined;
|
|
222
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
223
|
-
client?: typeof import("./utils/fetcher").client;
|
|
224
|
-
};
|
|
225
|
-
}): Promise<unknown>;
|
|
226
|
-
createRecord({ pathParams: { domain }, queryParams, config }: {
|
|
227
|
-
pathParams: Types.CreateRecordPathParams;
|
|
228
|
-
queryParams?: Types.CreateRecordQueryParams | undefined;
|
|
229
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
230
|
-
client?: typeof import("./utils/fetcher").client;
|
|
231
|
-
};
|
|
232
|
-
}): Promise<unknown>;
|
|
233
|
-
updateRecord({ pathParams: { recordId }, queryParams, config }: {
|
|
234
|
-
pathParams: Types.UpdateRecordPathParams;
|
|
235
|
-
queryParams?: Types.UpdateRecordQueryParams | undefined;
|
|
236
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
237
|
-
client?: typeof import("./utils/fetcher").client;
|
|
238
|
-
};
|
|
239
|
-
}): Promise<unknown>;
|
|
240
|
-
removeRecord({ pathParams: { domain, recordId }, queryParams, config }: {
|
|
241
|
-
pathParams: Types.RemoveRecordPathParams;
|
|
242
|
-
queryParams?: Types.RemoveRecordQueryParams | undefined;
|
|
243
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
244
|
-
client?: typeof import("./utils/fetcher").client;
|
|
245
|
-
};
|
|
246
|
-
}): Promise<unknown>;
|
|
247
|
-
getDomainTransfer({ pathParams: { domain }, queryParams, config }: {
|
|
248
|
-
pathParams: Types.GetDomainTransferPathParams;
|
|
249
|
-
queryParams?: Types.GetDomainTransferQueryParams | undefined;
|
|
250
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
251
|
-
client?: typeof import("./utils/fetcher").client;
|
|
252
|
-
};
|
|
253
|
-
}): Promise<unknown>;
|
|
254
|
-
getDomainConfig({ pathParams: { domain }, queryParams, config }: {
|
|
255
|
-
pathParams: Types.GetDomainConfigPathParams;
|
|
256
|
-
queryParams?: Types.GetDomainConfigQueryParams | undefined;
|
|
257
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
258
|
-
client?: typeof import("./utils/fetcher").client;
|
|
259
|
-
};
|
|
260
|
-
}): Promise<unknown>;
|
|
261
|
-
getDomain({ pathParams: { domain }, queryParams, config }: {
|
|
262
|
-
pathParams: Types.GetDomainPathParams;
|
|
263
|
-
queryParams?: Types.GetDomainQueryParams | undefined;
|
|
264
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
265
|
-
client?: typeof import("./utils/fetcher").client;
|
|
266
|
-
};
|
|
267
|
-
}): Promise<unknown>;
|
|
268
|
-
getDomains({ queryParams, config }: {
|
|
269
|
-
queryParams?: Types.GetDomainsQueryParams | undefined;
|
|
270
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
271
|
-
client?: typeof import("./utils/fetcher").client;
|
|
272
|
-
};
|
|
273
|
-
}): Promise<unknown>;
|
|
274
|
-
createOrTransferDomain({ queryParams, config }: {
|
|
275
|
-
queryParams?: Types.CreateOrTransferDomainQueryParams | undefined;
|
|
276
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
277
|
-
client?: typeof import("./utils/fetcher").client;
|
|
278
|
-
};
|
|
279
|
-
}): Promise<unknown>;
|
|
280
|
-
patchDomain({ pathParams: { domain }, queryParams, config }: {
|
|
281
|
-
pathParams: Types.PatchDomainPathParams;
|
|
282
|
-
queryParams?: Types.PatchDomainQueryParams | undefined;
|
|
283
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
284
|
-
client?: typeof import("./utils/fetcher").client;
|
|
285
|
-
};
|
|
286
|
-
}): Promise<unknown>;
|
|
287
|
-
deleteDomain({ pathParams: { domain }, queryParams, config }: {
|
|
288
|
-
pathParams: Types.DeleteDomainPathParams;
|
|
289
|
-
queryParams?: Types.DeleteDomainQueryParams | undefined;
|
|
290
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
291
|
-
client?: typeof import("./utils/fetcher").client;
|
|
292
|
-
};
|
|
293
|
-
}): Promise<unknown>;
|
|
294
|
-
getEdgeConfigs({ queryParams, config }: {
|
|
295
|
-
queryParams?: Types.GetEdgeConfigsQueryParams | undefined;
|
|
296
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
297
|
-
client?: typeof import("./utils/fetcher").client;
|
|
298
|
-
};
|
|
299
|
-
}): Promise<unknown>;
|
|
300
|
-
createEdgeConfig({ queryParams, config }: {
|
|
301
|
-
queryParams?: Types.CreateEdgeConfigQueryParams | undefined;
|
|
302
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
303
|
-
client?: typeof import("./utils/fetcher").client;
|
|
304
|
-
};
|
|
305
|
-
}): Promise<unknown>;
|
|
306
|
-
getEdgeConfig({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
307
|
-
pathParams: Types.GetEdgeConfigPathParams;
|
|
308
|
-
queryParams?: Types.GetEdgeConfigQueryParams | undefined;
|
|
309
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
310
|
-
client?: typeof import("./utils/fetcher").client;
|
|
311
|
-
};
|
|
312
|
-
}): Promise<unknown>;
|
|
313
|
-
updateEdgeConfig({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
314
|
-
pathParams: Types.UpdateEdgeConfigPathParams;
|
|
315
|
-
queryParams?: Types.UpdateEdgeConfigQueryParams | undefined;
|
|
316
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
317
|
-
client?: typeof import("./utils/fetcher").client;
|
|
318
|
-
};
|
|
319
|
-
}): Promise<unknown>;
|
|
320
|
-
deleteEdgeConfig({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
321
|
-
pathParams: Types.DeleteEdgeConfigPathParams;
|
|
322
|
-
queryParams?: Types.DeleteEdgeConfigQueryParams | undefined;
|
|
323
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
324
|
-
client?: typeof import("./utils/fetcher").client;
|
|
325
|
-
};
|
|
326
|
-
}): Promise<unknown>;
|
|
327
|
-
getEdgeConfigItems({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
328
|
-
pathParams: Types.GetEdgeConfigItemsPathParams;
|
|
329
|
-
queryParams?: Types.GetEdgeConfigItemsQueryParams | undefined;
|
|
330
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
331
|
-
client?: typeof import("./utils/fetcher").client;
|
|
332
|
-
};
|
|
333
|
-
}): Promise<unknown>;
|
|
334
|
-
patchEdgeConfigItems({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
335
|
-
pathParams: Types.PatchEdgeConfigItemsPathParams;
|
|
336
|
-
queryParams?: Types.PatchEdgeConfigItemsQueryParams | undefined;
|
|
337
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
338
|
-
client?: typeof import("./utils/fetcher").client;
|
|
339
|
-
};
|
|
340
|
-
}): Promise<unknown>;
|
|
341
|
-
getEdgeConfigSchema({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
342
|
-
pathParams: Types.GetEdgeConfigSchemaPathParams;
|
|
343
|
-
queryParams?: Types.GetEdgeConfigSchemaQueryParams | undefined;
|
|
344
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
345
|
-
client?: typeof import("./utils/fetcher").client;
|
|
346
|
-
};
|
|
347
|
-
}): Promise<unknown>;
|
|
348
|
-
patchEdgeConfigSchema({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
349
|
-
pathParams: Types.PatchEdgeConfigSchemaPathParams;
|
|
350
|
-
queryParams?: Types.PatchEdgeConfigSchemaQueryParams | undefined;
|
|
351
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
352
|
-
client?: typeof import("./utils/fetcher").client;
|
|
353
|
-
};
|
|
354
|
-
}): Promise<unknown>;
|
|
355
|
-
deleteEdgeConfigSchema({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
356
|
-
pathParams: Types.DeleteEdgeConfigSchemaPathParams;
|
|
357
|
-
queryParams?: Types.DeleteEdgeConfigSchemaQueryParams | undefined;
|
|
358
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
359
|
-
client?: typeof import("./utils/fetcher").client;
|
|
360
|
-
};
|
|
361
|
-
}): Promise<unknown>;
|
|
362
|
-
getEdgeConfigItem({ pathParams: { edgeConfigId, edgeConfigItemKey }, queryParams, config }: {
|
|
363
|
-
pathParams: Types.GetEdgeConfigItemPathParams;
|
|
364
|
-
queryParams?: Types.GetEdgeConfigItemQueryParams | undefined;
|
|
365
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
366
|
-
client?: typeof import("./utils/fetcher").client;
|
|
367
|
-
};
|
|
368
|
-
}): Promise<unknown>;
|
|
369
|
-
getEdgeConfigTokens({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
370
|
-
pathParams: Types.GetEdgeConfigTokensPathParams;
|
|
371
|
-
queryParams?: Types.GetEdgeConfigTokensQueryParams | undefined;
|
|
372
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
373
|
-
client?: typeof import("./utils/fetcher").client;
|
|
374
|
-
};
|
|
375
|
-
}): Promise<unknown>;
|
|
376
|
-
deleteEdgeConfigTokens({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
377
|
-
pathParams: Types.DeleteEdgeConfigTokensPathParams;
|
|
378
|
-
queryParams?: Types.DeleteEdgeConfigTokensQueryParams | undefined;
|
|
379
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
380
|
-
client?: typeof import("./utils/fetcher").client;
|
|
381
|
-
};
|
|
382
|
-
}): Promise<unknown>;
|
|
383
|
-
getEdgeConfigToken({ pathParams: { edgeConfigId, token }, queryParams, config }: {
|
|
384
|
-
pathParams: Types.GetEdgeConfigTokenPathParams;
|
|
385
|
-
queryParams?: Types.GetEdgeConfigTokenQueryParams | undefined;
|
|
386
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
387
|
-
client?: typeof import("./utils/fetcher").client;
|
|
388
|
-
};
|
|
389
|
-
}): Promise<unknown>;
|
|
390
|
-
createEdgeConfigToken({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
391
|
-
pathParams: Types.CreateEdgeConfigTokenPathParams;
|
|
392
|
-
queryParams?: Types.CreateEdgeConfigTokenQueryParams | undefined;
|
|
393
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
394
|
-
client?: typeof import("./utils/fetcher").client;
|
|
395
|
-
};
|
|
396
|
-
}): Promise<unknown>;
|
|
397
|
-
getEdgeConfigBackup({ pathParams: { edgeConfigId, edgeConfigBackupVersionId }, queryParams, config }: {
|
|
398
|
-
pathParams: Types.GetEdgeConfigBackupPathParams;
|
|
399
|
-
queryParams?: Types.GetEdgeConfigBackupQueryParams | undefined;
|
|
400
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
401
|
-
client?: typeof import("./utils/fetcher").client;
|
|
402
|
-
};
|
|
403
|
-
}): Promise<unknown>;
|
|
404
|
-
getEdgeConfigBackups({ pathParams: { edgeConfigId }, queryParams, config }: {
|
|
405
|
-
pathParams: Types.GetEdgeConfigBackupsPathParams;
|
|
406
|
-
queryParams?: Types.GetEdgeConfigBackupsQueryParams | undefined;
|
|
407
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
408
|
-
client?: typeof import("./utils/fetcher").client;
|
|
409
|
-
};
|
|
410
|
-
}): Promise<unknown>;
|
|
411
|
-
listUserEvents({ queryParams, config }: {
|
|
412
|
-
queryParams?: Types.ListUserEventsQueryParams | undefined;
|
|
413
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
414
|
-
client?: typeof import("./utils/fetcher").client;
|
|
415
|
-
};
|
|
416
|
-
}): Promise<unknown>;
|
|
417
|
-
getAccountInfo({ pathParams: { integrationConfigurationId }, config }: {
|
|
418
|
-
pathParams: Types.GetAccountInfoPathParams;
|
|
419
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
420
|
-
client?: typeof import("./utils/fetcher").client;
|
|
421
|
-
};
|
|
422
|
-
}): Promise<unknown>;
|
|
423
|
-
getMember({ pathParams: { integrationConfigurationId, memberId }, config }: {
|
|
424
|
-
pathParams: Types.GetMemberPathParams;
|
|
425
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
426
|
-
client?: typeof import("./utils/fetcher").client;
|
|
427
|
-
};
|
|
428
|
-
}): Promise<unknown>;
|
|
429
|
-
createEvent({ pathParams: { integrationConfigurationId }, config }: {
|
|
430
|
-
pathParams: Types.CreateEventPathParams;
|
|
431
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
432
|
-
client?: typeof import("./utils/fetcher").client;
|
|
433
|
-
};
|
|
434
|
-
}): Promise<unknown>;
|
|
435
|
-
getIntegrationResources({ pathParams: { integrationConfigurationId }, config }: {
|
|
436
|
-
pathParams: Types.GetIntegrationResourcesPathParams;
|
|
437
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
438
|
-
client?: typeof import("./utils/fetcher").client;
|
|
439
|
-
};
|
|
440
|
-
}): Promise<unknown>;
|
|
441
|
-
getIntegrationResource({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
442
|
-
pathParams: Types.GetIntegrationResourcePathParams;
|
|
443
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
444
|
-
client?: typeof import("./utils/fetcher").client;
|
|
445
|
-
};
|
|
446
|
-
}): Promise<unknown>;
|
|
447
|
-
deleteIntegrationResource({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
448
|
-
pathParams: Types.DeleteIntegrationResourcePathParams;
|
|
449
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
450
|
-
client?: typeof import("./utils/fetcher").client;
|
|
451
|
-
};
|
|
452
|
-
}): Promise<unknown>;
|
|
453
|
-
importResource({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
454
|
-
pathParams: Types.ImportResourcePathParams;
|
|
455
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
456
|
-
client?: typeof import("./utils/fetcher").client;
|
|
457
|
-
};
|
|
458
|
-
}): Promise<unknown>;
|
|
459
|
-
submitBillingData({ pathParams: { integrationConfigurationId }, config }: {
|
|
460
|
-
pathParams: Types.SubmitBillingDataPathParams;
|
|
461
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
462
|
-
client?: typeof import("./utils/fetcher").client;
|
|
463
|
-
};
|
|
464
|
-
}): Promise<unknown>;
|
|
465
|
-
submitInvoice({ pathParams: { integrationConfigurationId }, config }: {
|
|
466
|
-
pathParams: Types.SubmitInvoicePathParams;
|
|
467
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
468
|
-
client?: typeof import("./utils/fetcher").client;
|
|
469
|
-
};
|
|
470
|
-
}): Promise<unknown>;
|
|
471
|
-
getInvoice({ pathParams: { integrationConfigurationId, invoiceId }, config }: {
|
|
472
|
-
pathParams: Types.GetInvoicePathParams;
|
|
473
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
474
|
-
client?: typeof import("./utils/fetcher").client;
|
|
475
|
-
};
|
|
476
|
-
}): Promise<unknown>;
|
|
477
|
-
updateInvoice({ pathParams: { integrationConfigurationId, invoiceId }, config }: {
|
|
478
|
-
pathParams: Types.UpdateInvoicePathParams;
|
|
479
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
480
|
-
client?: typeof import("./utils/fetcher").client;
|
|
481
|
-
};
|
|
482
|
-
}): Promise<unknown>;
|
|
483
|
-
submitPrepaymentBalances({ pathParams: { integrationConfigurationId }, config }: {
|
|
484
|
-
pathParams: Types.SubmitPrepaymentBalancesPathParams;
|
|
485
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
486
|
-
client?: typeof import("./utils/fetcher").client;
|
|
487
|
-
};
|
|
488
|
-
}): Promise<unknown>;
|
|
489
|
-
updateResourceSecrets({ pathParams: { integrationConfigurationId, integrationProductIdOrSlug, resourceId }, config }: {
|
|
490
|
-
pathParams: Types.UpdateResourceSecretsPathParams;
|
|
491
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
492
|
-
client?: typeof import("./utils/fetcher").client;
|
|
493
|
-
};
|
|
494
|
-
}): Promise<unknown>;
|
|
495
|
-
updateResourceSecretsById({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
496
|
-
pathParams: Types.UpdateResourceSecretsByIdPathParams;
|
|
497
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
498
|
-
client?: typeof import("./utils/fetcher").client;
|
|
499
|
-
};
|
|
500
|
-
}): Promise<unknown>;
|
|
501
|
-
getConfigurations({ queryParams, config }: {
|
|
502
|
-
queryParams: Types.GetConfigurationsQueryParams;
|
|
503
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
504
|
-
client?: typeof import("./utils/fetcher").client;
|
|
505
|
-
};
|
|
506
|
-
}): Promise<unknown>;
|
|
507
|
-
getConfiguration({ pathParams: { id }, queryParams, config }: {
|
|
508
|
-
pathParams: Types.GetConfigurationPathParams;
|
|
509
|
-
queryParams?: Types.GetConfigurationQueryParams | undefined;
|
|
510
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
511
|
-
client?: typeof import("./utils/fetcher").client;
|
|
512
|
-
};
|
|
513
|
-
}): Promise<unknown>;
|
|
514
|
-
deleteConfiguration({ pathParams: { id }, queryParams, config }: {
|
|
515
|
-
pathParams: Types.DeleteConfigurationPathParams;
|
|
516
|
-
queryParams?: Types.DeleteConfigurationQueryParams | undefined;
|
|
517
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
518
|
-
client?: typeof import("./utils/fetcher").client;
|
|
519
|
-
};
|
|
520
|
-
}): Promise<unknown>;
|
|
521
|
-
exchangeSsoToken({ config }: {
|
|
522
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
523
|
-
client?: typeof import("./utils/fetcher").client;
|
|
524
|
-
};
|
|
525
|
-
}): Promise<unknown>;
|
|
526
|
-
getIntegrationLogDrains({ queryParams, config }: {
|
|
527
|
-
queryParams?: Types.GetIntegrationLogDrainsQueryParams | undefined;
|
|
528
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
529
|
-
client?: typeof import("./utils/fetcher").client;
|
|
530
|
-
};
|
|
531
|
-
}): Promise<unknown>;
|
|
532
|
-
createLogDrain({ queryParams, config }: {
|
|
533
|
-
queryParams?: Types.CreateLogDrainQueryParams | undefined;
|
|
534
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
535
|
-
client?: typeof import("./utils/fetcher").client;
|
|
536
|
-
};
|
|
537
|
-
}): Promise<unknown>;
|
|
538
|
-
deleteIntegrationLogDrain({ pathParams: { id }, queryParams, config }: {
|
|
539
|
-
pathParams: Types.DeleteIntegrationLogDrainPathParams;
|
|
540
|
-
queryParams?: Types.DeleteIntegrationLogDrainQueryParams | undefined;
|
|
541
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
542
|
-
client?: typeof import("./utils/fetcher").client;
|
|
543
|
-
};
|
|
544
|
-
}): Promise<unknown>;
|
|
545
|
-
getRuntimeLogs({ pathParams: { projectId, deploymentId }, queryParams, config }: {
|
|
546
|
-
pathParams: Types.GetRuntimeLogsPathParams;
|
|
547
|
-
queryParams?: Types.GetRuntimeLogsQueryParams | undefined;
|
|
548
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
549
|
-
client?: typeof import("./utils/fetcher").client;
|
|
550
|
-
};
|
|
551
|
-
}): Promise<unknown>;
|
|
552
|
-
createExperimentationItem({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
553
|
-
pathParams: Types.CreateExperimentationItemPathParams;
|
|
554
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
555
|
-
client?: typeof import("./utils/fetcher").client;
|
|
556
|
-
};
|
|
557
|
-
}): Promise<unknown>;
|
|
558
|
-
updateExperimentationItem({ pathParams: { integrationConfigurationId, resourceId, itemId }, config }: {
|
|
559
|
-
pathParams: Types.UpdateExperimentationItemPathParams;
|
|
560
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
561
|
-
client?: typeof import("./utils/fetcher").client;
|
|
562
|
-
};
|
|
563
|
-
}): Promise<unknown>;
|
|
564
|
-
deleteExperimentationItem({ pathParams: { integrationConfigurationId, resourceId, itemId }, config }: {
|
|
565
|
-
pathParams: Types.DeleteExperimentationItemPathParams;
|
|
566
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
567
|
-
client?: typeof import("./utils/fetcher").client;
|
|
568
|
-
};
|
|
569
|
-
}): Promise<unknown>;
|
|
570
|
-
updateExperimentationEdgeConfig({ pathParams: { integrationConfigurationId, resourceId }, config }: {
|
|
571
|
-
pathParams: Types.UpdateExperimentationEdgeConfigPathParams;
|
|
572
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
573
|
-
client?: typeof import("./utils/fetcher").client;
|
|
574
|
-
};
|
|
575
|
-
}): Promise<unknown>;
|
|
576
|
-
getProjectMembers({ pathParams: { idOrName }, queryParams, config }: {
|
|
577
|
-
pathParams: Types.GetProjectMembersPathParams;
|
|
578
|
-
queryParams?: Types.GetProjectMembersQueryParams | undefined;
|
|
579
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
580
|
-
client?: typeof import("./utils/fetcher").client;
|
|
581
|
-
};
|
|
582
|
-
}): Promise<unknown>;
|
|
583
|
-
addProjectMember({ pathParams: { idOrName }, queryParams, config }: {
|
|
584
|
-
pathParams: Types.AddProjectMemberPathParams;
|
|
585
|
-
queryParams?: Types.AddProjectMemberQueryParams | undefined;
|
|
586
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
587
|
-
client?: typeof import("./utils/fetcher").client;
|
|
588
|
-
};
|
|
589
|
-
}): Promise<unknown>;
|
|
590
|
-
removeProjectMember({ pathParams: { idOrName, uid }, queryParams, config }: {
|
|
591
|
-
pathParams: Types.RemoveProjectMemberPathParams;
|
|
592
|
-
queryParams?: Types.RemoveProjectMemberQueryParams | undefined;
|
|
593
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
594
|
-
client?: typeof import("./utils/fetcher").client;
|
|
595
|
-
};
|
|
596
|
-
}): Promise<unknown>;
|
|
597
|
-
getProjects({ queryParams, config }: {
|
|
598
|
-
queryParams?: Types.GetProjectsQueryParams | undefined;
|
|
599
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
600
|
-
client?: typeof import("./utils/fetcher").client;
|
|
601
|
-
};
|
|
602
|
-
}): Promise<unknown>;
|
|
603
|
-
createProject({ queryParams, config }: {
|
|
604
|
-
queryParams?: Types.CreateProjectQueryParams | undefined;
|
|
605
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
606
|
-
client?: typeof import("./utils/fetcher").client;
|
|
607
|
-
};
|
|
608
|
-
}): Promise<unknown>;
|
|
609
|
-
getProject({ pathParams: { idOrName }, queryParams, config }: {
|
|
610
|
-
pathParams: Types.GetProjectPathParams;
|
|
611
|
-
queryParams?: Types.GetProjectQueryParams | undefined;
|
|
612
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
613
|
-
client?: typeof import("./utils/fetcher").client;
|
|
614
|
-
};
|
|
615
|
-
}): Promise<unknown>;
|
|
616
|
-
updateProject({ pathParams: { idOrName }, queryParams, config }: {
|
|
617
|
-
pathParams: Types.UpdateProjectPathParams;
|
|
618
|
-
queryParams?: Types.UpdateProjectQueryParams | undefined;
|
|
619
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
620
|
-
client?: typeof import("./utils/fetcher").client;
|
|
621
|
-
};
|
|
622
|
-
}): Promise<unknown>;
|
|
623
|
-
deleteProject({ pathParams: { idOrName }, queryParams, config }: {
|
|
624
|
-
pathParams: Types.DeleteProjectPathParams;
|
|
625
|
-
queryParams?: Types.DeleteProjectQueryParams | undefined;
|
|
626
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
627
|
-
client?: typeof import("./utils/fetcher").client;
|
|
628
|
-
};
|
|
629
|
-
}): Promise<unknown>;
|
|
630
|
-
createCustomEnvironment({ pathParams: { idOrName }, queryParams, config }: {
|
|
631
|
-
pathParams: Types.CreateCustomEnvironmentPathParams;
|
|
632
|
-
queryParams?: Types.CreateCustomEnvironmentQueryParams | undefined;
|
|
633
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
634
|
-
client?: typeof import("./utils/fetcher").client;
|
|
635
|
-
};
|
|
636
|
-
}): Promise<unknown>;
|
|
637
|
-
listCustomEnvironments({ pathParams: { idOrName }, queryParams, config }: {
|
|
638
|
-
pathParams: Types.ListCustomEnvironmentsPathParams;
|
|
639
|
-
queryParams?: Types.ListCustomEnvironmentsQueryParams | undefined;
|
|
640
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
641
|
-
client?: typeof import("./utils/fetcher").client;
|
|
642
|
-
};
|
|
643
|
-
}): Promise<unknown>;
|
|
644
|
-
getCustomEnvironment({ pathParams: { idOrName, environmentSlugOrId }, queryParams, config }: {
|
|
645
|
-
pathParams: Types.GetCustomEnvironmentPathParams;
|
|
646
|
-
queryParams?: Types.GetCustomEnvironmentQueryParams | undefined;
|
|
647
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
648
|
-
client?: typeof import("./utils/fetcher").client;
|
|
649
|
-
};
|
|
650
|
-
}): Promise<unknown>;
|
|
651
|
-
updateCustomEnvironment({ pathParams: { idOrName, environmentSlugOrId }, queryParams, config }: {
|
|
652
|
-
pathParams: Types.UpdateCustomEnvironmentPathParams;
|
|
653
|
-
queryParams?: Types.UpdateCustomEnvironmentQueryParams | undefined;
|
|
654
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
655
|
-
client?: typeof import("./utils/fetcher").client;
|
|
656
|
-
};
|
|
657
|
-
}): Promise<unknown>;
|
|
658
|
-
removeCustomEnvironment({ pathParams: { idOrName, environmentSlugOrId }, queryParams, config }: {
|
|
659
|
-
pathParams: Types.RemoveCustomEnvironmentPathParams;
|
|
660
|
-
queryParams?: Types.RemoveCustomEnvironmentQueryParams | undefined;
|
|
661
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
662
|
-
client?: typeof import("./utils/fetcher").client;
|
|
663
|
-
};
|
|
664
|
-
}): Promise<unknown>;
|
|
665
|
-
getProjectDomains({ pathParams: { idOrName }, queryParams, config }: {
|
|
666
|
-
pathParams: Types.GetProjectDomainsPathParams;
|
|
667
|
-
queryParams?: Types.GetProjectDomainsQueryParams | undefined;
|
|
668
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
669
|
-
client?: typeof import("./utils/fetcher").client;
|
|
670
|
-
};
|
|
671
|
-
}): Promise<unknown>;
|
|
672
|
-
getProjectDomain({ pathParams: { idOrName, domain }, queryParams, config }: {
|
|
673
|
-
pathParams: Types.GetProjectDomainPathParams;
|
|
674
|
-
queryParams?: Types.GetProjectDomainQueryParams | undefined;
|
|
675
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
676
|
-
client?: typeof import("./utils/fetcher").client;
|
|
677
|
-
};
|
|
678
|
-
}): Promise<unknown>;
|
|
679
|
-
updateProjectDomain({ pathParams: { idOrName, domain }, queryParams, config }: {
|
|
680
|
-
pathParams: Types.UpdateProjectDomainPathParams;
|
|
681
|
-
queryParams?: Types.UpdateProjectDomainQueryParams | undefined;
|
|
682
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
683
|
-
client?: typeof import("./utils/fetcher").client;
|
|
684
|
-
};
|
|
685
|
-
}): Promise<unknown>;
|
|
686
|
-
removeProjectDomain({ pathParams: { idOrName, domain }, queryParams, config }: {
|
|
687
|
-
pathParams: Types.RemoveProjectDomainPathParams;
|
|
688
|
-
queryParams?: Types.RemoveProjectDomainQueryParams | undefined;
|
|
689
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
690
|
-
client?: typeof import("./utils/fetcher").client;
|
|
691
|
-
};
|
|
692
|
-
}): Promise<unknown>;
|
|
693
|
-
addProjectDomain({ pathParams: { idOrName }, queryParams, config }: {
|
|
694
|
-
pathParams: Types.AddProjectDomainPathParams;
|
|
695
|
-
queryParams?: Types.AddProjectDomainQueryParams | undefined;
|
|
696
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
697
|
-
client?: typeof import("./utils/fetcher").client;
|
|
698
|
-
};
|
|
699
|
-
}): Promise<unknown>;
|
|
700
|
-
moveProjectDomain({ pathParams: { idOrName, domain }, queryParams, config }: {
|
|
701
|
-
pathParams: Types.MoveProjectDomainPathParams;
|
|
702
|
-
queryParams?: Types.MoveProjectDomainQueryParams | undefined;
|
|
703
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
704
|
-
client?: typeof import("./utils/fetcher").client;
|
|
705
|
-
};
|
|
706
|
-
}): Promise<unknown>;
|
|
707
|
-
verifyProjectDomain({ pathParams: { idOrName, domain }, queryParams, config }: {
|
|
708
|
-
pathParams: Types.VerifyProjectDomainPathParams;
|
|
709
|
-
queryParams?: Types.VerifyProjectDomainQueryParams | undefined;
|
|
710
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
711
|
-
client?: typeof import("./utils/fetcher").client;
|
|
712
|
-
};
|
|
713
|
-
}): Promise<unknown>;
|
|
714
|
-
filterProjectEnvs({ pathParams: { idOrName }, queryParams, config }: {
|
|
715
|
-
pathParams: Types.FilterProjectEnvsPathParams;
|
|
716
|
-
queryParams?: Types.FilterProjectEnvsQueryParams | undefined;
|
|
717
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
718
|
-
client?: typeof import("./utils/fetcher").client;
|
|
719
|
-
};
|
|
720
|
-
}): Promise<unknown>;
|
|
721
|
-
createProjectEnv({ pathParams: { idOrName }, queryParams, config }: {
|
|
722
|
-
pathParams: Types.CreateProjectEnvPathParams;
|
|
723
|
-
queryParams?: Types.CreateProjectEnvQueryParams | undefined;
|
|
724
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
725
|
-
client?: typeof import("./utils/fetcher").client;
|
|
726
|
-
};
|
|
727
|
-
}): Promise<unknown>;
|
|
728
|
-
getProjectEnv({ pathParams: { idOrName, id }, queryParams, config }: {
|
|
729
|
-
pathParams: Types.GetProjectEnvPathParams;
|
|
730
|
-
queryParams?: Types.GetProjectEnvQueryParams | undefined;
|
|
731
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
732
|
-
client?: typeof import("./utils/fetcher").client;
|
|
733
|
-
};
|
|
734
|
-
}): Promise<unknown>;
|
|
735
|
-
removeProjectEnv({ pathParams: { idOrName, id }, queryParams, config }: {
|
|
736
|
-
pathParams: Types.RemoveProjectEnvPathParams;
|
|
737
|
-
queryParams?: Types.RemoveProjectEnvQueryParams | undefined;
|
|
738
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
739
|
-
client?: typeof import("./utils/fetcher").client;
|
|
740
|
-
};
|
|
741
|
-
}): Promise<unknown>;
|
|
742
|
-
editProjectEnv({ pathParams: { idOrName, id }, queryParams, config }: {
|
|
743
|
-
pathParams: Types.EditProjectEnvPathParams;
|
|
744
|
-
queryParams?: Types.EditProjectEnvQueryParams | undefined;
|
|
745
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
746
|
-
client?: typeof import("./utils/fetcher").client;
|
|
747
|
-
};
|
|
748
|
-
}): Promise<unknown>;
|
|
749
|
-
getRollingReleaseBillingStatus({ pathParams: { idOrName }, queryParams, config }: {
|
|
750
|
-
pathParams: Types.GetRollingReleaseBillingStatusPathParams;
|
|
751
|
-
queryParams?: Types.GetRollingReleaseBillingStatusQueryParams | undefined;
|
|
752
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
753
|
-
client?: typeof import("./utils/fetcher").client;
|
|
754
|
-
};
|
|
755
|
-
}): Promise<unknown>;
|
|
756
|
-
getRollingReleaseConfig({ pathParams: { idOrName }, queryParams, config }: {
|
|
757
|
-
pathParams: Types.GetRollingReleaseConfigPathParams;
|
|
758
|
-
queryParams?: Types.GetRollingReleaseConfigQueryParams | undefined;
|
|
759
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
760
|
-
client?: typeof import("./utils/fetcher").client;
|
|
761
|
-
};
|
|
762
|
-
}): Promise<unknown>;
|
|
763
|
-
deleteRollingReleaseConfig({ pathParams: { idOrName }, queryParams, config }: {
|
|
764
|
-
pathParams: Types.DeleteRollingReleaseConfigPathParams;
|
|
765
|
-
queryParams?: Types.DeleteRollingReleaseConfigQueryParams | undefined;
|
|
766
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
767
|
-
client?: typeof import("./utils/fetcher").client;
|
|
768
|
-
};
|
|
769
|
-
}): Promise<unknown>;
|
|
770
|
-
updateRollingReleaseConfig({ pathParams: { idOrName }, queryParams, config }: {
|
|
771
|
-
pathParams: Types.UpdateRollingReleaseConfigPathParams;
|
|
772
|
-
queryParams?: Types.UpdateRollingReleaseConfigQueryParams | undefined;
|
|
773
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
774
|
-
client?: typeof import("./utils/fetcher").client;
|
|
775
|
-
};
|
|
776
|
-
}): Promise<unknown>;
|
|
777
|
-
getRollingRelease({ pathParams: { idOrName }, queryParams, config }: {
|
|
778
|
-
pathParams: Types.GetRollingReleasePathParams;
|
|
779
|
-
queryParams?: Types.GetRollingReleaseQueryParams | undefined;
|
|
780
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
781
|
-
client?: typeof import("./utils/fetcher").client;
|
|
782
|
-
};
|
|
783
|
-
}): Promise<unknown>;
|
|
784
|
-
approveRollingReleaseStage({ pathParams: { idOrName }, queryParams, config }: {
|
|
785
|
-
pathParams: Types.ApproveRollingReleaseStagePathParams;
|
|
786
|
-
queryParams?: Types.ApproveRollingReleaseStageQueryParams | undefined;
|
|
787
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
788
|
-
client?: typeof import("./utils/fetcher").client;
|
|
789
|
-
};
|
|
790
|
-
}): Promise<unknown>;
|
|
791
|
-
completeRollingRelease({ pathParams: { idOrName }, queryParams, config }: {
|
|
792
|
-
pathParams: Types.CompleteRollingReleasePathParams;
|
|
793
|
-
queryParams?: Types.CompleteRollingReleaseQueryParams | undefined;
|
|
794
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
795
|
-
client?: typeof import("./utils/fetcher").client;
|
|
796
|
-
};
|
|
797
|
-
}): Promise<unknown>;
|
|
798
|
-
createProjectTransferRequest({ pathParams: { idOrName }, queryParams, config }: {
|
|
799
|
-
pathParams: Types.CreateProjectTransferRequestPathParams;
|
|
800
|
-
queryParams?: Types.CreateProjectTransferRequestQueryParams | undefined;
|
|
801
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
802
|
-
client?: typeof import("./utils/fetcher").client;
|
|
803
|
-
};
|
|
804
|
-
}): Promise<unknown>;
|
|
805
|
-
acceptProjectTransferRequest({ pathParams: { code }, queryParams, config }: {
|
|
806
|
-
pathParams: Types.AcceptProjectTransferRequestPathParams;
|
|
807
|
-
queryParams?: Types.AcceptProjectTransferRequestQueryParams | undefined;
|
|
808
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
809
|
-
client?: typeof import("./utils/fetcher").client;
|
|
810
|
-
};
|
|
811
|
-
}): Promise<unknown>;
|
|
812
|
-
updateProjectProtectionBypass({ pathParams: { idOrName }, queryParams, config }: {
|
|
813
|
-
pathParams: Types.UpdateProjectProtectionBypassPathParams;
|
|
814
|
-
queryParams?: Types.UpdateProjectProtectionBypassQueryParams | undefined;
|
|
815
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
816
|
-
client?: typeof import("./utils/fetcher").client;
|
|
817
|
-
};
|
|
818
|
-
}): Promise<unknown>;
|
|
819
|
-
requestPromote({ pathParams: { projectId, deploymentId }, queryParams, config }: {
|
|
820
|
-
pathParams: Types.RequestPromotePathParams;
|
|
821
|
-
queryParams?: Types.RequestPromoteQueryParams | undefined;
|
|
822
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
823
|
-
client?: typeof import("./utils/fetcher").client;
|
|
824
|
-
};
|
|
825
|
-
}): Promise<unknown>;
|
|
826
|
-
listPromoteAliases({ pathParams: { projectId }, queryParams, config }: {
|
|
827
|
-
pathParams: Types.ListPromoteAliasesPathParams;
|
|
828
|
-
queryParams?: Types.ListPromoteAliasesQueryParams | undefined;
|
|
829
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
830
|
-
client?: typeof import("./utils/fetcher").client;
|
|
831
|
-
};
|
|
832
|
-
}): Promise<unknown>;
|
|
833
|
-
pauseProject({ pathParams: { projectId }, queryParams, config }: {
|
|
834
|
-
pathParams: Types.PauseProjectPathParams;
|
|
835
|
-
queryParams?: Types.PauseProjectQueryParams | undefined;
|
|
836
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
837
|
-
client?: typeof import("./utils/fetcher").client;
|
|
838
|
-
};
|
|
839
|
-
}): Promise<unknown>;
|
|
840
|
-
unpauseProject({ pathParams: { projectId }, queryParams, config }: {
|
|
841
|
-
pathParams: Types.UnpauseProjectPathParams;
|
|
842
|
-
queryParams?: Types.UnpauseProjectQueryParams | undefined;
|
|
843
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
844
|
-
client?: typeof import("./utils/fetcher").client;
|
|
845
|
-
};
|
|
846
|
-
}): Promise<unknown>;
|
|
847
|
-
updateAttackChallengeMode({ queryParams, config }: {
|
|
848
|
-
queryParams?: Types.UpdateAttackChallengeModeQueryParams | undefined;
|
|
849
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
850
|
-
client?: typeof import("./utils/fetcher").client;
|
|
851
|
-
};
|
|
852
|
-
}): Promise<unknown>;
|
|
853
|
-
putFirewallConfig({ queryParams, config }: {
|
|
854
|
-
queryParams: Types.PutFirewallConfigQueryParams;
|
|
855
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
856
|
-
client?: typeof import("./utils/fetcher").client;
|
|
857
|
-
};
|
|
858
|
-
}): Promise<unknown>;
|
|
859
|
-
updateFirewallConfig({ queryParams, config }: {
|
|
860
|
-
queryParams: Types.UpdateFirewallConfigQueryParams;
|
|
861
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
862
|
-
client?: typeof import("./utils/fetcher").client;
|
|
863
|
-
};
|
|
864
|
-
}): Promise<unknown>;
|
|
865
|
-
getFirewallConfig({ pathParams: { configVersion }, queryParams, config }: {
|
|
866
|
-
pathParams: Types.GetFirewallConfigPathParams;
|
|
867
|
-
queryParams: Types.GetFirewallConfigQueryParams;
|
|
868
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
869
|
-
client?: typeof import("./utils/fetcher").client;
|
|
870
|
-
};
|
|
871
|
-
}): Promise<unknown>;
|
|
872
|
-
getActiveAttackStatus({ queryParams, config }: {
|
|
873
|
-
queryParams: Types.GetActiveAttackStatusQueryParams;
|
|
874
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
875
|
-
client?: typeof import("./utils/fetcher").client;
|
|
876
|
-
};
|
|
877
|
-
}): Promise<unknown>;
|
|
878
|
-
getBypassIp({ queryParams, config }: {
|
|
879
|
-
queryParams: Types.GetBypassIpQueryParams;
|
|
880
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
881
|
-
client?: typeof import("./utils/fetcher").client;
|
|
882
|
-
};
|
|
883
|
-
}): Promise<unknown>;
|
|
884
|
-
addBypassIp({ queryParams, config }: {
|
|
885
|
-
queryParams: Types.AddBypassIpQueryParams;
|
|
886
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
887
|
-
client?: typeof import("./utils/fetcher").client;
|
|
888
|
-
};
|
|
889
|
-
}): Promise<unknown>;
|
|
890
|
-
removeBypassIp({ queryParams, config }: {
|
|
891
|
-
queryParams: Types.RemoveBypassIpQueryParams;
|
|
892
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
893
|
-
client?: typeof import("./utils/fetcher").client;
|
|
894
|
-
};
|
|
895
|
-
}): Promise<unknown>;
|
|
896
|
-
getTeamMembers({ pathParams: { teamId }, queryParams, config }: {
|
|
897
|
-
pathParams: Types.GetTeamMembersPathParams;
|
|
898
|
-
queryParams?: Types.GetTeamMembersQueryParams | undefined;
|
|
899
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
900
|
-
client?: typeof import("./utils/fetcher").client;
|
|
901
|
-
};
|
|
902
|
-
}): Promise<unknown>;
|
|
903
|
-
inviteUserToTeam({ pathParams: { teamId }, config }: {
|
|
904
|
-
pathParams: Types.InviteUserToTeamPathParams;
|
|
905
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
906
|
-
client?: typeof import("./utils/fetcher").client;
|
|
907
|
-
};
|
|
908
|
-
}): Promise<unknown>;
|
|
909
|
-
requestAccessToTeam({ pathParams: { teamId }, config }: {
|
|
910
|
-
pathParams: Types.RequestAccessToTeamPathParams;
|
|
911
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
912
|
-
client?: typeof import("./utils/fetcher").client;
|
|
913
|
-
};
|
|
914
|
-
}): Promise<unknown>;
|
|
915
|
-
getTeamAccessRequest({ pathParams: { userId, teamId }, config }: {
|
|
916
|
-
pathParams: Types.GetTeamAccessRequestPathParams;
|
|
917
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
918
|
-
client?: typeof import("./utils/fetcher").client;
|
|
919
|
-
};
|
|
920
|
-
}): Promise<unknown>;
|
|
921
|
-
joinTeam({ pathParams: { teamId }, config }: {
|
|
922
|
-
pathParams: Types.JoinTeamPathParams;
|
|
923
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
924
|
-
client?: typeof import("./utils/fetcher").client;
|
|
925
|
-
};
|
|
926
|
-
}): Promise<unknown>;
|
|
927
|
-
updateTeamMember({ pathParams: { uid, teamId }, config }: {
|
|
928
|
-
pathParams: Types.UpdateTeamMemberPathParams;
|
|
929
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
930
|
-
client?: typeof import("./utils/fetcher").client;
|
|
931
|
-
};
|
|
932
|
-
}): Promise<unknown>;
|
|
933
|
-
removeTeamMember({ pathParams: { uid, teamId }, queryParams, config }: {
|
|
934
|
-
pathParams: Types.RemoveTeamMemberPathParams;
|
|
935
|
-
queryParams?: Types.RemoveTeamMemberQueryParams | undefined;
|
|
936
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
937
|
-
client?: typeof import("./utils/fetcher").client;
|
|
938
|
-
};
|
|
939
|
-
}): Promise<unknown>;
|
|
940
|
-
getTeam({ pathParams: { teamId }, queryParams, config }: {
|
|
941
|
-
pathParams: Types.GetTeamPathParams;
|
|
942
|
-
queryParams?: Types.GetTeamQueryParams | undefined;
|
|
943
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
944
|
-
client?: typeof import("./utils/fetcher").client;
|
|
945
|
-
};
|
|
946
|
-
}): Promise<unknown>;
|
|
947
|
-
patchTeam({ pathParams: { teamId }, queryParams, config }: {
|
|
948
|
-
pathParams: Types.PatchTeamPathParams;
|
|
949
|
-
queryParams?: Types.PatchTeamQueryParams | undefined;
|
|
950
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
951
|
-
client?: typeof import("./utils/fetcher").client;
|
|
952
|
-
};
|
|
953
|
-
}): Promise<unknown>;
|
|
954
|
-
getTeams({ queryParams, config }: {
|
|
955
|
-
queryParams?: Types.GetTeamsQueryParams | undefined;
|
|
956
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
957
|
-
client?: typeof import("./utils/fetcher").client;
|
|
958
|
-
};
|
|
959
|
-
}): Promise<unknown>;
|
|
960
|
-
createTeam({ config }: {
|
|
961
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
962
|
-
client?: typeof import("./utils/fetcher").client;
|
|
963
|
-
};
|
|
964
|
-
}): Promise<unknown>;
|
|
965
|
-
deleteTeam({ pathParams: { teamId }, queryParams, config }: {
|
|
966
|
-
pathParams: Types.DeleteTeamPathParams;
|
|
967
|
-
queryParams?: Types.DeleteTeamQueryParams | undefined;
|
|
968
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
969
|
-
client?: typeof import("./utils/fetcher").client;
|
|
970
|
-
};
|
|
971
|
-
}): Promise<unknown>;
|
|
972
|
-
deleteTeamInviteCode({ pathParams: { inviteId, teamId }, config }: {
|
|
973
|
-
pathParams: Types.DeleteTeamInviteCodePathParams;
|
|
974
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
975
|
-
client?: typeof import("./utils/fetcher").client;
|
|
976
|
-
};
|
|
977
|
-
}): Promise<unknown>;
|
|
978
|
-
uploadFile({ queryParams, headers, config }: {
|
|
979
|
-
queryParams?: Types.UploadFileQueryParams | undefined;
|
|
980
|
-
headers?: Types.UploadFileHeaderParams | undefined;
|
|
981
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
982
|
-
client?: typeof import("./utils/fetcher").client;
|
|
983
|
-
};
|
|
984
|
-
}): Promise<unknown>;
|
|
985
|
-
listAuthTokens({ config }: {
|
|
986
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
987
|
-
client?: typeof import("./utils/fetcher").client;
|
|
988
|
-
};
|
|
989
|
-
}): Promise<unknown>;
|
|
990
|
-
createAuthToken({ queryParams, config }: {
|
|
991
|
-
queryParams?: Types.CreateAuthTokenQueryParams | undefined;
|
|
992
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
993
|
-
client?: typeof import("./utils/fetcher").client;
|
|
994
|
-
};
|
|
995
|
-
}): Promise<unknown>;
|
|
996
|
-
getAuthToken({ pathParams: { tokenId }, config }: {
|
|
997
|
-
pathParams: Types.GetAuthTokenPathParams;
|
|
998
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
999
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1000
|
-
};
|
|
1001
|
-
}): Promise<unknown>;
|
|
1002
|
-
deleteAuthToken({ pathParams: { tokenId }, config }: {
|
|
1003
|
-
pathParams: Types.DeleteAuthTokenPathParams;
|
|
1004
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1005
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1006
|
-
};
|
|
1007
|
-
}): Promise<unknown>;
|
|
1008
|
-
getAuthUser({ config }: {
|
|
1009
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1010
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1011
|
-
};
|
|
1012
|
-
}): Promise<unknown>;
|
|
1013
|
-
requestDelete({ config }: {
|
|
1014
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1015
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1016
|
-
};
|
|
1017
|
-
}): Promise<unknown>;
|
|
1018
|
-
createWebhook({ queryParams, config }: {
|
|
1019
|
-
queryParams?: Types.CreateWebhookQueryParams | undefined;
|
|
1020
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1021
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1022
|
-
};
|
|
1023
|
-
}): Promise<unknown>;
|
|
1024
|
-
getWebhooks({ queryParams, config }: {
|
|
1025
|
-
queryParams?: Types.GetWebhooksQueryParams | undefined;
|
|
1026
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1027
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1028
|
-
};
|
|
1029
|
-
}): Promise<unknown>;
|
|
1030
|
-
getWebhook({ pathParams: { id }, queryParams, config }: {
|
|
1031
|
-
pathParams: Types.GetWebhookPathParams;
|
|
1032
|
-
queryParams?: Types.GetWebhookQueryParams | undefined;
|
|
1033
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1034
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1035
|
-
};
|
|
1036
|
-
}): Promise<unknown>;
|
|
1037
|
-
deleteWebhook({ pathParams: { id }, queryParams, config }: {
|
|
1038
|
-
pathParams: Types.DeleteWebhookPathParams;
|
|
1039
|
-
queryParams?: Types.DeleteWebhookQueryParams | undefined;
|
|
1040
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1041
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1042
|
-
};
|
|
1043
|
-
}): Promise<unknown>;
|
|
1044
|
-
listDeploymentAliases({ pathParams: { id }, queryParams, config }: {
|
|
1045
|
-
pathParams: Types.ListDeploymentAliasesPathParams;
|
|
1046
|
-
queryParams?: Types.ListDeploymentAliasesQueryParams | undefined;
|
|
1047
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1048
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1049
|
-
};
|
|
1050
|
-
}): Promise<unknown>;
|
|
1051
|
-
assignAlias({ pathParams: { id }, queryParams, config }: {
|
|
1052
|
-
pathParams: Types.AssignAliasPathParams;
|
|
1053
|
-
queryParams?: Types.AssignAliasQueryParams | undefined;
|
|
1054
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1055
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1056
|
-
};
|
|
1057
|
-
}): Promise<unknown>;
|
|
1058
|
-
listAliases({ queryParams, config }: {
|
|
1059
|
-
queryParams?: Types.ListAliasesQueryParams | undefined;
|
|
1060
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1061
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1062
|
-
};
|
|
1063
|
-
}): Promise<unknown>;
|
|
1064
|
-
getAlias({ pathParams: { idOrAlias }, queryParams, config }: {
|
|
1065
|
-
pathParams: Types.GetAliasPathParams;
|
|
1066
|
-
queryParams?: Types.GetAliasQueryParams | undefined;
|
|
1067
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1068
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1069
|
-
};
|
|
1070
|
-
}): Promise<unknown>;
|
|
1071
|
-
deleteAlias({ pathParams: { aliasId }, queryParams, config }: {
|
|
1072
|
-
pathParams: Types.DeleteAliasPathParams;
|
|
1073
|
-
queryParams?: Types.DeleteAliasQueryParams | undefined;
|
|
1074
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1075
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1076
|
-
};
|
|
1077
|
-
}): Promise<unknown>;
|
|
1078
|
-
patchUrlProtectionBypass({ pathParams: { id }, queryParams, config }: {
|
|
1079
|
-
pathParams: Types.PatchUrlProtectionBypassPathParams;
|
|
1080
|
-
queryParams?: Types.PatchUrlProtectionBypassQueryParams | undefined;
|
|
1081
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1082
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1083
|
-
};
|
|
1084
|
-
}): Promise<unknown>;
|
|
1085
|
-
listCerts({ config }: {
|
|
1086
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1087
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1088
|
-
};
|
|
1089
|
-
}): Promise<unknown>;
|
|
1090
|
-
getCertById({ pathParams: { id }, queryParams, config }: {
|
|
1091
|
-
pathParams: Types.GetCertByIdPathParams;
|
|
1092
|
-
queryParams?: Types.GetCertByIdQueryParams | undefined;
|
|
1093
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1094
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1095
|
-
};
|
|
1096
|
-
}): Promise<unknown>;
|
|
1097
|
-
removeCert({ pathParams: { id }, queryParams, config }: {
|
|
1098
|
-
pathParams: Types.RemoveCertPathParams;
|
|
1099
|
-
queryParams?: Types.RemoveCertQueryParams | undefined;
|
|
1100
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1101
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1102
|
-
};
|
|
1103
|
-
}): Promise<unknown>;
|
|
1104
|
-
issueCert({ queryParams, config }: {
|
|
1105
|
-
queryParams?: Types.IssueCertQueryParams | undefined;
|
|
1106
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1107
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1108
|
-
};
|
|
1109
|
-
}): Promise<unknown>;
|
|
1110
|
-
uploadCert({ queryParams, config }: {
|
|
1111
|
-
queryParams?: Types.UploadCertQueryParams | undefined;
|
|
1112
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1113
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1114
|
-
};
|
|
1115
|
-
}): Promise<unknown>;
|
|
1116
|
-
listDeploymentFiles({ pathParams: { id }, queryParams, config }: {
|
|
1117
|
-
pathParams: Types.ListDeploymentFilesPathParams;
|
|
1118
|
-
queryParams?: Types.ListDeploymentFilesQueryParams | undefined;
|
|
1119
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1120
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1121
|
-
};
|
|
1122
|
-
}): Promise<unknown>;
|
|
1123
|
-
getDeploymentFileContents({ pathParams: { id, fileId }, queryParams, config }: {
|
|
1124
|
-
pathParams: Types.GetDeploymentFileContentsPathParams;
|
|
1125
|
-
queryParams?: Types.GetDeploymentFileContentsQueryParams | undefined;
|
|
1126
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1127
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1128
|
-
};
|
|
1129
|
-
}): Promise<any>;
|
|
1130
|
-
getDeployments({ queryParams, config }: {
|
|
1131
|
-
queryParams?: Types.GetDeploymentsQueryParams | undefined;
|
|
1132
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1133
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1134
|
-
};
|
|
1135
|
-
}): Promise<unknown>;
|
|
1136
|
-
deleteDeployment({ pathParams: { id }, queryParams, config }: {
|
|
1137
|
-
pathParams: Types.DeleteDeploymentPathParams;
|
|
1138
|
-
queryParams?: Types.DeleteDeploymentQueryParams | undefined;
|
|
1139
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1140
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1141
|
-
};
|
|
1142
|
-
}): Promise<unknown>;
|
|
1143
|
-
getSecrets({ queryParams, config }: {
|
|
1144
|
-
queryParams?: Types.GetSecretsQueryParams | undefined;
|
|
1145
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1146
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1147
|
-
};
|
|
1148
|
-
}): Promise<unknown>;
|
|
1149
|
-
createSecret({ pathParams: { name }, queryParams, config }: {
|
|
1150
|
-
pathParams: Types.CreateSecretPathParams;
|
|
1151
|
-
queryParams?: Types.CreateSecretQueryParams | undefined;
|
|
1152
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1153
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1154
|
-
};
|
|
1155
|
-
}): Promise<unknown>;
|
|
1156
|
-
renameSecret({ pathParams: { name }, queryParams, config }: {
|
|
1157
|
-
pathParams: Types.RenameSecretPathParams;
|
|
1158
|
-
queryParams?: Types.RenameSecretQueryParams | undefined;
|
|
1159
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1160
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1161
|
-
};
|
|
1162
|
-
}): Promise<unknown>;
|
|
1163
|
-
getSecret({ pathParams: { idOrName }, queryParams, config }: {
|
|
1164
|
-
pathParams: Types.GetSecretPathParams;
|
|
1165
|
-
queryParams?: Types.GetSecretQueryParams | undefined;
|
|
1166
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1167
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1168
|
-
};
|
|
1169
|
-
}): Promise<unknown>;
|
|
1170
|
-
deleteSecret({ pathParams: { idOrName }, queryParams, config }: {
|
|
1171
|
-
pathParams: Types.DeleteSecretPathParams;
|
|
1172
|
-
queryParams?: Types.DeleteSecretQueryParams | undefined;
|
|
1173
|
-
config?: Partial<import("./utils/fetcher").FetcherConfig> & {
|
|
1174
|
-
client?: typeof import("./utils/fetcher").client;
|
|
1175
|
-
};
|
|
1176
|
-
}): Promise<unknown>;
|
|
1177
|
-
};
|
|
1178
|
-
declare const Helpers: {
|
|
1179
|
-
operationsByPath: {
|
|
1180
|
-
'GET /v1/access-groups/{idOrName}': typeof Components.readAccessGroup;
|
|
1181
|
-
'POST /v1/access-groups/{idOrName}': typeof Components.updateAccessGroup;
|
|
1182
|
-
'DELETE /v1/access-groups/{idOrName}': typeof Components.deleteAccessGroup;
|
|
1183
|
-
'GET /v1/access-groups/{idOrName}/members': typeof Components.listAccessGroupMembers;
|
|
1184
|
-
'GET /v1/access-groups': typeof Components.listAccessGroups;
|
|
1185
|
-
'POST /v1/access-groups': typeof Components.createAccessGroup;
|
|
1186
|
-
'GET /v1/access-groups/{idOrName}/projects': typeof Components.listAccessGroupProjects;
|
|
1187
|
-
'POST /v1/access-groups/{accessGroupIdOrName}/projects': typeof Components.createAccessGroupProject;
|
|
1188
|
-
'GET /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}': typeof Components.readAccessGroupProject;
|
|
1189
|
-
'PATCH /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}': typeof Components.updateAccessGroupProject;
|
|
1190
|
-
'DELETE /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}': typeof Components.deleteAccessGroupProject;
|
|
1191
|
-
'POST /v8/artifacts/events': typeof Components.recordEvents;
|
|
1192
|
-
'GET /v8/artifacts/status': typeof Components.status;
|
|
1193
|
-
'PUT /v8/artifacts/{hash}': typeof Components.uploadArtifact;
|
|
1194
|
-
'GET /v8/artifacts/{hash}': typeof Components.downloadArtifact;
|
|
1195
|
-
'POST /v8/artifacts': typeof Components.artifactQuery;
|
|
1196
|
-
'POST /v1/deployments/{deploymentId}/checks': typeof Components.createCheck;
|
|
1197
|
-
'GET /v1/deployments/{deploymentId}/checks': typeof Components.getAllChecks;
|
|
1198
|
-
'GET /v1/deployments/{deploymentId}/checks/{checkId}': typeof Components.getCheck;
|
|
1199
|
-
'PATCH /v1/deployments/{deploymentId}/checks/{checkId}': typeof Components.updateCheck;
|
|
1200
|
-
'POST /v1/deployments/{deploymentId}/checks/{checkId}/rerequest': typeof Components.rerequestCheck;
|
|
1201
|
-
'DELETE /data-cache/purge-all': typeof Components.purgeAllDataCache;
|
|
1202
|
-
'PATCH /data-cache/billing-settings': typeof Components.updateDataCacheBillingSettings;
|
|
1203
|
-
'PATCH /v1/data-cache/projects/{projectId}': typeof Components.updateProjectDataCache;
|
|
1204
|
-
'GET /v3/deployments/{idOrUrl}/events': typeof Components.getDeploymentEvents;
|
|
1205
|
-
'PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}': typeof Components.updateIntegrationDeploymentAction;
|
|
1206
|
-
'GET /v13/deployments/{idOrUrl}': typeof Components.getDeployment;
|
|
1207
|
-
'POST /v13/deployments': typeof Components.createDeployment;
|
|
1208
|
-
'PATCH /v12/deployments/{id}/cancel': typeof Components.cancelDeployment;
|
|
1209
|
-
'POST /v5/domains/buy': typeof Components.buyDomain;
|
|
1210
|
-
'GET /v4/domains/price': typeof Components.checkDomainPrice;
|
|
1211
|
-
'GET /v4/domains/status': typeof Components.checkDomainStatus;
|
|
1212
|
-
'GET /v4/domains/{domain}/records': typeof Components.getRecords;
|
|
1213
|
-
'POST /v2/domains/{domain}/records': typeof Components.createRecord;
|
|
1214
|
-
'PATCH /v1/domains/records/{recordId}': typeof Components.updateRecord;
|
|
1215
|
-
'DELETE /v2/domains/{domain}/records/{recordId}': typeof Components.removeRecord;
|
|
1216
|
-
'GET /v1/domains/{domain}/registry': typeof Components.getDomainTransfer;
|
|
1217
|
-
'GET /v6/domains/{domain}/config': typeof Components.getDomainConfig;
|
|
1218
|
-
'GET /v5/domains/{domain}': typeof Components.getDomain;
|
|
1219
|
-
'GET /v5/domains': typeof Components.getDomains;
|
|
1220
|
-
'POST /v7/domains': typeof Components.createOrTransferDomain;
|
|
1221
|
-
'PATCH /v3/domains/{domain}': typeof Components.patchDomain;
|
|
1222
|
-
'DELETE /v6/domains/{domain}': typeof Components.deleteDomain;
|
|
1223
|
-
'GET /v1/edge-config': typeof Components.getEdgeConfigs;
|
|
1224
|
-
'POST /v1/edge-config': typeof Components.createEdgeConfig;
|
|
1225
|
-
'GET /v1/edge-config/{edgeConfigId}': typeof Components.getEdgeConfig;
|
|
1226
|
-
'PUT /v1/edge-config/{edgeConfigId}': typeof Components.updateEdgeConfig;
|
|
1227
|
-
'DELETE /v1/edge-config/{edgeConfigId}': typeof Components.deleteEdgeConfig;
|
|
1228
|
-
'GET /v1/edge-config/{edgeConfigId}/items': typeof Components.getEdgeConfigItems;
|
|
1229
|
-
'PATCH /v1/edge-config/{edgeConfigId}/items': typeof Components.patchEdgeConfigItems;
|
|
1230
|
-
'GET /v1/edge-config/{edgeConfigId}/schema': typeof Components.getEdgeConfigSchema;
|
|
1231
|
-
'POST /v1/edge-config/{edgeConfigId}/schema': typeof Components.patchEdgeConfigSchema;
|
|
1232
|
-
'DELETE /v1/edge-config/{edgeConfigId}/schema': typeof Components.deleteEdgeConfigSchema;
|
|
1233
|
-
'GET /v1/edge-config/{edgeConfigId}/item/{edgeConfigItemKey}': typeof Components.getEdgeConfigItem;
|
|
1234
|
-
'GET /v1/edge-config/{edgeConfigId}/tokens': typeof Components.getEdgeConfigTokens;
|
|
1235
|
-
'DELETE /v1/edge-config/{edgeConfigId}/tokens': typeof Components.deleteEdgeConfigTokens;
|
|
1236
|
-
'GET /v1/edge-config/{edgeConfigId}/token/{token}': typeof Components.getEdgeConfigToken;
|
|
1237
|
-
'POST /v1/edge-config/{edgeConfigId}/token': typeof Components.createEdgeConfigToken;
|
|
1238
|
-
'GET /v1/edge-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}': typeof Components.getEdgeConfigBackup;
|
|
1239
|
-
'GET /v1/edge-config/{edgeConfigId}/backups': typeof Components.getEdgeConfigBackups;
|
|
1240
|
-
'GET /v3/events': typeof Components.listUserEvents;
|
|
1241
|
-
'GET /v1/installations/{integrationConfigurationId}/account': typeof Components.getAccountInfo;
|
|
1242
|
-
'GET /v1/installations/{integrationConfigurationId}/member/{memberId}': typeof Components.getMember;
|
|
1243
|
-
'POST /v1/installations/{integrationConfigurationId}/events': typeof Components.createEvent;
|
|
1244
|
-
'GET /v1/installations/{integrationConfigurationId}/resources': typeof Components.getIntegrationResources;
|
|
1245
|
-
'GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}': typeof Components.getIntegrationResource;
|
|
1246
|
-
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}': typeof Components.deleteIntegrationResource;
|
|
1247
|
-
'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}': typeof Components.importResource;
|
|
1248
|
-
'POST /v1/installations/{integrationConfigurationId}/billing': typeof Components.submitBillingData;
|
|
1249
|
-
'POST /v1/installations/{integrationConfigurationId}/billing/invoices': typeof Components.submitInvoice;
|
|
1250
|
-
'GET /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}': typeof Components.getInvoice;
|
|
1251
|
-
'POST /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}/actions': typeof Components.updateInvoice;
|
|
1252
|
-
'POST /v1/installations/{integrationConfigurationId}/billing/balance': typeof Components.submitPrepaymentBalances;
|
|
1253
|
-
'PUT /v1/installations/{integrationConfigurationId}/products/{integrationProductIdOrSlug}/resources/{resourceId}/secrets': typeof Components.updateResourceSecrets;
|
|
1254
|
-
'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/secrets': typeof Components.updateResourceSecretsById;
|
|
1255
|
-
'GET /v1/integrations/configurations': typeof Components.getConfigurations;
|
|
1256
|
-
'GET /v1/integrations/configuration/{id}': typeof Components.getConfiguration;
|
|
1257
|
-
'DELETE /v1/integrations/configuration/{id}': typeof Components.deleteConfiguration;
|
|
1258
|
-
'POST /v1/integrations/sso/token': typeof Components.exchangeSsoToken;
|
|
1259
|
-
'GET /v2/integrations/log-drains': typeof Components.getIntegrationLogDrains;
|
|
1260
|
-
'POST /v2/integrations/log-drains': typeof Components.createLogDrain;
|
|
1261
|
-
'DELETE /v1/integrations/log-drains/{id}': typeof Components.deleteIntegrationLogDrain;
|
|
1262
|
-
'GET /v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs': typeof Components.getRuntimeLogs;
|
|
1263
|
-
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': typeof Components.createExperimentationItem;
|
|
1264
|
-
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': typeof Components.updateExperimentationItem;
|
|
1265
|
-
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': typeof Components.deleteExperimentationItem;
|
|
1266
|
-
'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config': typeof Components.updateExperimentationEdgeConfig;
|
|
1267
|
-
'GET /v1/projects/{idOrName}/members': typeof Components.getProjectMembers;
|
|
1268
|
-
'POST /v1/projects/{idOrName}/members': typeof Components.addProjectMember;
|
|
1269
|
-
'DELETE /v1/projects/{idOrName}/members/{uid}': typeof Components.removeProjectMember;
|
|
1270
|
-
'GET /v10/projects': typeof Components.getProjects;
|
|
1271
|
-
'POST /v11/projects': typeof Components.createProject;
|
|
1272
|
-
'GET /v9/projects/{idOrName}': typeof Components.getProject;
|
|
1273
|
-
'PATCH /v9/projects/{idOrName}': typeof Components.updateProject;
|
|
1274
|
-
'DELETE /v9/projects/{idOrName}': typeof Components.deleteProject;
|
|
1275
|
-
'POST /v9/projects/{idOrName}/custom-environments': typeof Components.createCustomEnvironment;
|
|
1276
|
-
'GET /v9/projects/{idOrName}/custom-environments': typeof Components.listCustomEnvironments;
|
|
1277
|
-
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': typeof Components.getCustomEnvironment;
|
|
1278
|
-
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': typeof Components.updateCustomEnvironment;
|
|
1279
|
-
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': typeof Components.removeCustomEnvironment;
|
|
1280
|
-
'GET /v9/projects/{idOrName}/domains': typeof Components.getProjectDomains;
|
|
1281
|
-
'GET /v9/projects/{idOrName}/domains/{domain}': typeof Components.getProjectDomain;
|
|
1282
|
-
'PATCH /v9/projects/{idOrName}/domains/{domain}': typeof Components.updateProjectDomain;
|
|
1283
|
-
'DELETE /v9/projects/{idOrName}/domains/{domain}': typeof Components.removeProjectDomain;
|
|
1284
|
-
'POST /v10/projects/{idOrName}/domains': typeof Components.addProjectDomain;
|
|
1285
|
-
'POST /v1/projects/{idOrName}/domains/{domain}/move': typeof Components.moveProjectDomain;
|
|
1286
|
-
'POST /v9/projects/{idOrName}/domains/{domain}/verify': typeof Components.verifyProjectDomain;
|
|
1287
|
-
'GET /v10/projects/{idOrName}/env': typeof Components.filterProjectEnvs;
|
|
1288
|
-
'POST /v10/projects/{idOrName}/env': typeof Components.createProjectEnv;
|
|
1289
|
-
'GET /v1/projects/{idOrName}/env/{id}': typeof Components.getProjectEnv;
|
|
1290
|
-
'DELETE /v9/projects/{idOrName}/env/{id}': typeof Components.removeProjectEnv;
|
|
1291
|
-
'PATCH /v9/projects/{idOrName}/env/{id}': typeof Components.editProjectEnv;
|
|
1292
|
-
'GET /v1/projects/{idOrName}/rolling-release/billing': typeof Components.getRollingReleaseBillingStatus;
|
|
1293
|
-
'GET /v1/projects/{idOrName}/rolling-release/config': typeof Components.getRollingReleaseConfig;
|
|
1294
|
-
'DELETE /v1/projects/{idOrName}/rolling-release/config': typeof Components.deleteRollingReleaseConfig;
|
|
1295
|
-
'PATCH /v1/projects/{idOrName}/rolling-release/config': typeof Components.updateRollingReleaseConfig;
|
|
1296
|
-
'GET /v1/projects/{idOrName}/rolling-release': typeof Components.getRollingRelease;
|
|
1297
|
-
'POST /v1/projects/{idOrName}/rolling-release/approve-stage': typeof Components.approveRollingReleaseStage;
|
|
1298
|
-
'POST /v1/projects/{idOrName}/rolling-release/complete': typeof Components.completeRollingRelease;
|
|
1299
|
-
'POST /projects/{idOrName}/transfer-request': typeof Components.createProjectTransferRequest;
|
|
1300
|
-
'PUT /projects/transfer-request/{code}': typeof Components.acceptProjectTransferRequest;
|
|
1301
|
-
'PATCH /v1/projects/{idOrName}/protection-bypass': typeof Components.updateProjectProtectionBypass;
|
|
1302
|
-
'POST /v10/projects/{projectId}/promote/{deploymentId}': typeof Components.requestPromote;
|
|
1303
|
-
'GET /v1/projects/{projectId}/promote/aliases': typeof Components.listPromoteAliases;
|
|
1304
|
-
'POST /v1/projects/{projectId}/pause': typeof Components.pauseProject;
|
|
1305
|
-
'POST /v1/projects/{projectId}/unpause': typeof Components.unpauseProject;
|
|
1306
|
-
'POST /v1/security/attack-mode': typeof Components.updateAttackChallengeMode;
|
|
1307
|
-
'PUT /v1/security/firewall/config': typeof Components.putFirewallConfig;
|
|
1308
|
-
'PATCH /v1/security/firewall/config': typeof Components.updateFirewallConfig;
|
|
1309
|
-
'GET /v1/security/firewall/config/{configVersion}': typeof Components.getFirewallConfig;
|
|
1310
|
-
'GET /v1/security/firewall/attack-status': typeof Components.getActiveAttackStatus;
|
|
1311
|
-
'GET /v1/security/firewall/bypass': typeof Components.getBypassIp;
|
|
1312
|
-
'POST /v1/security/firewall/bypass': typeof Components.addBypassIp;
|
|
1313
|
-
'DELETE /v1/security/firewall/bypass': typeof Components.removeBypassIp;
|
|
1314
|
-
'GET /v3/teams/{teamId}/members': typeof Components.getTeamMembers;
|
|
1315
|
-
'POST /v1/teams/{teamId}/members': typeof Components.inviteUserToTeam;
|
|
1316
|
-
'POST /v1/teams/{teamId}/request': typeof Components.requestAccessToTeam;
|
|
1317
|
-
'GET /v1/teams/{teamId}/request/{userId}': typeof Components.getTeamAccessRequest;
|
|
1318
|
-
'POST /v1/teams/{teamId}/members/teams/join': typeof Components.joinTeam;
|
|
1319
|
-
'PATCH /v1/teams/{teamId}/members/{uid}': typeof Components.updateTeamMember;
|
|
1320
|
-
'DELETE /v1/teams/{teamId}/members/{uid}': typeof Components.removeTeamMember;
|
|
1321
|
-
'GET /v2/teams/{teamId}': typeof Components.getTeam;
|
|
1322
|
-
'PATCH /v2/teams/{teamId}': typeof Components.patchTeam;
|
|
1323
|
-
'GET /v2/teams': typeof Components.getTeams;
|
|
1324
|
-
'POST /v1/teams': typeof Components.createTeam;
|
|
1325
|
-
'DELETE /v1/teams/{teamId}': typeof Components.deleteTeam;
|
|
1326
|
-
'DELETE /v1/teams/{teamId}/invites/{inviteId}': typeof Components.deleteTeamInviteCode;
|
|
1327
|
-
'POST /v2/files': typeof Components.uploadFile;
|
|
1328
|
-
'GET /v5/user/tokens': typeof Components.listAuthTokens;
|
|
1329
|
-
'POST /v3/user/tokens': typeof Components.createAuthToken;
|
|
1330
|
-
'GET /v5/user/tokens/{tokenId}': typeof Components.getAuthToken;
|
|
1331
|
-
'DELETE /v3/user/tokens/{tokenId}': typeof Components.deleteAuthToken;
|
|
1332
|
-
'GET /v2/user': typeof Components.getAuthUser;
|
|
1333
|
-
'DELETE /v1/user': typeof Components.requestDelete;
|
|
1334
|
-
'POST /v1/webhooks': typeof Components.createWebhook;
|
|
1335
|
-
'GET /v1/webhooks': typeof Components.getWebhooks;
|
|
1336
|
-
'GET /v1/webhooks/{id}': typeof Components.getWebhook;
|
|
1337
|
-
'DELETE /v1/webhooks/{id}': typeof Components.deleteWebhook;
|
|
1338
|
-
'GET /v2/deployments/{id}/aliases': typeof Components.listDeploymentAliases;
|
|
1339
|
-
'POST /v2/deployments/{id}/aliases': typeof Components.assignAlias;
|
|
1340
|
-
'GET /v4/aliases': typeof Components.listAliases;
|
|
1341
|
-
'GET /v4/aliases/{idOrAlias}': typeof Components.getAlias;
|
|
1342
|
-
'DELETE /v2/aliases/{aliasId}': typeof Components.deleteAlias;
|
|
1343
|
-
'PATCH /aliases/{id}/protection-bypass': typeof Components.patchUrlProtectionBypass;
|
|
1344
|
-
'GET /certs': typeof Components.listCerts;
|
|
1345
|
-
'GET /v8/certs/{id}': typeof Components.getCertById;
|
|
1346
|
-
'DELETE /v8/certs/{id}': typeof Components.removeCert;
|
|
1347
|
-
'POST /v8/certs': typeof Components.issueCert;
|
|
1348
|
-
'PUT /v8/certs': typeof Components.uploadCert;
|
|
1349
|
-
'GET /v6/deployments/{id}/files': typeof Components.listDeploymentFiles;
|
|
1350
|
-
'GET /v8/deployments/{id}/files/{fileId}': typeof Components.getDeploymentFileContents;
|
|
1351
|
-
'GET /v6/deployments': typeof Components.getDeployments;
|
|
1352
|
-
'DELETE /v13/deployments/{id}': typeof Components.deleteDeployment;
|
|
1353
|
-
'GET /v3/secrets': typeof Components.getSecrets;
|
|
1354
|
-
'POST /v2/secrets/{name}': typeof Components.createSecret;
|
|
1355
|
-
'PATCH /v2/secrets/{name}': typeof Components.renameSecret;
|
|
1356
|
-
'GET /v3/secrets/{idOrName}': typeof Components.getSecret;
|
|
1357
|
-
'DELETE /v2/secrets/{idOrName}': typeof Components.deleteSecret;
|
|
1358
|
-
};
|
|
1359
|
-
operationsByTag: {
|
|
1360
|
-
accessGroups: {
|
|
1361
|
-
readAccessGroup: typeof Components.readAccessGroup;
|
|
1362
|
-
updateAccessGroup: typeof Components.updateAccessGroup;
|
|
1363
|
-
deleteAccessGroup: typeof Components.deleteAccessGroup;
|
|
1364
|
-
listAccessGroupMembers: typeof Components.listAccessGroupMembers;
|
|
1365
|
-
listAccessGroups: typeof Components.listAccessGroups;
|
|
1366
|
-
createAccessGroup: typeof Components.createAccessGroup;
|
|
1367
|
-
listAccessGroupProjects: typeof Components.listAccessGroupProjects;
|
|
1368
|
-
createAccessGroupProject: typeof Components.createAccessGroupProject;
|
|
1369
|
-
readAccessGroupProject: typeof Components.readAccessGroupProject;
|
|
1370
|
-
updateAccessGroupProject: typeof Components.updateAccessGroupProject;
|
|
1371
|
-
deleteAccessGroupProject: typeof Components.deleteAccessGroupProject;
|
|
1372
|
-
};
|
|
1373
|
-
artifacts: {
|
|
1374
|
-
recordEvents: typeof Components.recordEvents;
|
|
1375
|
-
status: typeof Components.status;
|
|
1376
|
-
uploadArtifact: typeof Components.uploadArtifact;
|
|
1377
|
-
downloadArtifact: typeof Components.downloadArtifact;
|
|
1378
|
-
artifactQuery: typeof Components.artifactQuery;
|
|
1379
|
-
};
|
|
1380
|
-
checks: {
|
|
1381
|
-
createCheck: typeof Components.createCheck;
|
|
1382
|
-
getAllChecks: typeof Components.getAllChecks;
|
|
1383
|
-
getCheck: typeof Components.getCheck;
|
|
1384
|
-
updateCheck: typeof Components.updateCheck;
|
|
1385
|
-
rerequestCheck: typeof Components.rerequestCheck;
|
|
1386
|
-
};
|
|
1387
|
-
projects: {
|
|
1388
|
-
updateProjectDataCache: typeof Components.updateProjectDataCache;
|
|
1389
|
-
getProjects: typeof Components.getProjects;
|
|
1390
|
-
createProject: typeof Components.createProject;
|
|
1391
|
-
getProject: typeof Components.getProject;
|
|
1392
|
-
updateProject: typeof Components.updateProject;
|
|
1393
|
-
deleteProject: typeof Components.deleteProject;
|
|
1394
|
-
getProjectDomains: typeof Components.getProjectDomains;
|
|
1395
|
-
getProjectDomain: typeof Components.getProjectDomain;
|
|
1396
|
-
updateProjectDomain: typeof Components.updateProjectDomain;
|
|
1397
|
-
removeProjectDomain: typeof Components.removeProjectDomain;
|
|
1398
|
-
addProjectDomain: typeof Components.addProjectDomain;
|
|
1399
|
-
moveProjectDomain: typeof Components.moveProjectDomain;
|
|
1400
|
-
verifyProjectDomain: typeof Components.verifyProjectDomain;
|
|
1401
|
-
filterProjectEnvs: typeof Components.filterProjectEnvs;
|
|
1402
|
-
createProjectEnv: typeof Components.createProjectEnv;
|
|
1403
|
-
getProjectEnv: typeof Components.getProjectEnv;
|
|
1404
|
-
removeProjectEnv: typeof Components.removeProjectEnv;
|
|
1405
|
-
editProjectEnv: typeof Components.editProjectEnv;
|
|
1406
|
-
createProjectTransferRequest: typeof Components.createProjectTransferRequest;
|
|
1407
|
-
acceptProjectTransferRequest: typeof Components.acceptProjectTransferRequest;
|
|
1408
|
-
updateProjectProtectionBypass: typeof Components.updateProjectProtectionBypass;
|
|
1409
|
-
requestPromote: typeof Components.requestPromote;
|
|
1410
|
-
listPromoteAliases: typeof Components.listPromoteAliases;
|
|
1411
|
-
pauseProject: typeof Components.pauseProject;
|
|
1412
|
-
unpauseProject: typeof Components.unpauseProject;
|
|
1413
|
-
};
|
|
1414
|
-
deployments: {
|
|
1415
|
-
getDeploymentEvents: typeof Components.getDeploymentEvents;
|
|
1416
|
-
updateIntegrationDeploymentAction: typeof Components.updateIntegrationDeploymentAction;
|
|
1417
|
-
getDeployment: typeof Components.getDeployment;
|
|
1418
|
-
createDeployment: typeof Components.createDeployment;
|
|
1419
|
-
cancelDeployment: typeof Components.cancelDeployment;
|
|
1420
|
-
uploadFile: typeof Components.uploadFile;
|
|
1421
|
-
listDeploymentFiles: typeof Components.listDeploymentFiles;
|
|
1422
|
-
getDeploymentFileContents: typeof Components.getDeploymentFileContents;
|
|
1423
|
-
getDeployments: typeof Components.getDeployments;
|
|
1424
|
-
deleteDeployment: typeof Components.deleteDeployment;
|
|
1425
|
-
};
|
|
1426
|
-
integrations: {
|
|
1427
|
-
updateIntegrationDeploymentAction: typeof Components.updateIntegrationDeploymentAction;
|
|
1428
|
-
getConfigurations: typeof Components.getConfigurations;
|
|
1429
|
-
getConfiguration: typeof Components.getConfiguration;
|
|
1430
|
-
deleteConfiguration: typeof Components.deleteConfiguration;
|
|
1431
|
-
};
|
|
1432
|
-
domains: {
|
|
1433
|
-
buyDomain: typeof Components.buyDomain;
|
|
1434
|
-
checkDomainPrice: typeof Components.checkDomainPrice;
|
|
1435
|
-
checkDomainStatus: typeof Components.checkDomainStatus;
|
|
1436
|
-
getDomainTransfer: typeof Components.getDomainTransfer;
|
|
1437
|
-
getDomainConfig: typeof Components.getDomainConfig;
|
|
1438
|
-
getDomain: typeof Components.getDomain;
|
|
1439
|
-
getDomains: typeof Components.getDomains;
|
|
1440
|
-
createOrTransferDomain: typeof Components.createOrTransferDomain;
|
|
1441
|
-
patchDomain: typeof Components.patchDomain;
|
|
1442
|
-
deleteDomain: typeof Components.deleteDomain;
|
|
1443
|
-
};
|
|
1444
|
-
dns: {
|
|
1445
|
-
getRecords: typeof Components.getRecords;
|
|
1446
|
-
createRecord: typeof Components.createRecord;
|
|
1447
|
-
updateRecord: typeof Components.updateRecord;
|
|
1448
|
-
removeRecord: typeof Components.removeRecord;
|
|
1449
|
-
};
|
|
1450
|
-
edgeConfig: {
|
|
1451
|
-
getEdgeConfigs: typeof Components.getEdgeConfigs;
|
|
1452
|
-
createEdgeConfig: typeof Components.createEdgeConfig;
|
|
1453
|
-
getEdgeConfig: typeof Components.getEdgeConfig;
|
|
1454
|
-
updateEdgeConfig: typeof Components.updateEdgeConfig;
|
|
1455
|
-
deleteEdgeConfig: typeof Components.deleteEdgeConfig;
|
|
1456
|
-
getEdgeConfigItems: typeof Components.getEdgeConfigItems;
|
|
1457
|
-
patchEdgeConfigItems: typeof Components.patchEdgeConfigItems;
|
|
1458
|
-
getEdgeConfigSchema: typeof Components.getEdgeConfigSchema;
|
|
1459
|
-
patchEdgeConfigSchema: typeof Components.patchEdgeConfigSchema;
|
|
1460
|
-
deleteEdgeConfigSchema: typeof Components.deleteEdgeConfigSchema;
|
|
1461
|
-
getEdgeConfigItem: typeof Components.getEdgeConfigItem;
|
|
1462
|
-
getEdgeConfigTokens: typeof Components.getEdgeConfigTokens;
|
|
1463
|
-
deleteEdgeConfigTokens: typeof Components.deleteEdgeConfigTokens;
|
|
1464
|
-
getEdgeConfigToken: typeof Components.getEdgeConfigToken;
|
|
1465
|
-
createEdgeConfigToken: typeof Components.createEdgeConfigToken;
|
|
1466
|
-
getEdgeConfigBackup: typeof Components.getEdgeConfigBackup;
|
|
1467
|
-
getEdgeConfigBackups: typeof Components.getEdgeConfigBackups;
|
|
1468
|
-
};
|
|
1469
|
-
user: {
|
|
1470
|
-
listUserEvents: typeof Components.listUserEvents;
|
|
1471
|
-
getAuthUser: typeof Components.getAuthUser;
|
|
1472
|
-
requestDelete: typeof Components.requestDelete;
|
|
1473
|
-
};
|
|
1474
|
-
marketplace: {
|
|
1475
|
-
getAccountInfo: typeof Components.getAccountInfo;
|
|
1476
|
-
getMember: typeof Components.getMember;
|
|
1477
|
-
createEvent: typeof Components.createEvent;
|
|
1478
|
-
getIntegrationResources: typeof Components.getIntegrationResources;
|
|
1479
|
-
getIntegrationResource: typeof Components.getIntegrationResource;
|
|
1480
|
-
deleteIntegrationResource: typeof Components.deleteIntegrationResource;
|
|
1481
|
-
importResource: typeof Components.importResource;
|
|
1482
|
-
submitBillingData: typeof Components.submitBillingData;
|
|
1483
|
-
submitInvoice: typeof Components.submitInvoice;
|
|
1484
|
-
getInvoice: typeof Components.getInvoice;
|
|
1485
|
-
updateInvoice: typeof Components.updateInvoice;
|
|
1486
|
-
submitPrepaymentBalances: typeof Components.submitPrepaymentBalances;
|
|
1487
|
-
updateResourceSecrets: typeof Components.updateResourceSecrets;
|
|
1488
|
-
updateResourceSecretsById: typeof Components.updateResourceSecretsById;
|
|
1489
|
-
exchangeSsoToken: typeof Components.exchangeSsoToken;
|
|
1490
|
-
createExperimentationItem: typeof Components.createExperimentationItem;
|
|
1491
|
-
updateExperimentationItem: typeof Components.updateExperimentationItem;
|
|
1492
|
-
deleteExperimentationItem: typeof Components.deleteExperimentationItem;
|
|
1493
|
-
updateExperimentationEdgeConfig: typeof Components.updateExperimentationEdgeConfig;
|
|
1494
|
-
};
|
|
1495
|
-
authentication: {
|
|
1496
|
-
exchangeSsoToken: typeof Components.exchangeSsoToken;
|
|
1497
|
-
listAuthTokens: typeof Components.listAuthTokens;
|
|
1498
|
-
createAuthToken: typeof Components.createAuthToken;
|
|
1499
|
-
getAuthToken: typeof Components.getAuthToken;
|
|
1500
|
-
deleteAuthToken: typeof Components.deleteAuthToken;
|
|
1501
|
-
};
|
|
1502
|
-
logdrains: {
|
|
1503
|
-
getIntegrationLogDrains: typeof Components.getIntegrationLogDrains;
|
|
1504
|
-
createLogDrain: typeof Components.createLogDrain;
|
|
1505
|
-
deleteIntegrationLogDrain: typeof Components.deleteIntegrationLogDrain;
|
|
1506
|
-
};
|
|
1507
|
-
logs: {
|
|
1508
|
-
getRuntimeLogs: typeof Components.getRuntimeLogs;
|
|
1509
|
-
};
|
|
1510
|
-
projectmembers: {
|
|
1511
|
-
getProjectMembers: typeof Components.getProjectMembers;
|
|
1512
|
-
addProjectMember: typeof Components.addProjectMember;
|
|
1513
|
-
removeProjectMember: typeof Components.removeProjectMember;
|
|
1514
|
-
};
|
|
1515
|
-
environment: {
|
|
1516
|
-
createCustomEnvironment: typeof Components.createCustomEnvironment;
|
|
1517
|
-
listCustomEnvironments: typeof Components.listCustomEnvironments;
|
|
1518
|
-
getCustomEnvironment: typeof Components.getCustomEnvironment;
|
|
1519
|
-
updateCustomEnvironment: typeof Components.updateCustomEnvironment;
|
|
1520
|
-
removeCustomEnvironment: typeof Components.removeCustomEnvironment;
|
|
1521
|
-
};
|
|
1522
|
-
rollingRelease: {
|
|
1523
|
-
getRollingReleaseBillingStatus: typeof Components.getRollingReleaseBillingStatus;
|
|
1524
|
-
getRollingReleaseConfig: typeof Components.getRollingReleaseConfig;
|
|
1525
|
-
deleteRollingReleaseConfig: typeof Components.deleteRollingReleaseConfig;
|
|
1526
|
-
updateRollingReleaseConfig: typeof Components.updateRollingReleaseConfig;
|
|
1527
|
-
getRollingRelease: typeof Components.getRollingRelease;
|
|
1528
|
-
approveRollingReleaseStage: typeof Components.approveRollingReleaseStage;
|
|
1529
|
-
completeRollingRelease: typeof Components.completeRollingRelease;
|
|
1530
|
-
};
|
|
1531
|
-
security: {
|
|
1532
|
-
updateAttackChallengeMode: typeof Components.updateAttackChallengeMode;
|
|
1533
|
-
putFirewallConfig: typeof Components.putFirewallConfig;
|
|
1534
|
-
updateFirewallConfig: typeof Components.updateFirewallConfig;
|
|
1535
|
-
getFirewallConfig: typeof Components.getFirewallConfig;
|
|
1536
|
-
getActiveAttackStatus: typeof Components.getActiveAttackStatus;
|
|
1537
|
-
getBypassIp: typeof Components.getBypassIp;
|
|
1538
|
-
addBypassIp: typeof Components.addBypassIp;
|
|
1539
|
-
removeBypassIp: typeof Components.removeBypassIp;
|
|
1540
|
-
};
|
|
1541
|
-
teams: {
|
|
1542
|
-
getTeamMembers: typeof Components.getTeamMembers;
|
|
1543
|
-
inviteUserToTeam: typeof Components.inviteUserToTeam;
|
|
1544
|
-
requestAccessToTeam: typeof Components.requestAccessToTeam;
|
|
1545
|
-
getTeamAccessRequest: typeof Components.getTeamAccessRequest;
|
|
1546
|
-
joinTeam: typeof Components.joinTeam;
|
|
1547
|
-
updateTeamMember: typeof Components.updateTeamMember;
|
|
1548
|
-
removeTeamMember: typeof Components.removeTeamMember;
|
|
1549
|
-
getTeam: typeof Components.getTeam;
|
|
1550
|
-
patchTeam: typeof Components.patchTeam;
|
|
1551
|
-
getTeams: typeof Components.getTeams;
|
|
1552
|
-
createTeam: typeof Components.createTeam;
|
|
1553
|
-
deleteTeam: typeof Components.deleteTeam;
|
|
1554
|
-
deleteTeamInviteCode: typeof Components.deleteTeamInviteCode;
|
|
1555
|
-
};
|
|
1556
|
-
webhooks: {
|
|
1557
|
-
createWebhook: typeof Components.createWebhook;
|
|
1558
|
-
getWebhooks: typeof Components.getWebhooks;
|
|
1559
|
-
getWebhook: typeof Components.getWebhook;
|
|
1560
|
-
deleteWebhook: typeof Components.deleteWebhook;
|
|
1561
|
-
};
|
|
1562
|
-
aliases: {
|
|
1563
|
-
listDeploymentAliases: typeof Components.listDeploymentAliases;
|
|
1564
|
-
assignAlias: typeof Components.assignAlias;
|
|
1565
|
-
listAliases: typeof Components.listAliases;
|
|
1566
|
-
getAlias: typeof Components.getAlias;
|
|
1567
|
-
deleteAlias: typeof Components.deleteAlias;
|
|
1568
|
-
patchUrlProtectionBypass: typeof Components.patchUrlProtectionBypass;
|
|
1569
|
-
};
|
|
1570
|
-
certs: {
|
|
1571
|
-
getCertById: typeof Components.getCertById;
|
|
1572
|
-
removeCert: typeof Components.removeCert;
|
|
1573
|
-
issueCert: typeof Components.issueCert;
|
|
1574
|
-
uploadCert: typeof Components.uploadCert;
|
|
1575
|
-
};
|
|
1576
|
-
secrets: {
|
|
1577
|
-
getSecrets: typeof Components.getSecrets;
|
|
1578
|
-
createSecret: typeof Components.createSecret;
|
|
1579
|
-
renameSecret: typeof Components.renameSecret;
|
|
1580
|
-
getSecret: typeof Components.getSecret;
|
|
1581
|
-
deleteSecret: typeof Components.deleteSecret;
|
|
1582
|
-
};
|
|
1583
|
-
};
|
|
1584
|
-
tagDictionary: {
|
|
1585
|
-
readonly accessGroups: {
|
|
1586
|
-
readonly GET: readonly ["readAccessGroup", "listAccessGroupMembers", "listAccessGroups", "listAccessGroupProjects", "readAccessGroupProject"];
|
|
1587
|
-
readonly POST: readonly ["updateAccessGroup", "createAccessGroup", "createAccessGroupProject"];
|
|
1588
|
-
readonly DELETE: readonly ["deleteAccessGroup", "deleteAccessGroupProject"];
|
|
1589
|
-
readonly PATCH: readonly ["updateAccessGroupProject"];
|
|
1590
|
-
};
|
|
1591
|
-
readonly artifacts: {
|
|
1592
|
-
readonly POST: readonly ["recordEvents", "artifactQuery"];
|
|
1593
|
-
readonly GET: readonly ["status", "downloadArtifact"];
|
|
1594
|
-
readonly PUT: readonly ["uploadArtifact"];
|
|
1595
|
-
};
|
|
1596
|
-
readonly checks: {
|
|
1597
|
-
readonly POST: readonly ["createCheck", "rerequestCheck"];
|
|
1598
|
-
readonly GET: readonly ["getAllChecks", "getCheck"];
|
|
1599
|
-
readonly PATCH: readonly ["updateCheck"];
|
|
1600
|
-
};
|
|
1601
|
-
readonly projects: {
|
|
1602
|
-
readonly PATCH: readonly ["updateProjectDataCache", "updateProject", "updateProjectDomain", "editProjectEnv", "updateProjectProtectionBypass"];
|
|
1603
|
-
readonly GET: readonly ["getProjects", "getProject", "getProjectDomains", "getProjectDomain", "filterProjectEnvs", "getProjectEnv", "listPromoteAliases"];
|
|
1604
|
-
readonly POST: readonly ["createProject", "addProjectDomain", "moveProjectDomain", "verifyProjectDomain", "createProjectEnv", "createProjectTransferRequest", "requestPromote", "pauseProject", "unpauseProject"];
|
|
1605
|
-
readonly DELETE: readonly ["deleteProject", "removeProjectDomain", "removeProjectEnv"];
|
|
1606
|
-
readonly PUT: readonly ["acceptProjectTransferRequest"];
|
|
1607
|
-
};
|
|
1608
|
-
readonly deployments: {
|
|
1609
|
-
readonly GET: readonly ["getDeploymentEvents", "getDeployment", "listDeploymentFiles", "getDeploymentFileContents", "getDeployments"];
|
|
1610
|
-
readonly PATCH: readonly ["updateIntegrationDeploymentAction", "cancelDeployment"];
|
|
1611
|
-
readonly POST: readonly ["createDeployment", "uploadFile"];
|
|
1612
|
-
readonly DELETE: readonly ["deleteDeployment"];
|
|
1613
|
-
};
|
|
1614
|
-
readonly integrations: {
|
|
1615
|
-
readonly PATCH: readonly ["updateIntegrationDeploymentAction"];
|
|
1616
|
-
readonly GET: readonly ["getConfigurations", "getConfiguration"];
|
|
1617
|
-
readonly DELETE: readonly ["deleteConfiguration"];
|
|
1618
|
-
};
|
|
1619
|
-
readonly domains: {
|
|
1620
|
-
readonly POST: readonly ["buyDomain", "createOrTransferDomain"];
|
|
1621
|
-
readonly GET: readonly ["checkDomainPrice", "checkDomainStatus", "getDomainTransfer", "getDomainConfig", "getDomain", "getDomains"];
|
|
1622
|
-
readonly PATCH: readonly ["patchDomain"];
|
|
1623
|
-
readonly DELETE: readonly ["deleteDomain"];
|
|
1624
|
-
};
|
|
1625
|
-
readonly dns: {
|
|
1626
|
-
readonly GET: readonly ["getRecords"];
|
|
1627
|
-
readonly POST: readonly ["createRecord"];
|
|
1628
|
-
readonly PATCH: readonly ["updateRecord"];
|
|
1629
|
-
readonly DELETE: readonly ["removeRecord"];
|
|
1630
|
-
};
|
|
1631
|
-
readonly edgeConfig: {
|
|
1632
|
-
readonly GET: readonly ["getEdgeConfigs", "getEdgeConfig", "getEdgeConfigItems", "getEdgeConfigSchema", "getEdgeConfigItem", "getEdgeConfigTokens", "getEdgeConfigToken", "getEdgeConfigBackup", "getEdgeConfigBackups"];
|
|
1633
|
-
readonly POST: readonly ["createEdgeConfig", "patchEdgeConfigSchema", "createEdgeConfigToken"];
|
|
1634
|
-
readonly PUT: readonly ["updateEdgeConfig"];
|
|
1635
|
-
readonly DELETE: readonly ["deleteEdgeConfig", "deleteEdgeConfigSchema", "deleteEdgeConfigTokens"];
|
|
1636
|
-
readonly PATCH: readonly ["patchEdgeConfigItems"];
|
|
1637
|
-
};
|
|
1638
|
-
readonly user: {
|
|
1639
|
-
readonly GET: readonly ["listUserEvents", "getAuthUser"];
|
|
1640
|
-
readonly DELETE: readonly ["requestDelete"];
|
|
1641
|
-
};
|
|
1642
|
-
readonly marketplace: {
|
|
1643
|
-
readonly GET: readonly ["getAccountInfo", "getMember", "getIntegrationResources", "getIntegrationResource", "getInvoice"];
|
|
1644
|
-
readonly POST: readonly ["createEvent", "submitBillingData", "submitInvoice", "updateInvoice", "submitPrepaymentBalances", "exchangeSsoToken", "createExperimentationItem"];
|
|
1645
|
-
readonly DELETE: readonly ["deleteIntegrationResource", "deleteExperimentationItem"];
|
|
1646
|
-
readonly PUT: readonly ["importResource", "updateResourceSecrets", "updateResourceSecretsById", "updateExperimentationEdgeConfig"];
|
|
1647
|
-
readonly PATCH: readonly ["updateExperimentationItem"];
|
|
1648
|
-
};
|
|
1649
|
-
readonly authentication: {
|
|
1650
|
-
readonly POST: readonly ["exchangeSsoToken", "createAuthToken"];
|
|
1651
|
-
readonly GET: readonly ["listAuthTokens", "getAuthToken"];
|
|
1652
|
-
readonly DELETE: readonly ["deleteAuthToken"];
|
|
1653
|
-
};
|
|
1654
|
-
readonly logdrains: {
|
|
1655
|
-
readonly GET: readonly ["getIntegrationLogDrains"];
|
|
1656
|
-
readonly POST: readonly ["createLogDrain"];
|
|
1657
|
-
readonly DELETE: readonly ["deleteIntegrationLogDrain"];
|
|
1658
|
-
};
|
|
1659
|
-
readonly logs: {
|
|
1660
|
-
readonly GET: readonly ["getRuntimeLogs"];
|
|
1661
|
-
};
|
|
1662
|
-
readonly projectmembers: {
|
|
1663
|
-
readonly GET: readonly ["getProjectMembers"];
|
|
1664
|
-
readonly POST: readonly ["addProjectMember"];
|
|
1665
|
-
readonly DELETE: readonly ["removeProjectMember"];
|
|
1666
|
-
};
|
|
1667
|
-
readonly environment: {
|
|
1668
|
-
readonly POST: readonly ["createCustomEnvironment"];
|
|
1669
|
-
readonly GET: readonly ["listCustomEnvironments", "getCustomEnvironment"];
|
|
1670
|
-
readonly PATCH: readonly ["updateCustomEnvironment"];
|
|
1671
|
-
readonly DELETE: readonly ["removeCustomEnvironment"];
|
|
1672
|
-
};
|
|
1673
|
-
readonly rollingRelease: {
|
|
1674
|
-
readonly GET: readonly ["getRollingReleaseBillingStatus", "getRollingReleaseConfig", "getRollingRelease"];
|
|
1675
|
-
readonly DELETE: readonly ["deleteRollingReleaseConfig"];
|
|
1676
|
-
readonly PATCH: readonly ["updateRollingReleaseConfig"];
|
|
1677
|
-
readonly POST: readonly ["approveRollingReleaseStage", "completeRollingRelease"];
|
|
1678
|
-
};
|
|
1679
|
-
readonly security: {
|
|
1680
|
-
readonly POST: readonly ["updateAttackChallengeMode", "addBypassIp"];
|
|
1681
|
-
readonly PUT: readonly ["putFirewallConfig"];
|
|
1682
|
-
readonly PATCH: readonly ["updateFirewallConfig"];
|
|
1683
|
-
readonly GET: readonly ["getFirewallConfig", "getActiveAttackStatus", "getBypassIp"];
|
|
1684
|
-
readonly DELETE: readonly ["removeBypassIp"];
|
|
1685
|
-
};
|
|
1686
|
-
readonly teams: {
|
|
1687
|
-
readonly GET: readonly ["getTeamMembers", "getTeamAccessRequest", "getTeam", "getTeams"];
|
|
1688
|
-
readonly POST: readonly ["inviteUserToTeam", "requestAccessToTeam", "joinTeam", "createTeam"];
|
|
1689
|
-
readonly PATCH: readonly ["updateTeamMember", "patchTeam"];
|
|
1690
|
-
readonly DELETE: readonly ["removeTeamMember", "deleteTeam", "deleteTeamInviteCode"];
|
|
1691
|
-
};
|
|
1692
|
-
readonly webhooks: {
|
|
1693
|
-
readonly POST: readonly ["createWebhook"];
|
|
1694
|
-
readonly GET: readonly ["getWebhooks", "getWebhook"];
|
|
1695
|
-
readonly DELETE: readonly ["deleteWebhook"];
|
|
1696
|
-
};
|
|
1697
|
-
readonly aliases: {
|
|
1698
|
-
readonly GET: readonly ["listDeploymentAliases", "listAliases", "getAlias"];
|
|
1699
|
-
readonly POST: readonly ["assignAlias"];
|
|
1700
|
-
readonly DELETE: readonly ["deleteAlias"];
|
|
1701
|
-
readonly PATCH: readonly ["patchUrlProtectionBypass"];
|
|
1702
|
-
};
|
|
1703
|
-
readonly certs: {
|
|
1704
|
-
readonly GET: readonly ["getCertById"];
|
|
1705
|
-
readonly DELETE: readonly ["removeCert"];
|
|
1706
|
-
readonly POST: readonly ["issueCert"];
|
|
1707
|
-
readonly PUT: readonly ["uploadCert"];
|
|
1708
|
-
};
|
|
1709
|
-
readonly secrets: {
|
|
1710
|
-
readonly GET: readonly ["getSecrets", "getSecret"];
|
|
1711
|
-
readonly POST: readonly ["createSecret"];
|
|
1712
|
-
readonly PATCH: readonly ["renameSecret"];
|
|
1713
|
-
readonly DELETE: readonly ["deleteSecret"];
|
|
1714
|
-
};
|
|
1715
|
-
};
|
|
1716
|
-
};
|
|
1717
|
-
export * from "./client.mjs";
|
|
1718
|
-
export { Fetchers, Helpers, Schemas, Types };
|