@@ -45,6 +45,7 @@ export async function getActivityGetApiActivity(
45
45
/**
46
46
* Get state of the server and its dependencies.
47
47
* @request GET :/health
48
+ * @allowrelaxedtypes
48
49
* @readonly
49
50
*/
50
51
export async function getHealthGetServerHealth(
@@ -70,6 +71,7 @@ export async function getHealthGetServerHealth(
70
71
/**
71
72
* Ping the server for liveness
72
73
* @request GET :/heartbeat
74
+ * @allowrelaxedtypes
73
75
* @readonly
74
76
*/
75
77
export async function getHeartbeatGetHeartbeat(
@@ -90,6 +92,7 @@ export async function getHeartbeatGetHeartbeat(
90
92
/**
91
93
* Query server for exposed Prometheus metrics
92
94
* @request GET :/metrics
95
+ * @allowrelaxedtypes
93
96
* @readonly
94
97
*/
95
98
export async function getMetricsGetPrometheusMetrics(
@@ -215,6 +218,7 @@ export async function postVaultsCreateVaultItem(
215
218
/**
216
219
* Delete an Item
217
220
* @request DELETE :/vaults/{vaultUuid}/items/{itemUuid}
221
+ * @allowrelaxedtypes
218
222
*/
219
223
export async function deleteVaultsDeleteVaultItem(
220
224
/** The UUID of the Vault the item is in */
@@ -325,6 +329,7 @@ export async function putVaultsUpdateVaultItem(
325
329
/**
326
330
* Get all the files inside an Item
327
331
* @request GET :/vaults/{vaultUuid}/items/{itemUuid}/files
332
+ * @allowrelaxedtypes
328
333
* @readonly
329
334
*/
330
335
export async function getVaultsGetItemFiles(
@@ -356,6 +361,7 @@ export async function getVaultsGetItemFiles(
356
361
/**
357
362
* Get the details of a File
358
363
* @request GET :/vaults/{vaultUuid}/items/{itemUuid}/files/{fileUuid}
364
+ * @allowrelaxedtypes
359
365
* @readonly
360
366
*/
361
367
export async function getVaultsGetDetailsOfFileById(
@@ -390,6 +396,7 @@ export async function getVaultsGetDetailsOfFileById(
390
396
/**
391
397
* Get the content of a File
392
398
* @request GET :/vaults/{vaultUuid}/items/{itemUuid}/files/{fileUuid}/content
399
+ * @allowrelaxedtypes
393
400
* @readonly
394
401
*/
395
402
export async function getVaultsDownloadFileById(
0 commit comments