@spatialwalk/avatarkit 1.0.0-beta.37 → 1.0.0-beta.38

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.
@@ -34,6 +34,10 @@ export declare const vConfigKvServiceUpdateConfigKvBody: v.ObjectSchema<{
34
34
  readonly value: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
35
35
  readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
36
36
  }, undefined>;
37
+
38
+ export declare const vGpuTaskServiceCancelGpuTaskBody: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
39
+
40
+ export declare const vGpuTaskServiceRetryGpuTaskBody: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
37
41
  export declare const vRedeemServiceUpdateRedeemBody: v.ObjectSchema<{
38
42
  readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
39
43
  }, undefined>;
@@ -1215,6 +1219,10 @@ export declare const vV1GetConfigKvResponse: v.ObjectSchema<{
1215
1219
  readonly deletedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1216
1220
  }, undefined>, undefined>;
1217
1221
  }, undefined>;
1222
+ export declare const vV1GetGpuTaskLogsResponse: v.ObjectSchema<{
1223
+ readonly logs: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1224
+ readonly gongjiStatus: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1225
+ }, undefined>;
1218
1226
  export declare const vV1GetMeResponse: v.ObjectSchema<{
1219
1227
  readonly user: v.OptionalSchema<v.ObjectSchema<{
1220
1228
  readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -1242,6 +1250,151 @@ export declare const vV1GetStatusResponse: v.ObjectSchema<{
1242
1250
  readonly deletedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1243
1251
  }, undefined>, undefined>;
1244
1252
  }, undefined>;
1253
+
1254
+ export declare const vV1GpuTaskErrorType: v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>;
1255
+ export declare const vV1GpuTaskHeartbeatResponse: v.ObjectSchema<{
1256
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1257
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1258
+ }, undefined>;
1259
+
1260
+ export declare const vV1GpuTaskResultsRequest: v.ObjectSchema<{
1261
+ readonly taskId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1262
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1263
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1264
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1265
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1266
+ }, undefined>;
1267
+ export declare const vV1GpuTaskResultsResponse: v.ObjectSchema<{
1268
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1269
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1270
+ }, undefined>;
1271
+
1272
+ export declare const vV1GpuTaskStats: v.ObjectSchema<{
1273
+ readonly total: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1274
+ readonly pending: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1275
+ readonly running: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1276
+ readonly completed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1277
+ readonly failed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1278
+ readonly byType: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>, undefined>;
1279
+ }, undefined>;
1280
+ export declare const vV1GetGpuTaskStatsResponse: v.ObjectSchema<{
1281
+ readonly stats: v.OptionalSchema<v.ObjectSchema<{
1282
+ readonly total: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1283
+ readonly pending: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1284
+ readonly running: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1285
+ readonly completed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1286
+ readonly failed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1287
+ readonly byType: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>, undefined>;
1288
+ }, undefined>, undefined>;
1289
+ }, undefined>;
1290
+
1291
+ export declare const vV1GpuTaskStatus: v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>;
1292
+
1293
+ export declare const vV1GpuTaskHeartbeatRequest: v.ObjectSchema<{
1294
+ readonly taskId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1295
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
1296
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1297
+ readonly stage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1298
+ }, undefined>;
1299
+
1300
+ export declare const vV1GpuTaskType: v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>;
1301
+
1302
+ export declare const vV1CreateGpuTaskRequest: v.ObjectSchema<{
1303
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
1304
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1305
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1306
+ }, undefined>;
1307
+
1308
+ export declare const vV1GpuTask: v.ObjectSchema<{
1309
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1310
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
1311
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
1312
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1313
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1314
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1315
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
1316
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1317
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1318
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1319
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1320
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1321
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1322
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1323
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1324
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1325
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1326
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1327
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1328
+ }, undefined>;
1329
+ export declare const vV1CancelGpuTaskResponse: v.ObjectSchema<{
1330
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
1331
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1332
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
1333
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
1334
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1335
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1336
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1337
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
1338
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1339
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1340
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1341
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1342
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1343
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1344
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1345
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1346
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1347
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1348
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1349
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1350
+ }, undefined>, undefined>;
1351
+ }, undefined>;
1352
+ export declare const vV1CreateGpuTaskResponse: v.ObjectSchema<{
1353
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
1354
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1355
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
1356
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
1357
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1358
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1359
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1360
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
1361
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1362
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1363
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1364
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1365
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1366
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1367
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1368
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1369
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1370
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1371
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1372
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1373
+ }, undefined>, undefined>;
1374
+ }, undefined>;
1375
+ export declare const vV1GetGpuTaskResponse: v.ObjectSchema<{
1376
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
1377
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1378
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
1379
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
1380
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1381
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1382
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
1383
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
1384
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1385
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1386
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1387
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1388
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1389
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1390
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1391
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1392
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1393
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1394
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1395
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1396
+ }, undefined>, undefined>;
1397
+ }, undefined>;
1245
1398
  export declare const vV1HeartbeatResponse: v.ObjectSchema<{
1246
1399
  readonly data: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
1247
1400
  }, undefined>;
@@ -1471,6 +1624,12 @@ export declare const vV1oAuthLoginResponse: v.ObjectSchema<{
1471
1624
  readonly isNewUser: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1472
1625
  }, undefined>;
1473
1626
 
1627
+ export declare const vV1OssVideo: v.ObjectSchema<{
1628
+ readonly ossKey: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1629
+ readonly sizeBytes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
1630
+ readonly lastModified: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
1631
+ }, undefined>;
1632
+
1474
1633
  export declare const vV1PaginationRequest: v.ObjectSchema<{
1475
1634
  readonly pageSize: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1476
1635
  readonly pageToken: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -1901,6 +2060,33 @@ export declare const vV1ListConfigKvsResponse: v.ObjectSchema<{
1901
2060
  readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1902
2061
  }, undefined>, undefined>;
1903
2062
  }, undefined>;
2063
+ export declare const vV1ListGpuTasksResponse: v.ObjectSchema<{
2064
+ readonly gpuTasks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2065
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2066
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
2067
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
2068
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2069
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
2070
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
2071
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
2072
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2073
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2074
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2075
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2076
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2077
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2078
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2079
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2080
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2081
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2082
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2083
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2084
+ }, undefined>, undefined>, undefined>;
2085
+ readonly pagination: v.OptionalSchema<v.ObjectSchema<{
2086
+ readonly nextPageToken: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2087
+ readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2088
+ }, undefined>, undefined>;
2089
+ }, undefined>;
1904
2090
 
1905
2091
  export declare const vV1ListJoiModelAppliesResponse: v.ObjectSchema<{
1906
2092
  readonly applies: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
@@ -1961,6 +2147,17 @@ export declare const vV1ListMaterialsResponse: v.ObjectSchema<{
1961
2147
  readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
1962
2148
  }, undefined>, undefined>;
1963
2149
  }, undefined>;
2150
+ export declare const vV1ListOssVideosResponse: v.ObjectSchema<{
2151
+ readonly videos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2152
+ readonly ossKey: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2153
+ readonly sizeBytes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
2154
+ readonly lastModified: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2155
+ }, undefined>, undefined>, undefined>;
2156
+ readonly pagination: v.OptionalSchema<v.ObjectSchema<{
2157
+ readonly nextPageToken: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2158
+ readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2159
+ }, undefined>, undefined>;
2160
+ }, undefined>;
1964
2161
  export declare const vV1ListStatusesResponse: v.ObjectSchema<{
1965
2162
  readonly statuses: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1966
2163
  readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -2251,6 +2448,29 @@ export declare const vV1Response: v.ObjectSchema<{
2251
2448
  readonly meta: v.OptionalSchema<v.ObjectSchema<{}, undefined>, undefined>;
2252
2449
  }, undefined>, undefined>, undefined>;
2253
2450
  }, undefined>;
2451
+ export declare const vV1RetryGpuTaskResponse: v.ObjectSchema<{
2452
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
2453
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2454
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
2455
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
2456
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2457
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
2458
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
2459
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
2460
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2461
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2462
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2463
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2464
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2465
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2466
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2467
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2468
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2469
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2470
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2471
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
2472
+ }, undefined>, undefined>;
2473
+ }, undefined>;
2254
2474
  export declare const vV1SendVerificationCodeResponse: v.ObjectSchema<{
2255
2475
  readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2256
2476
  readonly expiresIn: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
@@ -2953,6 +3173,7 @@ export declare const vCharacterServiceUpdateCharacterBody: v.ObjectSchema<{
2953
3173
  readonly assetGroupIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
2954
3174
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
2955
3175
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3176
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2956
3177
  }, undefined>;
2957
3178
  export declare const vCharacterTemplateServiceUpdateCharacterTemplateBody: v.ObjectSchema<{
2958
3179
  readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -3074,6 +3295,7 @@ export declare const vV1CreateCharacterRequest: v.ObjectSchema<{
3074
3295
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
3075
3296
  readonly characterTemplateId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3076
3297
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3298
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3077
3299
  }, undefined>;
3078
3300
  export declare const vV1CreateCharacterTemplateRequest: v.ObjectSchema<{
3079
3301
  readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -3201,6 +3423,7 @@ export declare const vV1FullCharacter: v.ObjectSchema<{
3201
3423
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
3202
3424
  readonly characterTemplateId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3203
3425
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3426
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3204
3427
  }, undefined>;
3205
3428
  export declare const vPlatformv1GetCharacterResponse: v.ObjectSchema<{
3206
3429
  readonly character: v.OptionalSchema<v.ObjectSchema<{
@@ -3261,6 +3484,7 @@ export declare const vPlatformv1GetCharacterResponse: v.ObjectSchema<{
3261
3484
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
3262
3485
  readonly characterTemplateId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3263
3486
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3487
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3264
3488
  }, undefined>, undefined>;
3265
3489
  }, undefined>;
3266
3490
  export declare const vV1GetCharacterTemplateResponse: v.ObjectSchema<{
@@ -5012,6 +5236,7 @@ export declare const vCharacterServiceCreateCharacterData: v.ObjectSchema<{
5012
5236
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
5013
5237
  readonly characterTemplateId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5014
5238
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5239
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5015
5240
  }, undefined>;
5016
5241
  readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
5017
5242
  readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
@@ -5169,6 +5394,7 @@ export declare const vCharacterServiceGetCharacterResponse: v.ObjectSchema<{
5169
5394
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
5170
5395
  readonly characterTemplateId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5171
5396
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5397
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5172
5398
  }, undefined>, undefined>;
5173
5399
  }, undefined>;
5174
5400
  export declare const vCharacterServiceUpdateCharacterData: v.ObjectSchema<{
@@ -5223,6 +5449,7 @@ export declare const vCharacterServiceUpdateCharacterData: v.ObjectSchema<{
5223
5449
  readonly assetGroupIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
5224
5450
  readonly encoderStartFrame: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
5225
5451
  readonly language: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5452
+ readonly clarityLevel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5226
5453
  }, undefined>;
5227
5454
  readonly path: v.ObjectSchema<{
5228
5455
  readonly id: v.StringSchema<undefined>;
@@ -6284,6 +6511,257 @@ export declare const vInstanceManagementServiceListContainerImageTags2Response:
6284
6511
  readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6285
6512
  }, undefined>, undefined>;
6286
6513
  }, undefined>;
6514
+ export declare const vGpuTaskServiceListGpuTasksData: v.ObjectSchema<{
6515
+ readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6516
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6517
+ readonly query: v.OptionalSchema<v.ObjectSchema<{
6518
+ readonly 'pagination.pageSize': v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6519
+ readonly 'pagination.pageToken': v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6520
+ readonly taskTypes: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>, undefined>;
6521
+ readonly statuses: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>, undefined>;
6522
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6523
+ readonly search: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6524
+ readonly 'timeRange.start': v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6525
+ readonly 'timeRange.end': v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6526
+ }, undefined>, undefined>;
6527
+ }, undefined>;
6528
+
6529
+ export declare const vGpuTaskServiceListGpuTasksResponse: v.ObjectSchema<{
6530
+ readonly gpuTasks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6531
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6532
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6533
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6534
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6535
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6536
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6537
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
6538
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6539
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6540
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6541
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6542
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6543
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6544
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6545
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6546
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6547
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6548
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6549
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6550
+ }, undefined>, undefined>, undefined>;
6551
+ readonly pagination: v.OptionalSchema<v.ObjectSchema<{
6552
+ readonly nextPageToken: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6553
+ readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6554
+ }, undefined>, undefined>;
6555
+ }, undefined>;
6556
+ export declare const vGpuTaskServiceCreateGpuTaskData: v.ObjectSchema<{
6557
+ readonly body: v.ObjectSchema<{
6558
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6559
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6560
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6561
+ }, undefined>;
6562
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6563
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6564
+ }, undefined>;
6565
+
6566
+ export declare const vGpuTaskServiceCreateGpuTaskResponse: v.ObjectSchema<{
6567
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
6568
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6569
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6570
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6571
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6572
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6573
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6574
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
6575
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6576
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6577
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6578
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6579
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6580
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6581
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6582
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6583
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6584
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6585
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6586
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6587
+ }, undefined>, undefined>;
6588
+ }, undefined>;
6589
+ export declare const vGpuTaskCallbackServiceReportHeartbeatData: v.ObjectSchema<{
6590
+ readonly body: v.ObjectSchema<{
6591
+ readonly taskId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6592
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6593
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6594
+ readonly stage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6595
+ }, undefined>;
6596
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6597
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6598
+ }, undefined>;
6599
+
6600
+ export declare const vGpuTaskCallbackServiceReportHeartbeatResponse: v.ObjectSchema<{
6601
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6602
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6603
+ }, undefined>;
6604
+ export declare const vGpuTaskCallbackServiceUploadResultsData: v.ObjectSchema<{
6605
+ readonly body: v.ObjectSchema<{
6606
+ readonly taskId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6607
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6608
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6609
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6610
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6611
+ }, undefined>;
6612
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6613
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6614
+ }, undefined>;
6615
+
6616
+ export declare const vGpuTaskCallbackServiceUploadResultsResponse: v.ObjectSchema<{
6617
+ readonly success: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6618
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6619
+ }, undefined>;
6620
+ export declare const vGpuTaskServiceGetGpuTaskStatsData: v.ObjectSchema<{
6621
+ readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6622
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6623
+ readonly query: v.OptionalSchema<v.ObjectSchema<{
6624
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6625
+ }, undefined>, undefined>;
6626
+ }, undefined>;
6627
+
6628
+ export declare const vGpuTaskServiceGetGpuTaskStatsResponse: v.ObjectSchema<{
6629
+ readonly stats: v.OptionalSchema<v.ObjectSchema<{
6630
+ readonly total: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6631
+ readonly pending: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6632
+ readonly running: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6633
+ readonly completed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6634
+ readonly failed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6635
+ readonly byType: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>, undefined>;
6636
+ }, undefined>, undefined>;
6637
+ }, undefined>;
6638
+ export declare const vGpuTaskServiceListOssVideosData: v.ObjectSchema<{
6639
+ readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6640
+ readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6641
+ readonly query: v.OptionalSchema<v.ObjectSchema<{
6642
+ readonly 'pagination.pageSize': v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6643
+ readonly 'pagination.pageToken': v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6644
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6645
+ readonly ossKeyPrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6646
+ }, undefined>, undefined>;
6647
+ }, undefined>;
6648
+
6649
+ export declare const vGpuTaskServiceListOssVideosResponse: v.ObjectSchema<{
6650
+ readonly videos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6651
+ readonly ossKey: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6652
+ readonly sizeBytes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>, v.BigintSchema<undefined>], undefined>, v.TransformAction<string | number | bigint, bigint>, v.MinValueAction<bigint, bigint, "Invalid value: Expected int64 to be >= -2^63">, v.MaxValueAction<bigint, bigint, "Invalid value: Expected int64 to be <= 2^63-1">]>, undefined>;
6653
+ readonly lastModified: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6654
+ }, undefined>, undefined>, undefined>;
6655
+ readonly pagination: v.OptionalSchema<v.ObjectSchema<{
6656
+ readonly nextPageToken: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6657
+ readonly totalCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6658
+ }, undefined>, undefined>;
6659
+ }, undefined>;
6660
+ export declare const vGpuTaskServiceGetGpuTaskData: v.ObjectSchema<{
6661
+ readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6662
+ readonly path: v.ObjectSchema<{
6663
+ readonly id: v.StringSchema<undefined>;
6664
+ }, undefined>;
6665
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6666
+ }, undefined>;
6667
+
6668
+ export declare const vGpuTaskServiceGetGpuTaskResponse: v.ObjectSchema<{
6669
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
6670
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6671
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6672
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6673
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6674
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6675
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6676
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
6677
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6678
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6679
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6680
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6681
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6682
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6683
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6684
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6685
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6686
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6687
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6688
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6689
+ }, undefined>, undefined>;
6690
+ }, undefined>;
6691
+ export declare const vGpuTaskServiceCancelGpuTaskData: v.ObjectSchema<{
6692
+ readonly body: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
6693
+ readonly path: v.ObjectSchema<{
6694
+ readonly id: v.StringSchema<undefined>;
6695
+ }, undefined>;
6696
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6697
+ }, undefined>;
6698
+
6699
+ export declare const vGpuTaskServiceCancelGpuTaskResponse: v.ObjectSchema<{
6700
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
6701
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6702
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6703
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6704
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6705
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6706
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6707
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
6708
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6709
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6710
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6711
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6712
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6713
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6714
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6715
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6716
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6717
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6718
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6719
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6720
+ }, undefined>, undefined>;
6721
+ }, undefined>;
6722
+ export declare const vGpuTaskServiceGetGpuTaskLogsData: v.ObjectSchema<{
6723
+ readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6724
+ readonly path: v.ObjectSchema<{
6725
+ readonly id: v.StringSchema<undefined>;
6726
+ }, undefined>;
6727
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6728
+ }, undefined>;
6729
+
6730
+ export declare const vGpuTaskServiceGetGpuTaskLogsResponse: v.ObjectSchema<{
6731
+ readonly logs: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6732
+ readonly gongjiStatus: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6733
+ }, undefined>;
6734
+ export declare const vGpuTaskServiceRetryGpuTaskData: v.ObjectSchema<{
6735
+ readonly body: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
6736
+ readonly path: v.ObjectSchema<{
6737
+ readonly id: v.StringSchema<undefined>;
6738
+ }, undefined>;
6739
+ readonly query: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6740
+ }, undefined>;
6741
+
6742
+ export declare const vGpuTaskServiceRetryGpuTaskResponse: v.ObjectSchema<{
6743
+ readonly gpuTask: v.OptionalSchema<v.ObjectSchema<{
6744
+ readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6745
+ readonly taskType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_TYPE_UNSPECIFIED", "GPU_TASK_TYPE_VHAP", "GPU_TASK_TYPE_VIDEO_CLEAN"], undefined>, undefined>;
6746
+ readonly status: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_STATUS_UNSPECIFIED", "GPU_TASK_STATUS_PENDING", "GPU_TASK_STATUS_SUBMITTED", "GPU_TASK_STATUS_RUNNING", "GPU_TASK_STATUS_UPLOADING", "GPU_TASK_STATUS_COMPLETED", "GPU_TASK_STATUS_FAILED", "GPU_TASK_STATUS_CANCELLED"], undefined>, undefined>;
6747
+ readonly refId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6748
+ readonly inputConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6749
+ readonly outputResult: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
6750
+ readonly errorType: v.OptionalSchema<v.PicklistSchema<["GPU_TASK_ERROR_TYPE_UNSPECIFIED", "GPU_TASK_ERROR_TYPE_NONE", "GPU_TASK_ERROR_TYPE_NETWORK_ERROR", "GPU_TASK_ERROR_TYPE_PROCESSING_ERROR", "GPU_TASK_ERROR_TYPE_STORAGE_ERROR", "GPU_TASK_ERROR_TYPE_GPU_ERROR"], undefined>, undefined>;
6751
+ readonly errorMessage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6752
+ readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6753
+ readonly retryable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6754
+ readonly currentStage: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6755
+ readonly progressPercent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6756
+ readonly processingDuration: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6757
+ readonly gongjiTaskId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, -2147483648, "Invalid value: Expected int32 to be >= -2^31">, v.MaxValueAction<number, 2147483647, "Invalid value: Expected int32 to be <= 2^31-1">]>, undefined>;
6758
+ readonly gongjiInstanceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6759
+ readonly createdAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6760
+ readonly startedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6761
+ readonly completedAt: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6762
+ readonly lastHeartbeat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
6763
+ }, undefined>, undefined>;
6764
+ }, undefined>;
6287
6765
  export declare const vInstanceManagementServiceListInstances2Data: v.ObjectSchema<{
6288
6766
  readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
6289
6767
  readonly path: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;