cyberdesk 2.2.57 → 2.2.58
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/client/index.d.ts +2 -2
- package/dist/client/index.js +31 -3
- package/dist/client/sdk.gen.d.ts +128 -1
- package/dist/client/sdk.gen.js +209 -3
- package/dist/client/types.gen.d.ts +988 -51
- package/dist/index.d.ts +20 -0
- package/dist/index.js +18 -0
- package/package.json +1 -1
|
@@ -149,6 +149,22 @@ export type ConnectionResponse = {
|
|
|
149
149
|
* ConnectionStatus
|
|
150
150
|
*/
|
|
151
151
|
export type ConnectionStatus = 'connected' | 'disconnected' | 'error';
|
|
152
|
+
/**
|
|
153
|
+
* ConnectionUpdate
|
|
154
|
+
*
|
|
155
|
+
* Schema for updating a connection
|
|
156
|
+
*/
|
|
157
|
+
export type ConnectionUpdate = {
|
|
158
|
+
status?: ConnectionStatus | null;
|
|
159
|
+
/**
|
|
160
|
+
* Last Ping
|
|
161
|
+
*/
|
|
162
|
+
last_ping?: string | null;
|
|
163
|
+
/**
|
|
164
|
+
* Disconnected At
|
|
165
|
+
*/
|
|
166
|
+
disconnected_at?: string | null;
|
|
167
|
+
};
|
|
152
168
|
/**
|
|
153
169
|
* CopyToClipboardRequest
|
|
154
170
|
*/
|
|
@@ -160,6 +176,61 @@ export type CopyToClipboardRequest = {
|
|
|
160
176
|
*/
|
|
161
177
|
text: string;
|
|
162
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* CyberdriverConnectionAuthorizationRequest
|
|
181
|
+
*/
|
|
182
|
+
export type CyberdriverConnectionAuthorizationRequest = {
|
|
183
|
+
/**
|
|
184
|
+
* Desktoptoken
|
|
185
|
+
*/
|
|
186
|
+
desktopToken: string;
|
|
187
|
+
/**
|
|
188
|
+
* Machineapikey
|
|
189
|
+
*/
|
|
190
|
+
machineApiKey: string;
|
|
191
|
+
/**
|
|
192
|
+
* Selectedorganizationid
|
|
193
|
+
*/
|
|
194
|
+
selectedOrganizationId?: string;
|
|
195
|
+
/**
|
|
196
|
+
* Machineid
|
|
197
|
+
*/
|
|
198
|
+
machineId?: string;
|
|
199
|
+
/**
|
|
200
|
+
* Rustdeskpeerid
|
|
201
|
+
*/
|
|
202
|
+
rustdeskPeerId?: string;
|
|
203
|
+
/**
|
|
204
|
+
* Id
|
|
205
|
+
*/
|
|
206
|
+
id?: string;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* CyberdriverConnectionTokenRequest
|
|
210
|
+
*/
|
|
211
|
+
export type CyberdriverConnectionTokenRequest = {
|
|
212
|
+
/**
|
|
213
|
+
* Rustdeskpeerid
|
|
214
|
+
*/
|
|
215
|
+
rustdeskPeerId: string;
|
|
216
|
+
/**
|
|
217
|
+
* Selectedorganizationid
|
|
218
|
+
*/
|
|
219
|
+
selectedOrganizationId?: string;
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* CyberdriverConnectionTokenResponse
|
|
223
|
+
*/
|
|
224
|
+
export type CyberdriverConnectionTokenResponse = {
|
|
225
|
+
/**
|
|
226
|
+
* Desktoptoken
|
|
227
|
+
*/
|
|
228
|
+
desktopToken: string;
|
|
229
|
+
/**
|
|
230
|
+
* Expiresat
|
|
231
|
+
*/
|
|
232
|
+
expiresAt: number;
|
|
233
|
+
};
|
|
163
234
|
/**
|
|
164
235
|
* CyberdriverShutdownRequest
|
|
165
236
|
*/
|
|
@@ -177,6 +248,84 @@ export type CyberdriverShutdownRequest = {
|
|
|
177
248
|
*/
|
|
178
249
|
reason?: string | null;
|
|
179
250
|
};
|
|
251
|
+
/**
|
|
252
|
+
* CyberdriverUpdateRequest
|
|
253
|
+
*/
|
|
254
|
+
export type CyberdriverUpdateRequest = {
|
|
255
|
+
/**
|
|
256
|
+
* Version
|
|
257
|
+
*
|
|
258
|
+
* Target version or 'latest'
|
|
259
|
+
*/
|
|
260
|
+
version?: string;
|
|
261
|
+
/**
|
|
262
|
+
* Restart
|
|
263
|
+
*
|
|
264
|
+
* Whether to restart Cyberdriver after update
|
|
265
|
+
*/
|
|
266
|
+
restart?: boolean;
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* CyberdriverWebSessionEndpoints
|
|
270
|
+
*/
|
|
271
|
+
export type CyberdriverWebSessionEndpoints = {
|
|
272
|
+
/**
|
|
273
|
+
* Hbbs Url
|
|
274
|
+
*
|
|
275
|
+
* Browser-safe hbbs WSS endpoint
|
|
276
|
+
*/
|
|
277
|
+
hbbs_url: string;
|
|
278
|
+
/**
|
|
279
|
+
* Hbbr Url
|
|
280
|
+
*
|
|
281
|
+
* Browser-safe hbbr WSS endpoint
|
|
282
|
+
*/
|
|
283
|
+
hbbr_url: string;
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* CyberdriverWebSessionResponse
|
|
287
|
+
*/
|
|
288
|
+
export type CyberdriverWebSessionResponse = {
|
|
289
|
+
/**
|
|
290
|
+
* Machine Id
|
|
291
|
+
*/
|
|
292
|
+
machine_id: string;
|
|
293
|
+
/**
|
|
294
|
+
* Rustdesk Peer Id
|
|
295
|
+
*/
|
|
296
|
+
rustdesk_peer_id: string;
|
|
297
|
+
/**
|
|
298
|
+
* Desktop Label
|
|
299
|
+
*/
|
|
300
|
+
desktop_label: string;
|
|
301
|
+
/**
|
|
302
|
+
* Selected Organization Id
|
|
303
|
+
*/
|
|
304
|
+
selected_organization_id: string;
|
|
305
|
+
/**
|
|
306
|
+
* Token
|
|
307
|
+
*/
|
|
308
|
+
token: string;
|
|
309
|
+
/**
|
|
310
|
+
* Expires At
|
|
311
|
+
*/
|
|
312
|
+
expires_at: number;
|
|
313
|
+
/**
|
|
314
|
+
* Mode
|
|
315
|
+
*/
|
|
316
|
+
mode: string;
|
|
317
|
+
endpoints: CyberdriverWebSessionEndpoints;
|
|
318
|
+
/**
|
|
319
|
+
* Public Key
|
|
320
|
+
*/
|
|
321
|
+
public_key: string;
|
|
322
|
+
/**
|
|
323
|
+
* Features
|
|
324
|
+
*/
|
|
325
|
+
features: {
|
|
326
|
+
[key: string]: boolean;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
180
329
|
/**
|
|
181
330
|
* DisplayDimensions
|
|
182
331
|
*/
|
|
@@ -1018,6 +1167,50 @@ export type MouseScrollRequest = {
|
|
|
1018
1167
|
*/
|
|
1019
1168
|
y?: number | null;
|
|
1020
1169
|
};
|
|
1170
|
+
/**
|
|
1171
|
+
* OidcAuthRequest
|
|
1172
|
+
*/
|
|
1173
|
+
export type OidcAuthRequest = {
|
|
1174
|
+
/**
|
|
1175
|
+
* Op
|
|
1176
|
+
*/
|
|
1177
|
+
op: string;
|
|
1178
|
+
/**
|
|
1179
|
+
* Id
|
|
1180
|
+
*/
|
|
1181
|
+
id: string;
|
|
1182
|
+
/**
|
|
1183
|
+
* Uuid
|
|
1184
|
+
*/
|
|
1185
|
+
uuid: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* Clientsecret
|
|
1188
|
+
*/
|
|
1189
|
+
clientSecret?: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* Deviceinfo
|
|
1192
|
+
*/
|
|
1193
|
+
deviceInfo?: {
|
|
1194
|
+
[key: string]: unknown;
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
/**
|
|
1198
|
+
* OidcAuthResponse
|
|
1199
|
+
*/
|
|
1200
|
+
export type OidcAuthResponse = {
|
|
1201
|
+
/**
|
|
1202
|
+
* Code
|
|
1203
|
+
*/
|
|
1204
|
+
code: string;
|
|
1205
|
+
/**
|
|
1206
|
+
* Url
|
|
1207
|
+
*/
|
|
1208
|
+
url: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* Usercode
|
|
1211
|
+
*/
|
|
1212
|
+
userCode: string;
|
|
1213
|
+
};
|
|
1021
1214
|
/**
|
|
1022
1215
|
* PaginatedResponse
|
|
1023
1216
|
*
|
|
@@ -1418,7 +1611,7 @@ export type PowerShellExecRequest = {
|
|
|
1418
1611
|
/**
|
|
1419
1612
|
* Timeout
|
|
1420
1613
|
*
|
|
1421
|
-
* Maximum time in seconds to wait for command completion before
|
|
1614
|
+
* Maximum time in seconds to wait for command completion before returning. Cyberdriver 1.0.2+ continues one-shot commands in the background after timeout (default: 30.0)
|
|
1422
1615
|
*/
|
|
1423
1616
|
timeout?: number | null;
|
|
1424
1617
|
};
|
|
@@ -2000,6 +2193,31 @@ export type RunCreate = {
|
|
|
2000
2193
|
* (id, workflow_id, machine_id, status, created_at).
|
|
2001
2194
|
*/
|
|
2002
2195
|
export type RunField = 'user_id' | 'organization_id' | 'error' | 'output_data' | 'input_attachment_ids' | 'output_attachment_ids' | 'run_message_history' | 'input_values' | 'pool_ids' | 'sensitive_input_aliases' | 'usage_metadata' | 'session_id' | 'session_alias' | 'release_session_after' | 'started_at' | 'ended_at' | 'post_run_checks' | 'machine_id';
|
|
2196
|
+
/**
|
|
2197
|
+
* RunImageSignedUrlResponse
|
|
2198
|
+
*
|
|
2199
|
+
* Response schema for getting a signed URL for a run screenshot image.
|
|
2200
|
+
*/
|
|
2201
|
+
export type RunImageSignedUrlResponse = {
|
|
2202
|
+
/**
|
|
2203
|
+
* Supabase Url
|
|
2204
|
+
*
|
|
2205
|
+
* The stable supabase:// URL from run_message_history
|
|
2206
|
+
*/
|
|
2207
|
+
supabase_url: string;
|
|
2208
|
+
/**
|
|
2209
|
+
* Signed Url
|
|
2210
|
+
*
|
|
2211
|
+
* A temporary signed URL for viewing or downloading the image
|
|
2212
|
+
*/
|
|
2213
|
+
signed_url: string;
|
|
2214
|
+
/**
|
|
2215
|
+
* Expires In
|
|
2216
|
+
*
|
|
2217
|
+
* Seconds until the signed URL expires
|
|
2218
|
+
*/
|
|
2219
|
+
expires_in: number;
|
|
2220
|
+
};
|
|
2003
2221
|
/**
|
|
2004
2222
|
* RunListSortMode
|
|
2005
2223
|
*/
|
|
@@ -3957,6 +4175,37 @@ export type UpdateMachineV1MachinesMachineIdPatchResponses = {
|
|
|
3957
4175
|
200: MachineResponse;
|
|
3958
4176
|
};
|
|
3959
4177
|
export type UpdateMachineV1MachinesMachineIdPatchResponse = UpdateMachineV1MachinesMachineIdPatchResponses[keyof UpdateMachineV1MachinesMachineIdPatchResponses];
|
|
4178
|
+
export type CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostData = {
|
|
4179
|
+
body?: never;
|
|
4180
|
+
headers?: {
|
|
4181
|
+
/**
|
|
4182
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
4183
|
+
*/
|
|
4184
|
+
'Idempotency-Key'?: string;
|
|
4185
|
+
};
|
|
4186
|
+
path: {
|
|
4187
|
+
/**
|
|
4188
|
+
* Machine Id
|
|
4189
|
+
*/
|
|
4190
|
+
machine_id: string;
|
|
4191
|
+
};
|
|
4192
|
+
query?: never;
|
|
4193
|
+
url: '/v1/machines/{machine_id}/cyberdriver/web-session';
|
|
4194
|
+
};
|
|
4195
|
+
export type CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostErrors = {
|
|
4196
|
+
/**
|
|
4197
|
+
* Validation Error
|
|
4198
|
+
*/
|
|
4199
|
+
422: HttpValidationError;
|
|
4200
|
+
};
|
|
4201
|
+
export type CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostError = CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostErrors[keyof CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostErrors];
|
|
4202
|
+
export type CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostResponses = {
|
|
4203
|
+
/**
|
|
4204
|
+
* Successful Response
|
|
4205
|
+
*/
|
|
4206
|
+
200: CyberdriverWebSessionResponse;
|
|
4207
|
+
};
|
|
4208
|
+
export type CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostResponse = CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostResponses[keyof CreateCyberdriverWebSessionV1MachinesMachineIdCyberdriverWebSessionPostResponses];
|
|
3960
4209
|
export type GetMachinePoolsV1MachinesMachineIdPoolsGetData = {
|
|
3961
4210
|
body?: never;
|
|
3962
4211
|
path: {
|
|
@@ -5476,6 +5725,44 @@ export type UpdateRunV1RunsRunIdPatchResponses = {
|
|
|
5476
5725
|
200: RunResponse;
|
|
5477
5726
|
};
|
|
5478
5727
|
export type UpdateRunV1RunsRunIdPatchResponse = UpdateRunV1RunsRunIdPatchResponses[keyof UpdateRunV1RunsRunIdPatchResponses];
|
|
5728
|
+
export type GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetData = {
|
|
5729
|
+
body?: never;
|
|
5730
|
+
path: {
|
|
5731
|
+
/**
|
|
5732
|
+
* Run Id
|
|
5733
|
+
*/
|
|
5734
|
+
run_id: string;
|
|
5735
|
+
};
|
|
5736
|
+
query: {
|
|
5737
|
+
/**
|
|
5738
|
+
* Image Url
|
|
5739
|
+
*
|
|
5740
|
+
* Exact supabase://run-images/... URL from the run_message_history image block to sign.
|
|
5741
|
+
*/
|
|
5742
|
+
image_url: string;
|
|
5743
|
+
/**
|
|
5744
|
+
* Expires In
|
|
5745
|
+
*
|
|
5746
|
+
* URL expiration time in seconds (10-3600).
|
|
5747
|
+
*/
|
|
5748
|
+
expires_in?: number;
|
|
5749
|
+
};
|
|
5750
|
+
url: '/v1/runs/{run_id}/image/signed-url';
|
|
5751
|
+
};
|
|
5752
|
+
export type GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetErrors = {
|
|
5753
|
+
/**
|
|
5754
|
+
* Validation Error
|
|
5755
|
+
*/
|
|
5756
|
+
422: HttpValidationError;
|
|
5757
|
+
};
|
|
5758
|
+
export type GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetError = GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetErrors[keyof GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetErrors];
|
|
5759
|
+
export type GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetResponses = {
|
|
5760
|
+
/**
|
|
5761
|
+
* Successful Response
|
|
5762
|
+
*/
|
|
5763
|
+
200: RunImageSignedUrlResponse;
|
|
5764
|
+
};
|
|
5765
|
+
export type GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetResponse = GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetResponses[keyof GetRunImageSignedUrlV1RunsRunIdImageSignedUrlGetResponses];
|
|
5479
5766
|
export type GetRunTrajectoryV1RunsRunIdTrajectoryGetData = {
|
|
5480
5767
|
body?: never;
|
|
5481
5768
|
path: {
|
|
@@ -5950,7 +6237,7 @@ export type GetConnectionV1ConnectionsConnectionIdGetResponses = {
|
|
|
5950
6237
|
};
|
|
5951
6238
|
export type GetConnectionV1ConnectionsConnectionIdGetResponse = GetConnectionV1ConnectionsConnectionIdGetResponses[keyof GetConnectionV1ConnectionsConnectionIdGetResponses];
|
|
5952
6239
|
export type UpdateConnectionV1ConnectionsConnectionIdPatchData = {
|
|
5953
|
-
body:
|
|
6240
|
+
body: ConnectionUpdate;
|
|
5954
6241
|
headers?: {
|
|
5955
6242
|
/**
|
|
5956
6243
|
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
@@ -6803,8 +7090,8 @@ export type FsWriteV1ComputerMachineIdFsWritePostResponses = {
|
|
|
6803
7090
|
};
|
|
6804
7091
|
};
|
|
6805
7092
|
export type FsWriteV1ComputerMachineIdFsWritePostResponse = FsWriteV1ComputerMachineIdFsWritePostResponses[keyof FsWriteV1ComputerMachineIdFsWritePostResponses];
|
|
6806
|
-
export type
|
|
6807
|
-
body
|
|
7093
|
+
export type PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostData = {
|
|
7094
|
+
body?: never;
|
|
6808
7095
|
headers?: {
|
|
6809
7096
|
/**
|
|
6810
7097
|
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
@@ -6818,18 +7105,18 @@ export type PowershellExecV1ComputerMachineIdShellPowershellExecPostData = {
|
|
|
6818
7105
|
machine_id: string;
|
|
6819
7106
|
};
|
|
6820
7107
|
query?: never;
|
|
6821
|
-
url: '/v1/computer/{machine_id}/shell/powershell/
|
|
7108
|
+
url: '/v1/computer/{machine_id}/shell/powershell/simple';
|
|
6822
7109
|
};
|
|
6823
|
-
export type
|
|
7110
|
+
export type PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostErrors = {
|
|
6824
7111
|
/**
|
|
6825
7112
|
* Validation Error
|
|
6826
7113
|
*/
|
|
6827
7114
|
422: HttpValidationError;
|
|
6828
7115
|
};
|
|
6829
|
-
export type
|
|
6830
|
-
export type
|
|
7116
|
+
export type PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostError = PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostErrors[keyof PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostErrors];
|
|
7117
|
+
export type PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostResponses = {
|
|
6831
7118
|
/**
|
|
6832
|
-
* Response Powershell
|
|
7119
|
+
* Response Powershell Simple V1 Computer Machine Id Shell Powershell Simple Post
|
|
6833
7120
|
*
|
|
6834
7121
|
* Successful Response
|
|
6835
7122
|
*/
|
|
@@ -6837,9 +7124,9 @@ export type PowershellExecV1ComputerMachineIdShellPowershellExecPostResponses =
|
|
|
6837
7124
|
[key: string]: unknown;
|
|
6838
7125
|
};
|
|
6839
7126
|
};
|
|
6840
|
-
export type
|
|
6841
|
-
export type
|
|
6842
|
-
body
|
|
7127
|
+
export type PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostResponse = PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostResponses[keyof PowershellSimpleV1ComputerMachineIdShellPowershellSimplePostResponses];
|
|
7128
|
+
export type PowershellTestV1ComputerMachineIdShellPowershellTestPostData = {
|
|
7129
|
+
body?: never;
|
|
6843
7130
|
headers?: {
|
|
6844
7131
|
/**
|
|
6845
7132
|
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
@@ -6853,18 +7140,18 @@ export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostData =
|
|
|
6853
7140
|
machine_id: string;
|
|
6854
7141
|
};
|
|
6855
7142
|
query?: never;
|
|
6856
|
-
url: '/v1/computer/{machine_id}/shell/powershell/
|
|
7143
|
+
url: '/v1/computer/{machine_id}/shell/powershell/test';
|
|
6857
7144
|
};
|
|
6858
|
-
export type
|
|
7145
|
+
export type PowershellTestV1ComputerMachineIdShellPowershellTestPostErrors = {
|
|
6859
7146
|
/**
|
|
6860
7147
|
* Validation Error
|
|
6861
7148
|
*/
|
|
6862
7149
|
422: HttpValidationError;
|
|
6863
7150
|
};
|
|
6864
|
-
export type
|
|
6865
|
-
export type
|
|
7151
|
+
export type PowershellTestV1ComputerMachineIdShellPowershellTestPostError = PowershellTestV1ComputerMachineIdShellPowershellTestPostErrors[keyof PowershellTestV1ComputerMachineIdShellPowershellTestPostErrors];
|
|
7152
|
+
export type PowershellTestV1ComputerMachineIdShellPowershellTestPostResponses = {
|
|
6866
7153
|
/**
|
|
6867
|
-
* Response Powershell
|
|
7154
|
+
* Response Powershell Test V1 Computer Machine Id Shell Powershell Test Post
|
|
6868
7155
|
*
|
|
6869
7156
|
* Successful Response
|
|
6870
7157
|
*/
|
|
@@ -6872,12 +7159,9 @@ export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostRespon
|
|
|
6872
7159
|
[key: string]: unknown;
|
|
6873
7160
|
};
|
|
6874
7161
|
};
|
|
6875
|
-
export type
|
|
6876
|
-
export type
|
|
6877
|
-
|
|
6878
|
-
* Request
|
|
6879
|
-
*/
|
|
6880
|
-
body?: CyberdriverShutdownRequest | null;
|
|
7162
|
+
export type PowershellTestV1ComputerMachineIdShellPowershellTestPostResponse = PowershellTestV1ComputerMachineIdShellPowershellTestPostResponses[keyof PowershellTestV1ComputerMachineIdShellPowershellTestPostResponses];
|
|
7163
|
+
export type PowershellExecV1ComputerMachineIdShellPowershellExecPostData = {
|
|
7164
|
+
body: PowerShellExecRequest;
|
|
6881
7165
|
headers?: {
|
|
6882
7166
|
/**
|
|
6883
7167
|
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
@@ -6891,52 +7175,282 @@ export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostData =
|
|
|
6891
7175
|
machine_id: string;
|
|
6892
7176
|
};
|
|
6893
7177
|
query?: never;
|
|
6894
|
-
url: '/v1/
|
|
7178
|
+
url: '/v1/computer/{machine_id}/shell/powershell/exec';
|
|
6895
7179
|
};
|
|
6896
|
-
export type
|
|
6897
|
-
/**
|
|
6898
|
-
* Tunnel-only endpoint rejected outside tunnel path
|
|
6899
|
-
*/
|
|
6900
|
-
403: unknown;
|
|
7180
|
+
export type PowershellExecV1ComputerMachineIdShellPowershellExecPostErrors = {
|
|
6901
7181
|
/**
|
|
6902
7182
|
* Validation Error
|
|
6903
7183
|
*/
|
|
6904
7184
|
422: HttpValidationError;
|
|
6905
7185
|
};
|
|
6906
|
-
export type
|
|
6907
|
-
export type
|
|
7186
|
+
export type PowershellExecV1ComputerMachineIdShellPowershellExecPostError = PowershellExecV1ComputerMachineIdShellPowershellExecPostErrors[keyof PowershellExecV1ComputerMachineIdShellPowershellExecPostErrors];
|
|
7187
|
+
export type PowershellExecV1ComputerMachineIdShellPowershellExecPostResponses = {
|
|
6908
7188
|
/**
|
|
6909
|
-
* Response
|
|
7189
|
+
* Response Powershell Exec V1 Computer Machine Id Shell Powershell Exec Post
|
|
6910
7190
|
*
|
|
6911
|
-
*
|
|
7191
|
+
* Successful Response
|
|
6912
7192
|
*/
|
|
6913
7193
|
200: {
|
|
6914
7194
|
[key: string]: unknown;
|
|
6915
7195
|
};
|
|
6916
7196
|
};
|
|
6917
|
-
export type
|
|
6918
|
-
export type
|
|
6919
|
-
body
|
|
6920
|
-
|
|
6921
|
-
query: {
|
|
6922
|
-
/**
|
|
6923
|
-
* From Date
|
|
6924
|
-
*
|
|
6925
|
-
* Start of period (inclusive, ISO format)
|
|
6926
|
-
*/
|
|
6927
|
-
from_date: string;
|
|
7197
|
+
export type PowershellExecV1ComputerMachineIdShellPowershellExecPostResponse = PowershellExecV1ComputerMachineIdShellPowershellExecPostResponses[keyof PowershellExecV1ComputerMachineIdShellPowershellExecPostResponses];
|
|
7198
|
+
export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostData = {
|
|
7199
|
+
body: PowerShellSessionRequest;
|
|
7200
|
+
headers?: {
|
|
6928
7201
|
/**
|
|
6929
|
-
*
|
|
6930
|
-
*
|
|
6931
|
-
* End of period (exclusive, ISO format)
|
|
7202
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
6932
7203
|
*/
|
|
6933
|
-
|
|
7204
|
+
'Idempotency-Key'?: string;
|
|
7205
|
+
};
|
|
7206
|
+
path: {
|
|
6934
7207
|
/**
|
|
6935
|
-
*
|
|
7208
|
+
* Machine Id
|
|
6936
7209
|
*/
|
|
6937
|
-
|
|
7210
|
+
machine_id: string;
|
|
6938
7211
|
};
|
|
6939
|
-
|
|
7212
|
+
query?: never;
|
|
7213
|
+
url: '/v1/computer/{machine_id}/shell/powershell/session';
|
|
7214
|
+
};
|
|
7215
|
+
export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostErrors = {
|
|
7216
|
+
/**
|
|
7217
|
+
* Validation Error
|
|
7218
|
+
*/
|
|
7219
|
+
422: HttpValidationError;
|
|
7220
|
+
};
|
|
7221
|
+
export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostError = PowershellSessionV1ComputerMachineIdShellPowershellSessionPostErrors[keyof PowershellSessionV1ComputerMachineIdShellPowershellSessionPostErrors];
|
|
7222
|
+
export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostResponses = {
|
|
7223
|
+
/**
|
|
7224
|
+
* Response Powershell Session V1 Computer Machine Id Shell Powershell Session Post
|
|
7225
|
+
*
|
|
7226
|
+
* Successful Response
|
|
7227
|
+
*/
|
|
7228
|
+
200: {
|
|
7229
|
+
[key: string]: unknown;
|
|
7230
|
+
};
|
|
7231
|
+
};
|
|
7232
|
+
export type PowershellSessionV1ComputerMachineIdShellPowershellSessionPostResponse = PowershellSessionV1ComputerMachineIdShellPowershellSessionPostResponses[keyof PowershellSessionV1ComputerMachineIdShellPowershellSessionPostResponses];
|
|
7233
|
+
export type CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetData = {
|
|
7234
|
+
body?: never;
|
|
7235
|
+
path: {
|
|
7236
|
+
/**
|
|
7237
|
+
* Machine Id
|
|
7238
|
+
*/
|
|
7239
|
+
machine_id: string;
|
|
7240
|
+
};
|
|
7241
|
+
query?: never;
|
|
7242
|
+
url: '/v1/computer/{machine_id}/internal/diagnostics';
|
|
7243
|
+
};
|
|
7244
|
+
export type CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetErrors = {
|
|
7245
|
+
/**
|
|
7246
|
+
* Validation Error
|
|
7247
|
+
*/
|
|
7248
|
+
422: HttpValidationError;
|
|
7249
|
+
};
|
|
7250
|
+
export type CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetError = CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetErrors[keyof CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetErrors];
|
|
7251
|
+
export type CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetResponses = {
|
|
7252
|
+
/**
|
|
7253
|
+
* Response Cyberdriver Diagnostics V1 Computer Machine Id Internal Diagnostics Get
|
|
7254
|
+
*
|
|
7255
|
+
* Successful Response
|
|
7256
|
+
*/
|
|
7257
|
+
200: {
|
|
7258
|
+
[key: string]: unknown;
|
|
7259
|
+
};
|
|
7260
|
+
};
|
|
7261
|
+
export type CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetResponse = CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetResponses[keyof CyberdriverDiagnosticsV1ComputerMachineIdInternalDiagnosticsGetResponses];
|
|
7262
|
+
export type CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostData = {
|
|
7263
|
+
body?: never;
|
|
7264
|
+
headers?: {
|
|
7265
|
+
/**
|
|
7266
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
7267
|
+
*/
|
|
7268
|
+
'Idempotency-Key'?: string;
|
|
7269
|
+
};
|
|
7270
|
+
path: {
|
|
7271
|
+
/**
|
|
7272
|
+
* Machine Id
|
|
7273
|
+
*/
|
|
7274
|
+
machine_id: string;
|
|
7275
|
+
};
|
|
7276
|
+
query?: never;
|
|
7277
|
+
url: '/v1/computer/{machine_id}/internal/keepalive/remote/activity';
|
|
7278
|
+
};
|
|
7279
|
+
export type CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostErrors = {
|
|
7280
|
+
/**
|
|
7281
|
+
* Validation Error
|
|
7282
|
+
*/
|
|
7283
|
+
422: HttpValidationError;
|
|
7284
|
+
};
|
|
7285
|
+
export type CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostError = CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostErrors[keyof CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostErrors];
|
|
7286
|
+
export type CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostResponses = {
|
|
7287
|
+
/**
|
|
7288
|
+
* Successful Response
|
|
7289
|
+
*/
|
|
7290
|
+
204: void;
|
|
7291
|
+
};
|
|
7292
|
+
export type CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostResponse = CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostResponses[keyof CyberdriverKeepaliveActivityV1ComputerMachineIdInternalKeepaliveRemoteActivityPostResponses];
|
|
7293
|
+
export type CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostData = {
|
|
7294
|
+
body?: never;
|
|
7295
|
+
headers?: {
|
|
7296
|
+
/**
|
|
7297
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
7298
|
+
*/
|
|
7299
|
+
'Idempotency-Key'?: string;
|
|
7300
|
+
};
|
|
7301
|
+
path: {
|
|
7302
|
+
/**
|
|
7303
|
+
* Machine Id
|
|
7304
|
+
*/
|
|
7305
|
+
machine_id: string;
|
|
7306
|
+
};
|
|
7307
|
+
query?: never;
|
|
7308
|
+
url: '/v1/computer/{machine_id}/internal/keepalive/remote/enable';
|
|
7309
|
+
};
|
|
7310
|
+
export type CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostErrors = {
|
|
7311
|
+
/**
|
|
7312
|
+
* Validation Error
|
|
7313
|
+
*/
|
|
7314
|
+
422: HttpValidationError;
|
|
7315
|
+
};
|
|
7316
|
+
export type CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostError = CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostErrors[keyof CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostErrors];
|
|
7317
|
+
export type CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostResponses = {
|
|
7318
|
+
/**
|
|
7319
|
+
* Successful Response
|
|
7320
|
+
*/
|
|
7321
|
+
204: void;
|
|
7322
|
+
};
|
|
7323
|
+
export type CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostResponse = CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostResponses[keyof CyberdriverKeepaliveEnableV1ComputerMachineIdInternalKeepaliveRemoteEnablePostResponses];
|
|
7324
|
+
export type CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostData = {
|
|
7325
|
+
body?: never;
|
|
7326
|
+
headers?: {
|
|
7327
|
+
/**
|
|
7328
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
7329
|
+
*/
|
|
7330
|
+
'Idempotency-Key'?: string;
|
|
7331
|
+
};
|
|
7332
|
+
path: {
|
|
7333
|
+
/**
|
|
7334
|
+
* Machine Id
|
|
7335
|
+
*/
|
|
7336
|
+
machine_id: string;
|
|
7337
|
+
};
|
|
7338
|
+
query?: never;
|
|
7339
|
+
url: '/v1/computer/{machine_id}/internal/keepalive/remote/disable';
|
|
7340
|
+
};
|
|
7341
|
+
export type CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostErrors = {
|
|
7342
|
+
/**
|
|
7343
|
+
* Validation Error
|
|
7344
|
+
*/
|
|
7345
|
+
422: HttpValidationError;
|
|
7346
|
+
};
|
|
7347
|
+
export type CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostError = CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostErrors[keyof CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostErrors];
|
|
7348
|
+
export type CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostResponses = {
|
|
7349
|
+
/**
|
|
7350
|
+
* Successful Response
|
|
7351
|
+
*/
|
|
7352
|
+
204: void;
|
|
7353
|
+
};
|
|
7354
|
+
export type CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostResponse = CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostResponses[keyof CyberdriverKeepaliveDisableV1ComputerMachineIdInternalKeepaliveRemoteDisablePostResponses];
|
|
7355
|
+
export type CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostData = {
|
|
7356
|
+
body: CyberdriverUpdateRequest;
|
|
7357
|
+
headers?: {
|
|
7358
|
+
/**
|
|
7359
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
7360
|
+
*/
|
|
7361
|
+
'Idempotency-Key'?: string;
|
|
7362
|
+
};
|
|
7363
|
+
path: {
|
|
7364
|
+
/**
|
|
7365
|
+
* Machine Id
|
|
7366
|
+
*/
|
|
7367
|
+
machine_id: string;
|
|
7368
|
+
};
|
|
7369
|
+
query?: never;
|
|
7370
|
+
url: '/v1/computer/{machine_id}/internal/update';
|
|
7371
|
+
};
|
|
7372
|
+
export type CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostErrors = {
|
|
7373
|
+
/**
|
|
7374
|
+
* Validation Error
|
|
7375
|
+
*/
|
|
7376
|
+
422: HttpValidationError;
|
|
7377
|
+
};
|
|
7378
|
+
export type CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostError = CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostErrors[keyof CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostErrors];
|
|
7379
|
+
export type CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostResponses = {
|
|
7380
|
+
/**
|
|
7381
|
+
* Response Cyberdriver Update V1 Computer Machine Id Internal Update Post
|
|
7382
|
+
*
|
|
7383
|
+
* Successful Response
|
|
7384
|
+
*/
|
|
7385
|
+
200: {
|
|
7386
|
+
[key: string]: unknown;
|
|
7387
|
+
};
|
|
7388
|
+
};
|
|
7389
|
+
export type CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostResponse = CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostResponses[keyof CyberdriverUpdateV1ComputerMachineIdInternalUpdatePostResponses];
|
|
7390
|
+
export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostData = {
|
|
7391
|
+
/**
|
|
7392
|
+
* Request
|
|
7393
|
+
*/
|
|
7394
|
+
body?: CyberdriverShutdownRequest | null;
|
|
7395
|
+
headers?: {
|
|
7396
|
+
/**
|
|
7397
|
+
* Unique key for idempotent requests. If provided, the server ensures the request is processed at most once. Retries with the same key return the original response. SDKs auto-generate this for write requests.
|
|
7398
|
+
*/
|
|
7399
|
+
'Idempotency-Key'?: string;
|
|
7400
|
+
};
|
|
7401
|
+
path: {
|
|
7402
|
+
/**
|
|
7403
|
+
* Machine Id
|
|
7404
|
+
*/
|
|
7405
|
+
machine_id: string;
|
|
7406
|
+
};
|
|
7407
|
+
query?: never;
|
|
7408
|
+
url: '/v1/machines/{machine_id}/cyberdriver/shutdown';
|
|
7409
|
+
};
|
|
7410
|
+
export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostErrors = {
|
|
7411
|
+
/**
|
|
7412
|
+
* Tunnel-only endpoint rejected outside tunnel path
|
|
7413
|
+
*/
|
|
7414
|
+
403: unknown;
|
|
7415
|
+
/**
|
|
7416
|
+
* Validation Error
|
|
7417
|
+
*/
|
|
7418
|
+
422: HttpValidationError;
|
|
7419
|
+
};
|
|
7420
|
+
export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostError = CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostErrors[keyof CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostErrors];
|
|
7421
|
+
export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostResponses = {
|
|
7422
|
+
/**
|
|
7423
|
+
* Response Cyberdriver Shutdown V1 Machines Machine Id Cyberdriver Shutdown Post
|
|
7424
|
+
*
|
|
7425
|
+
* Shutdown was accepted by CyberDriver
|
|
7426
|
+
*/
|
|
7427
|
+
200: {
|
|
7428
|
+
[key: string]: unknown;
|
|
7429
|
+
};
|
|
7430
|
+
};
|
|
7431
|
+
export type CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostResponse = CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostResponses[keyof CyberdriverShutdownV1MachinesMachineIdCyberdriverShutdownPostResponses];
|
|
7432
|
+
export type GetUsageAggregateV1UsageAggregateGetData = {
|
|
7433
|
+
body?: never;
|
|
7434
|
+
path?: never;
|
|
7435
|
+
query: {
|
|
7436
|
+
/**
|
|
7437
|
+
* From Date
|
|
7438
|
+
*
|
|
7439
|
+
* Start of period (inclusive, ISO format)
|
|
7440
|
+
*/
|
|
7441
|
+
from_date: string;
|
|
7442
|
+
/**
|
|
7443
|
+
* To Date
|
|
7444
|
+
*
|
|
7445
|
+
* End of period (exclusive, ISO format)
|
|
7446
|
+
*/
|
|
7447
|
+
to_date: string;
|
|
7448
|
+
/**
|
|
7449
|
+
* Usage counting mode: 'simulated' or 'billed'
|
|
7450
|
+
*/
|
|
7451
|
+
mode?: UsageMode;
|
|
7452
|
+
};
|
|
7453
|
+
url: '/v1/usage/aggregate';
|
|
6940
7454
|
};
|
|
6941
7455
|
export type GetUsageAggregateV1UsageAggregateGetErrors = {
|
|
6942
7456
|
/**
|
|
@@ -6952,6 +7466,429 @@ export type GetUsageAggregateV1UsageAggregateGetResponses = {
|
|
|
6952
7466
|
200: UsageAggregateResponse;
|
|
6953
7467
|
};
|
|
6954
7468
|
export type GetUsageAggregateV1UsageAggregateGetResponse = GetUsageAggregateV1UsageAggregateGetResponses[keyof GetUsageAggregateV1UsageAggregateGetResponses];
|
|
7469
|
+
export type LoginOptionsApiLoginOptionsGetData = {
|
|
7470
|
+
body?: never;
|
|
7471
|
+
path?: never;
|
|
7472
|
+
query?: never;
|
|
7473
|
+
url: '/api/login-options';
|
|
7474
|
+
};
|
|
7475
|
+
export type LoginOptionsApiLoginOptionsGetResponses = {
|
|
7476
|
+
/**
|
|
7477
|
+
* Response Login Options Api Login Options Get
|
|
7478
|
+
*
|
|
7479
|
+
* Successful Response
|
|
7480
|
+
*/
|
|
7481
|
+
200: Array<string>;
|
|
7482
|
+
};
|
|
7483
|
+
export type LoginOptionsApiLoginOptionsGetResponse = LoginOptionsApiLoginOptionsGetResponses[keyof LoginOptionsApiLoginOptionsGetResponses];
|
|
7484
|
+
export type OidcAuthApiOidcAuthPostData = {
|
|
7485
|
+
body: OidcAuthRequest;
|
|
7486
|
+
path?: never;
|
|
7487
|
+
query?: never;
|
|
7488
|
+
url: '/api/oidc/auth';
|
|
7489
|
+
};
|
|
7490
|
+
export type OidcAuthApiOidcAuthPostErrors = {
|
|
7491
|
+
/**
|
|
7492
|
+
* Validation Error
|
|
7493
|
+
*/
|
|
7494
|
+
422: HttpValidationError;
|
|
7495
|
+
};
|
|
7496
|
+
export type OidcAuthApiOidcAuthPostError = OidcAuthApiOidcAuthPostErrors[keyof OidcAuthApiOidcAuthPostErrors];
|
|
7497
|
+
export type OidcAuthApiOidcAuthPostResponses = {
|
|
7498
|
+
/**
|
|
7499
|
+
* Successful Response
|
|
7500
|
+
*/
|
|
7501
|
+
200: OidcAuthResponse;
|
|
7502
|
+
};
|
|
7503
|
+
export type OidcAuthApiOidcAuthPostResponse = OidcAuthApiOidcAuthPostResponses[keyof OidcAuthApiOidcAuthPostResponses];
|
|
7504
|
+
export type OidcCallbackApiOidcCallbackGetData = {
|
|
7505
|
+
body?: never;
|
|
7506
|
+
path?: never;
|
|
7507
|
+
query: {
|
|
7508
|
+
/**
|
|
7509
|
+
* Code
|
|
7510
|
+
*/
|
|
7511
|
+
code?: string | null;
|
|
7512
|
+
/**
|
|
7513
|
+
* State
|
|
7514
|
+
*/
|
|
7515
|
+
state: string;
|
|
7516
|
+
/**
|
|
7517
|
+
* Error
|
|
7518
|
+
*/
|
|
7519
|
+
error?: string | null;
|
|
7520
|
+
/**
|
|
7521
|
+
* Error Description
|
|
7522
|
+
*/
|
|
7523
|
+
error_description?: string | null;
|
|
7524
|
+
};
|
|
7525
|
+
url: '/api/oidc/callback';
|
|
7526
|
+
};
|
|
7527
|
+
export type OidcCallbackApiOidcCallbackGetErrors = {
|
|
7528
|
+
/**
|
|
7529
|
+
* Validation Error
|
|
7530
|
+
*/
|
|
7531
|
+
422: HttpValidationError;
|
|
7532
|
+
};
|
|
7533
|
+
export type OidcCallbackApiOidcCallbackGetError = OidcCallbackApiOidcCallbackGetErrors[keyof OidcCallbackApiOidcCallbackGetErrors];
|
|
7534
|
+
export type OidcCallbackApiOidcCallbackGetResponses = {
|
|
7535
|
+
/**
|
|
7536
|
+
* Successful Response
|
|
7537
|
+
*/
|
|
7538
|
+
200: string;
|
|
7539
|
+
};
|
|
7540
|
+
export type OidcCallbackApiOidcCallbackGetResponse = OidcCallbackApiOidcCallbackGetResponses[keyof OidcCallbackApiOidcCallbackGetResponses];
|
|
7541
|
+
export type OidcConfirmApiOidcConfirmPostData = {
|
|
7542
|
+
body?: never;
|
|
7543
|
+
path?: never;
|
|
7544
|
+
query?: never;
|
|
7545
|
+
url: '/api/oidc/confirm';
|
|
7546
|
+
};
|
|
7547
|
+
export type OidcConfirmApiOidcConfirmPostResponses = {
|
|
7548
|
+
/**
|
|
7549
|
+
* Successful Response
|
|
7550
|
+
*/
|
|
7551
|
+
200: string;
|
|
7552
|
+
};
|
|
7553
|
+
export type OidcConfirmApiOidcConfirmPostResponse = OidcConfirmApiOidcConfirmPostResponses[keyof OidcConfirmApiOidcConfirmPostResponses];
|
|
7554
|
+
export type OidcAuthQueryApiOidcAuthQueryGetData = {
|
|
7555
|
+
body?: never;
|
|
7556
|
+
path?: never;
|
|
7557
|
+
query: {
|
|
7558
|
+
/**
|
|
7559
|
+
* Code
|
|
7560
|
+
*/
|
|
7561
|
+
code: string;
|
|
7562
|
+
/**
|
|
7563
|
+
* Id
|
|
7564
|
+
*/
|
|
7565
|
+
id: string;
|
|
7566
|
+
/**
|
|
7567
|
+
* Uuid
|
|
7568
|
+
*/
|
|
7569
|
+
uuid: string;
|
|
7570
|
+
};
|
|
7571
|
+
url: '/api/oidc/auth-query';
|
|
7572
|
+
};
|
|
7573
|
+
export type OidcAuthQueryApiOidcAuthQueryGetErrors = {
|
|
7574
|
+
/**
|
|
7575
|
+
* Validation Error
|
|
7576
|
+
*/
|
|
7577
|
+
422: HttpValidationError;
|
|
7578
|
+
};
|
|
7579
|
+
export type OidcAuthQueryApiOidcAuthQueryGetError = OidcAuthQueryApiOidcAuthQueryGetErrors[keyof OidcAuthQueryApiOidcAuthQueryGetErrors];
|
|
7580
|
+
export type OidcAuthQueryApiOidcAuthQueryGetResponses = {
|
|
7581
|
+
/**
|
|
7582
|
+
* Response Oidc Auth Query Api Oidc Auth Query Get
|
|
7583
|
+
*
|
|
7584
|
+
* Successful Response
|
|
7585
|
+
*/
|
|
7586
|
+
200: {
|
|
7587
|
+
[key: string]: unknown;
|
|
7588
|
+
};
|
|
7589
|
+
};
|
|
7590
|
+
export type OidcAuthQueryApiOidcAuthQueryGetResponse = OidcAuthQueryApiOidcAuthQueryGetResponses[keyof OidcAuthQueryApiOidcAuthQueryGetResponses];
|
|
7591
|
+
export type CurrentUserApiCurrentUserPostData = {
|
|
7592
|
+
body?: never;
|
|
7593
|
+
path?: never;
|
|
7594
|
+
query?: never;
|
|
7595
|
+
url: '/api/currentUser';
|
|
7596
|
+
};
|
|
7597
|
+
export type CurrentUserApiCurrentUserPostResponses = {
|
|
7598
|
+
/**
|
|
7599
|
+
* Response Current User Api Currentuser Post
|
|
7600
|
+
*
|
|
7601
|
+
* Successful Response
|
|
7602
|
+
*/
|
|
7603
|
+
200: {
|
|
7604
|
+
[key: string]: unknown;
|
|
7605
|
+
};
|
|
7606
|
+
};
|
|
7607
|
+
export type CurrentUserApiCurrentUserPostResponse = CurrentUserApiCurrentUserPostResponses[keyof CurrentUserApiCurrentUserPostResponses];
|
|
7608
|
+
export type AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostData = {
|
|
7609
|
+
body: CyberdriverConnectionAuthorizationRequest;
|
|
7610
|
+
path?: never;
|
|
7611
|
+
query?: never;
|
|
7612
|
+
url: '/api/cyberdriver/authorize-connection';
|
|
7613
|
+
};
|
|
7614
|
+
export type AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostErrors = {
|
|
7615
|
+
/**
|
|
7616
|
+
* Validation Error
|
|
7617
|
+
*/
|
|
7618
|
+
422: HttpValidationError;
|
|
7619
|
+
};
|
|
7620
|
+
export type AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostError = AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostErrors[keyof AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostErrors];
|
|
7621
|
+
export type AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostResponses = {
|
|
7622
|
+
/**
|
|
7623
|
+
* Response Authorize Cyberdriver Connection Api Cyberdriver Authorize Connection Post
|
|
7624
|
+
*
|
|
7625
|
+
* Successful Response
|
|
7626
|
+
*/
|
|
7627
|
+
200: {
|
|
7628
|
+
[key: string]: unknown;
|
|
7629
|
+
};
|
|
7630
|
+
};
|
|
7631
|
+
export type AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostResponse = AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostResponses[keyof AuthorizeCyberdriverConnectionApiCyberdriverAuthorizeConnectionPostResponses];
|
|
7632
|
+
export type MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostData = {
|
|
7633
|
+
body: CyberdriverConnectionTokenRequest;
|
|
7634
|
+
path?: never;
|
|
7635
|
+
query?: never;
|
|
7636
|
+
url: '/api/cyberdriver/connection-token';
|
|
7637
|
+
};
|
|
7638
|
+
export type MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostErrors = {
|
|
7639
|
+
/**
|
|
7640
|
+
* Validation Error
|
|
7641
|
+
*/
|
|
7642
|
+
422: HttpValidationError;
|
|
7643
|
+
};
|
|
7644
|
+
export type MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostError = MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostErrors[keyof MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostErrors];
|
|
7645
|
+
export type MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostResponses = {
|
|
7646
|
+
/**
|
|
7647
|
+
* Successful Response
|
|
7648
|
+
*/
|
|
7649
|
+
200: CyberdriverConnectionTokenResponse;
|
|
7650
|
+
};
|
|
7651
|
+
export type MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostResponse = MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostResponses[keyof MintCyberdriverConnectionTokenApiCyberdriverConnectionTokenPostResponses];
|
|
7652
|
+
export type HeartbeatApiHeartbeatGetData = {
|
|
7653
|
+
body?: never;
|
|
7654
|
+
path?: never;
|
|
7655
|
+
query?: never;
|
|
7656
|
+
url: '/api/heartbeat';
|
|
7657
|
+
};
|
|
7658
|
+
export type HeartbeatApiHeartbeatGetResponses = {
|
|
7659
|
+
/**
|
|
7660
|
+
* Response Heartbeat Api Heartbeat Get
|
|
7661
|
+
*
|
|
7662
|
+
* Successful Response
|
|
7663
|
+
*/
|
|
7664
|
+
200: {
|
|
7665
|
+
[key: string]: unknown;
|
|
7666
|
+
};
|
|
7667
|
+
};
|
|
7668
|
+
export type HeartbeatApiHeartbeatGetResponse = HeartbeatApiHeartbeatGetResponses[keyof HeartbeatApiHeartbeatGetResponses];
|
|
7669
|
+
export type PeersApiPeersGetData = {
|
|
7670
|
+
body?: never;
|
|
7671
|
+
path?: never;
|
|
7672
|
+
query?: {
|
|
7673
|
+
/**
|
|
7674
|
+
* Current
|
|
7675
|
+
*/
|
|
7676
|
+
current?: number;
|
|
7677
|
+
/**
|
|
7678
|
+
* Pagesize
|
|
7679
|
+
*/
|
|
7680
|
+
pageSize?: number;
|
|
7681
|
+
};
|
|
7682
|
+
url: '/api/peers';
|
|
7683
|
+
};
|
|
7684
|
+
export type PeersApiPeersGetErrors = {
|
|
7685
|
+
/**
|
|
7686
|
+
* Validation Error
|
|
7687
|
+
*/
|
|
7688
|
+
422: HttpValidationError;
|
|
7689
|
+
};
|
|
7690
|
+
export type PeersApiPeersGetError = PeersApiPeersGetErrors[keyof PeersApiPeersGetErrors];
|
|
7691
|
+
export type PeersApiPeersGetResponses = {
|
|
7692
|
+
/**
|
|
7693
|
+
* Response Peers Api Peers Get
|
|
7694
|
+
*
|
|
7695
|
+
* Successful Response
|
|
7696
|
+
*/
|
|
7697
|
+
200: {
|
|
7698
|
+
[key: string]: unknown;
|
|
7699
|
+
};
|
|
7700
|
+
};
|
|
7701
|
+
export type PeersApiPeersGetResponse = PeersApiPeersGetResponses[keyof PeersApiPeersGetResponses];
|
|
7702
|
+
export type UsersApiUsersGetData = {
|
|
7703
|
+
body?: never;
|
|
7704
|
+
path?: never;
|
|
7705
|
+
query?: {
|
|
7706
|
+
/**
|
|
7707
|
+
* Current
|
|
7708
|
+
*/
|
|
7709
|
+
current?: number;
|
|
7710
|
+
/**
|
|
7711
|
+
* Pagesize
|
|
7712
|
+
*/
|
|
7713
|
+
pageSize?: number;
|
|
7714
|
+
};
|
|
7715
|
+
url: '/api/users';
|
|
7716
|
+
};
|
|
7717
|
+
export type UsersApiUsersGetErrors = {
|
|
7718
|
+
/**
|
|
7719
|
+
* Validation Error
|
|
7720
|
+
*/
|
|
7721
|
+
422: HttpValidationError;
|
|
7722
|
+
};
|
|
7723
|
+
export type UsersApiUsersGetError = UsersApiUsersGetErrors[keyof UsersApiUsersGetErrors];
|
|
7724
|
+
export type UsersApiUsersGetResponses = {
|
|
7725
|
+
/**
|
|
7726
|
+
* Response Users Api Users Get
|
|
7727
|
+
*
|
|
7728
|
+
* Successful Response
|
|
7729
|
+
*/
|
|
7730
|
+
200: {
|
|
7731
|
+
[key: string]: unknown;
|
|
7732
|
+
};
|
|
7733
|
+
};
|
|
7734
|
+
export type UsersApiUsersGetResponse = UsersApiUsersGetResponses[keyof UsersApiUsersGetResponses];
|
|
7735
|
+
export type DeviceGroupAccessibleApiDeviceGroupAccessibleGetData = {
|
|
7736
|
+
body?: never;
|
|
7737
|
+
path?: never;
|
|
7738
|
+
query?: never;
|
|
7739
|
+
url: '/api/device-group/accessible';
|
|
7740
|
+
};
|
|
7741
|
+
export type DeviceGroupAccessibleApiDeviceGroupAccessibleGetResponses = {
|
|
7742
|
+
/**
|
|
7743
|
+
* Response Device Group Accessible Api Device Group Accessible Get
|
|
7744
|
+
*
|
|
7745
|
+
* Successful Response
|
|
7746
|
+
*/
|
|
7747
|
+
200: {
|
|
7748
|
+
[key: string]: unknown;
|
|
7749
|
+
};
|
|
7750
|
+
};
|
|
7751
|
+
export type DeviceGroupAccessibleApiDeviceGroupAccessibleGetResponse = DeviceGroupAccessibleApiDeviceGroupAccessibleGetResponses[keyof DeviceGroupAccessibleApiDeviceGroupAccessibleGetResponses];
|
|
7752
|
+
export type AddressBookPersonalApiAbPersonalPostData = {
|
|
7753
|
+
body?: never;
|
|
7754
|
+
path?: never;
|
|
7755
|
+
query?: never;
|
|
7756
|
+
url: '/api/ab/personal';
|
|
7757
|
+
};
|
|
7758
|
+
export type AddressBookPersonalApiAbPersonalPostResponses = {
|
|
7759
|
+
/**
|
|
7760
|
+
* Response Address Book Personal Api Ab Personal Post
|
|
7761
|
+
*
|
|
7762
|
+
* Successful Response
|
|
7763
|
+
*/
|
|
7764
|
+
200: {
|
|
7765
|
+
[key: string]: unknown;
|
|
7766
|
+
};
|
|
7767
|
+
};
|
|
7768
|
+
export type AddressBookPersonalApiAbPersonalPostResponse = AddressBookPersonalApiAbPersonalPostResponses[keyof AddressBookPersonalApiAbPersonalPostResponses];
|
|
7769
|
+
export type AddressBookSettingsApiAbSettingsPostData = {
|
|
7770
|
+
body?: never;
|
|
7771
|
+
path?: never;
|
|
7772
|
+
query?: never;
|
|
7773
|
+
url: '/api/ab/settings';
|
|
7774
|
+
};
|
|
7775
|
+
export type AddressBookSettingsApiAbSettingsPostResponses = {
|
|
7776
|
+
/**
|
|
7777
|
+
* Response Address Book Settings Api Ab Settings Post
|
|
7778
|
+
*
|
|
7779
|
+
* Successful Response
|
|
7780
|
+
*/
|
|
7781
|
+
200: {
|
|
7782
|
+
[key: string]: unknown;
|
|
7783
|
+
};
|
|
7784
|
+
};
|
|
7785
|
+
export type AddressBookSettingsApiAbSettingsPostResponse = AddressBookSettingsApiAbSettingsPostResponses[keyof AddressBookSettingsApiAbSettingsPostResponses];
|
|
7786
|
+
export type AddressBookSharedProfilesApiAbSharedProfilesPostData = {
|
|
7787
|
+
body?: never;
|
|
7788
|
+
path?: never;
|
|
7789
|
+
query?: never;
|
|
7790
|
+
url: '/api/ab/shared/profiles';
|
|
7791
|
+
};
|
|
7792
|
+
export type AddressBookSharedProfilesApiAbSharedProfilesPostResponses = {
|
|
7793
|
+
/**
|
|
7794
|
+
* Response Address Book Shared Profiles Api Ab Shared Profiles Post
|
|
7795
|
+
*
|
|
7796
|
+
* Successful Response
|
|
7797
|
+
*/
|
|
7798
|
+
200: {
|
|
7799
|
+
[key: string]: unknown;
|
|
7800
|
+
};
|
|
7801
|
+
};
|
|
7802
|
+
export type AddressBookSharedProfilesApiAbSharedProfilesPostResponse = AddressBookSharedProfilesApiAbSharedProfilesPostResponses[keyof AddressBookSharedProfilesApiAbSharedProfilesPostResponses];
|
|
7803
|
+
export type AddressBookPeersApiAbPeersPostData = {
|
|
7804
|
+
body?: never;
|
|
7805
|
+
path?: never;
|
|
7806
|
+
query?: {
|
|
7807
|
+
/**
|
|
7808
|
+
* Current
|
|
7809
|
+
*/
|
|
7810
|
+
current?: number;
|
|
7811
|
+
/**
|
|
7812
|
+
* Pagesize
|
|
7813
|
+
*/
|
|
7814
|
+
pageSize?: number;
|
|
7815
|
+
};
|
|
7816
|
+
url: '/api/ab/peers';
|
|
7817
|
+
};
|
|
7818
|
+
export type AddressBookPeersApiAbPeersPostErrors = {
|
|
7819
|
+
/**
|
|
7820
|
+
* Validation Error
|
|
7821
|
+
*/
|
|
7822
|
+
422: HttpValidationError;
|
|
7823
|
+
};
|
|
7824
|
+
export type AddressBookPeersApiAbPeersPostError = AddressBookPeersApiAbPeersPostErrors[keyof AddressBookPeersApiAbPeersPostErrors];
|
|
7825
|
+
export type AddressBookPeersApiAbPeersPostResponses = {
|
|
7826
|
+
/**
|
|
7827
|
+
* Response Address Book Peers Api Ab Peers Post
|
|
7828
|
+
*
|
|
7829
|
+
* Successful Response
|
|
7830
|
+
*/
|
|
7831
|
+
200: {
|
|
7832
|
+
[key: string]: unknown;
|
|
7833
|
+
};
|
|
7834
|
+
};
|
|
7835
|
+
export type AddressBookPeersApiAbPeersPostResponse = AddressBookPeersApiAbPeersPostResponses[keyof AddressBookPeersApiAbPeersPostResponses];
|
|
7836
|
+
export type AddressBookTagsApiAbTagsProfileGuidPostData = {
|
|
7837
|
+
body?: never;
|
|
7838
|
+
path: {
|
|
7839
|
+
/**
|
|
7840
|
+
* Profile Guid
|
|
7841
|
+
*/
|
|
7842
|
+
_profile_guid: string;
|
|
7843
|
+
};
|
|
7844
|
+
query?: never;
|
|
7845
|
+
url: '/api/ab/tags/{_profile_guid}';
|
|
7846
|
+
};
|
|
7847
|
+
export type AddressBookTagsApiAbTagsProfileGuidPostErrors = {
|
|
7848
|
+
/**
|
|
7849
|
+
* Validation Error
|
|
7850
|
+
*/
|
|
7851
|
+
422: HttpValidationError;
|
|
7852
|
+
};
|
|
7853
|
+
export type AddressBookTagsApiAbTagsProfileGuidPostError = AddressBookTagsApiAbTagsProfileGuidPostErrors[keyof AddressBookTagsApiAbTagsProfileGuidPostErrors];
|
|
7854
|
+
export type AddressBookTagsApiAbTagsProfileGuidPostResponses = {
|
|
7855
|
+
/**
|
|
7856
|
+
* Response Address Book Tags Api Ab Tags Profile Guid Post
|
|
7857
|
+
*
|
|
7858
|
+
* Successful Response
|
|
7859
|
+
*/
|
|
7860
|
+
200: Array<unknown>;
|
|
7861
|
+
};
|
|
7862
|
+
export type AddressBookTagsApiAbTagsProfileGuidPostResponse = AddressBookTagsApiAbTagsProfileGuidPostResponses[keyof AddressBookTagsApiAbTagsProfileGuidPostResponses];
|
|
7863
|
+
export type LegacyAddressBookApiAbGetData = {
|
|
7864
|
+
body?: never;
|
|
7865
|
+
path?: never;
|
|
7866
|
+
query?: never;
|
|
7867
|
+
url: '/api/ab';
|
|
7868
|
+
};
|
|
7869
|
+
export type LegacyAddressBookApiAbGetResponses = {
|
|
7870
|
+
/**
|
|
7871
|
+
* Response Legacy Address Book Api Ab Get
|
|
7872
|
+
*
|
|
7873
|
+
* Successful Response
|
|
7874
|
+
*/
|
|
7875
|
+
200: {
|
|
7876
|
+
[key: string]: unknown;
|
|
7877
|
+
};
|
|
7878
|
+
};
|
|
7879
|
+
export type LegacyAddressBookApiAbGetResponse = LegacyAddressBookApiAbGetResponses[keyof LegacyAddressBookApiAbGetResponses];
|
|
7880
|
+
export type SaveLegacyAddressBookApiAbPostData = {
|
|
7881
|
+
body?: never;
|
|
7882
|
+
path?: never;
|
|
7883
|
+
query?: never;
|
|
7884
|
+
url: '/api/ab';
|
|
7885
|
+
};
|
|
7886
|
+
export type SaveLegacyAddressBookApiAbPostResponses = {
|
|
7887
|
+
/**
|
|
7888
|
+
* Successful Response
|
|
7889
|
+
*/
|
|
7890
|
+
200: unknown;
|
|
7891
|
+
};
|
|
6955
7892
|
export type RootGetData = {
|
|
6956
7893
|
body?: never;
|
|
6957
7894
|
path?: never;
|