update openapi specs and generated endpoints

This commit is contained in:
Josh Hunt
2024-04-22 07:09:34 -03:00
committed by Leandro Deveikis
parent 9b168be0c5
commit ada9fc069b
3 changed files with 6 additions and 10 deletions
+2 -4
View File
@@ -2388,8 +2388,7 @@
"operationId": "deleteCloudMigration",
"parameters": [
{
"type": "integer",
"format": "int64",
"type": "string",
"description": "UID of a migration",
"name": "uid",
"in": "path",
@@ -2418,8 +2417,7 @@
"operationId": "getCloudMigrationRunList",
"parameters": [
{
"type": "integer",
"format": "int64",
"type": "string",
"description": "UID of a migration",
"name": "uid",
"in": "path",
@@ -41,7 +41,7 @@ export type CreateMigrationApiArg = {
export type DeleteCloudMigrationApiResponse = unknown;
export type DeleteCloudMigrationApiArg = {
/** UID of a migration */
uid: number;
uid: string;
};
export type GetCloudMigrationApiResponse = /** status 200 (empty) */ CloudMigrationResponse;
export type GetCloudMigrationApiArg = {
@@ -51,7 +51,7 @@ export type GetCloudMigrationApiArg = {
export type GetCloudMigrationRunListApiResponse = /** status 200 (empty) */ CloudMigrationRunList;
export type GetCloudMigrationRunListApiArg = {
/** UID of a migration */
uid: number;
uid: string;
};
export type RunCloudMigrationApiResponse = /** status 200 (empty) */ MigrateDataResponseDto;
export type RunCloudMigrationApiArg = {
+2 -4
View File
@@ -14867,8 +14867,7 @@
"name": "uid",
"required": true,
"schema": {
"format": "int64",
"type": "integer"
"type": "string"
}
}
],
@@ -14932,8 +14931,7 @@
"name": "uid",
"required": true,
"schema": {
"format": "int64",
"type": "integer"
"type": "string"
}
}
],