@oqtopus-team/qdash-client 1.8.38 → 1.8.40
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/{api-CsT0Akde.d.ts → api-CO-2iFJk.d.ts} +11 -9
- package/dist/{chunk-TQSO7ABB.js → chunk-35HYOJHA.js} +46 -34
- package/dist/chunk-35HYOJHA.js.map +1 -0
- package/dist/generated/api.d.ts +2 -2
- package/dist/generated/api.js +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/models.d.ts +1 -1
- package/dist/{validateFileRequest-BDltMb3r.d.ts → validateFileRequest-BXOhNEJT.d.ts} +721 -130
- package/package.json +1 -1
- package/dist/chunk-TQSO7ABB.js.map +0 -1
|
@@ -1223,6 +1223,58 @@ interface ApplyAgentCandidateRequest {
|
|
|
1223
1223
|
push_to_github?: boolean;
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Generated by orval v7.14.0 🍺
|
|
1228
|
+
* Do not edit manually.
|
|
1229
|
+
* QDash API
|
|
1230
|
+
* API for QDash
|
|
1231
|
+
* OpenAPI spec version: 0.0.1
|
|
1232
|
+
*/
|
|
1233
|
+
type ArtifactPreviewResponseTarget = string | null;
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* Generated by orval v7.14.0 🍺
|
|
1237
|
+
* Do not edit manually.
|
|
1238
|
+
* QDash API
|
|
1239
|
+
* API for QDash
|
|
1240
|
+
* OpenAPI spec version: 0.0.1
|
|
1241
|
+
*/
|
|
1242
|
+
type ArtifactPreviewResponseSourceType = string | null;
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* Generated by orval v7.14.0 🍺
|
|
1246
|
+
* Do not edit manually.
|
|
1247
|
+
* QDash API
|
|
1248
|
+
* API for QDash
|
|
1249
|
+
* OpenAPI spec version: 0.0.1
|
|
1250
|
+
*/
|
|
1251
|
+
type ArtifactPreviewResponseRowsItem = {
|
|
1252
|
+
[key: string]: number | number | string | boolean | null;
|
|
1253
|
+
};
|
|
1254
|
+
|
|
1255
|
+
/**
|
|
1256
|
+
* Generated by orval v7.14.0 🍺
|
|
1257
|
+
* Do not edit manually.
|
|
1258
|
+
* QDash API
|
|
1259
|
+
* API for QDash
|
|
1260
|
+
* OpenAPI spec version: 0.0.1
|
|
1261
|
+
*/
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Tabular preview of a NetCDF calibration artifact.
|
|
1265
|
+
*/
|
|
1266
|
+
interface ArtifactPreviewResponse {
|
|
1267
|
+
filename: string;
|
|
1268
|
+
target?: ArtifactPreviewResponseTarget;
|
|
1269
|
+
source_type?: ArtifactPreviewResponseSourceType;
|
|
1270
|
+
shape: number[];
|
|
1271
|
+
dtype: string;
|
|
1272
|
+
columns: string[];
|
|
1273
|
+
rows: ArtifactPreviewResponseRowsItem[];
|
|
1274
|
+
total_rows: number;
|
|
1275
|
+
truncated: boolean;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1226
1278
|
/**
|
|
1227
1279
|
* Generated by orval v7.14.0 🍺
|
|
1228
1280
|
* Do not edit manually.
|
|
@@ -3445,6 +3497,32 @@ interface DeviceTopologyRequest {
|
|
|
3445
3497
|
condition?: Condition;
|
|
3446
3498
|
}
|
|
3447
3499
|
|
|
3500
|
+
/**
|
|
3501
|
+
* Generated by orval v7.14.0 🍺
|
|
3502
|
+
* Do not edit manually.
|
|
3503
|
+
* QDash API
|
|
3504
|
+
* API for QDash
|
|
3505
|
+
* OpenAPI spec version: 0.0.1
|
|
3506
|
+
*/
|
|
3507
|
+
type DownloadArtifactByPathParams = {
|
|
3508
|
+
path: string;
|
|
3509
|
+
};
|
|
3510
|
+
|
|
3511
|
+
/**
|
|
3512
|
+
* Generated by orval v7.14.0 🍺
|
|
3513
|
+
* Do not edit manually.
|
|
3514
|
+
* QDash API
|
|
3515
|
+
* API for QDash
|
|
3516
|
+
* OpenAPI spec version: 0.0.1
|
|
3517
|
+
*/
|
|
3518
|
+
type DownloadArtifactsAsArchiveParams = {
|
|
3519
|
+
/**
|
|
3520
|
+
* @minItems 1
|
|
3521
|
+
* @maxItems 100
|
|
3522
|
+
*/
|
|
3523
|
+
paths: string[];
|
|
3524
|
+
};
|
|
3525
|
+
|
|
3448
3526
|
/**
|
|
3449
3527
|
* Generated by orval v7.14.0 🍺
|
|
3450
3528
|
* Do not edit manually.
|
|
@@ -3765,11 +3843,52 @@ interface ExecutionIdResponse {
|
|
|
3765
3843
|
* API for QDash
|
|
3766
3844
|
* OpenAPI spec version: 0.0.1
|
|
3767
3845
|
*/
|
|
3846
|
+
type ExecutionLockStatusResponseExecutionId = string | null;
|
|
3847
|
+
|
|
3848
|
+
/**
|
|
3849
|
+
* Generated by orval v7.14.0 🍺
|
|
3850
|
+
* Do not edit manually.
|
|
3851
|
+
* QDash API
|
|
3852
|
+
* API for QDash
|
|
3853
|
+
* OpenAPI spec version: 0.0.1
|
|
3854
|
+
*/
|
|
3855
|
+
type ExecutionLockStatusResponseChipId = string | null;
|
|
3856
|
+
|
|
3857
|
+
/**
|
|
3858
|
+
* Generated by orval v7.14.0 🍺
|
|
3859
|
+
* Do not edit manually.
|
|
3860
|
+
* QDash API
|
|
3861
|
+
* API for QDash
|
|
3862
|
+
* OpenAPI spec version: 0.0.1
|
|
3863
|
+
*/
|
|
3864
|
+
type ExecutionLockStatusResponseName = string | null;
|
|
3865
|
+
|
|
3866
|
+
/**
|
|
3867
|
+
* Generated by orval v7.14.0 🍺
|
|
3868
|
+
* Do not edit manually.
|
|
3869
|
+
* QDash API
|
|
3870
|
+
* API for QDash
|
|
3871
|
+
* OpenAPI spec version: 0.0.1
|
|
3872
|
+
*/
|
|
3873
|
+
type ExecutionLockStatusResponseStatus = string | null;
|
|
3874
|
+
|
|
3875
|
+
/**
|
|
3876
|
+
* Generated by orval v7.14.0 🍺
|
|
3877
|
+
* Do not edit manually.
|
|
3878
|
+
* QDash API
|
|
3879
|
+
* API for QDash
|
|
3880
|
+
* OpenAPI spec version: 0.0.1
|
|
3881
|
+
*/
|
|
3882
|
+
|
|
3768
3883
|
/**
|
|
3769
3884
|
* Response model for the fetch_execution_lock_status endpoint.
|
|
3770
3885
|
*/
|
|
3771
3886
|
interface ExecutionLockStatusResponse {
|
|
3772
3887
|
lock: boolean;
|
|
3888
|
+
execution_id?: ExecutionLockStatusResponseExecutionId;
|
|
3889
|
+
chip_id?: ExecutionLockStatusResponseChipId;
|
|
3890
|
+
name?: ExecutionLockStatusResponseName;
|
|
3891
|
+
status?: ExecutionLockStatusResponseStatus;
|
|
3773
3892
|
}
|
|
3774
3893
|
|
|
3775
3894
|
/**
|
|
@@ -3860,10 +3979,56 @@ type TaskMessage = string | null;
|
|
|
3860
3979
|
* API for QDash
|
|
3861
3980
|
* OpenAPI spec version: 0.0.1
|
|
3862
3981
|
*/
|
|
3863
|
-
type
|
|
3982
|
+
type TaskInputParametersAnyOfAnyOfSource = 'database' | null;
|
|
3983
|
+
|
|
3984
|
+
/**
|
|
3985
|
+
* Generated by orval v7.14.0 🍺
|
|
3986
|
+
* Do not edit manually.
|
|
3987
|
+
* QDash API
|
|
3988
|
+
* API for QDash
|
|
3989
|
+
* OpenAPI spec version: 0.0.1
|
|
3990
|
+
*/
|
|
3991
|
+
type TaskInputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
3992
|
+
|
|
3993
|
+
/**
|
|
3994
|
+
* Generated by orval v7.14.0 🍺
|
|
3995
|
+
* Do not edit manually.
|
|
3996
|
+
* QDash API
|
|
3997
|
+
* API for QDash
|
|
3998
|
+
* OpenAPI spec version: 0.0.1
|
|
3999
|
+
*/
|
|
4000
|
+
|
|
4001
|
+
/**
|
|
4002
|
+
* Input parameter persisted in task-result history.
|
|
4003
|
+
*/
|
|
4004
|
+
type TaskInputParametersAnyOfAnyOf = {
|
|
4005
|
+
parameter_name?: string;
|
|
4006
|
+
qid_role?: string;
|
|
4007
|
+
source?: TaskInputParametersAnyOfAnyOfSource;
|
|
4008
|
+
required?: boolean;
|
|
4009
|
+
value?: unknown;
|
|
4010
|
+
value_type?: string;
|
|
4011
|
+
error?: number;
|
|
4012
|
+
unit?: string;
|
|
4013
|
+
description?: string;
|
|
4014
|
+
calibrated_at?: TaskInputParametersAnyOfAnyOfCalibratedAt;
|
|
4015
|
+
execution_id?: string;
|
|
4016
|
+
task_id?: string;
|
|
3864
4017
|
[key: string]: unknown;
|
|
3865
4018
|
};
|
|
3866
4019
|
|
|
4020
|
+
/**
|
|
4021
|
+
* Generated by orval v7.14.0 🍺
|
|
4022
|
+
* Do not edit manually.
|
|
4023
|
+
* QDash API
|
|
4024
|
+
* API for QDash
|
|
4025
|
+
* OpenAPI spec version: 0.0.1
|
|
4026
|
+
*/
|
|
4027
|
+
|
|
4028
|
+
type TaskInputParametersAnyOf = {
|
|
4029
|
+
[key: string]: TaskInputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
4030
|
+
};
|
|
4031
|
+
|
|
3867
4032
|
/**
|
|
3868
4033
|
* Generated by orval v7.14.0 🍺
|
|
3869
4034
|
* Do not edit manually.
|
|
@@ -3881,10 +4046,58 @@ type TaskInputParameters = TaskInputParametersAnyOf | null;
|
|
|
3881
4046
|
* API for QDash
|
|
3882
4047
|
* OpenAPI spec version: 0.0.1
|
|
3883
4048
|
*/
|
|
3884
|
-
type
|
|
4049
|
+
type TaskOutputParametersAnyOfAnyOfSource = 'database' | null;
|
|
4050
|
+
|
|
4051
|
+
/**
|
|
4052
|
+
* Generated by orval v7.14.0 🍺
|
|
4053
|
+
* Do not edit manually.
|
|
4054
|
+
* QDash API
|
|
4055
|
+
* API for QDash
|
|
4056
|
+
* OpenAPI spec version: 0.0.1
|
|
4057
|
+
*/
|
|
4058
|
+
type TaskOutputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
4059
|
+
|
|
4060
|
+
/**
|
|
4061
|
+
* Generated by orval v7.14.0 🍺
|
|
4062
|
+
* Do not edit manually.
|
|
4063
|
+
* QDash API
|
|
4064
|
+
* API for QDash
|
|
4065
|
+
* OpenAPI spec version: 0.0.1
|
|
4066
|
+
*/
|
|
4067
|
+
|
|
4068
|
+
/**
|
|
4069
|
+
* Output parameter persisted in task-result history with DB comparison metadata.
|
|
4070
|
+
*/
|
|
4071
|
+
type TaskOutputParametersAnyOfAnyOf = {
|
|
4072
|
+
parameter_name?: string;
|
|
4073
|
+
qid_role?: string;
|
|
4074
|
+
source?: TaskOutputParametersAnyOfAnyOfSource;
|
|
4075
|
+
required?: boolean;
|
|
4076
|
+
value?: unknown;
|
|
4077
|
+
value_type?: string;
|
|
4078
|
+
error?: number;
|
|
4079
|
+
unit?: string;
|
|
4080
|
+
description?: string;
|
|
4081
|
+
calibrated_at?: TaskOutputParametersAnyOfAnyOfCalibratedAt;
|
|
4082
|
+
execution_id?: string;
|
|
4083
|
+
task_id?: string;
|
|
4084
|
+
previous_database_value?: unknown;
|
|
4085
|
+
database_updated?: boolean;
|
|
3885
4086
|
[key: string]: unknown;
|
|
3886
4087
|
};
|
|
3887
4088
|
|
|
4089
|
+
/**
|
|
4090
|
+
* Generated by orval v7.14.0 🍺
|
|
4091
|
+
* Do not edit manually.
|
|
4092
|
+
* QDash API
|
|
4093
|
+
* API for QDash
|
|
4094
|
+
* OpenAPI spec version: 0.0.1
|
|
4095
|
+
*/
|
|
4096
|
+
|
|
4097
|
+
type TaskOutputParametersAnyOf = {
|
|
4098
|
+
[key: string]: TaskOutputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
4099
|
+
};
|
|
4100
|
+
|
|
3888
4101
|
/**
|
|
3889
4102
|
* Generated by orval v7.14.0 🍺
|
|
3890
4103
|
* Do not edit manually.
|
|
@@ -4218,22 +4431,6 @@ interface FailureModeResponse {
|
|
|
4218
4431
|
next_action?: string;
|
|
4219
4432
|
}
|
|
4220
4433
|
|
|
4221
|
-
/**
|
|
4222
|
-
* Generated by orval v7.14.0 🍺
|
|
4223
|
-
* Do not edit manually.
|
|
4224
|
-
* QDash API
|
|
4225
|
-
* API for QDash
|
|
4226
|
-
* OpenAPI spec version: 0.0.1
|
|
4227
|
-
*/
|
|
4228
|
-
/**
|
|
4229
|
-
* File node type enum.
|
|
4230
|
-
*/
|
|
4231
|
-
type FileNodeType = typeof FileNodeType[keyof typeof FileNodeType];
|
|
4232
|
-
declare const FileNodeType: {
|
|
4233
|
-
readonly file: "file";
|
|
4234
|
-
readonly directory: "directory";
|
|
4235
|
-
};
|
|
4236
|
-
|
|
4237
4434
|
/**
|
|
4238
4435
|
* Generated by orval v7.14.0 🍺
|
|
4239
4436
|
* Do not edit manually.
|
|
@@ -5711,39 +5908,6 @@ type GetRecentExecutionsParams = {
|
|
|
5711
5908
|
limit?: number;
|
|
5712
5909
|
};
|
|
5713
5910
|
|
|
5714
|
-
/**
|
|
5715
|
-
* Generated by orval v7.14.0 🍺
|
|
5716
|
-
* Do not edit manually.
|
|
5717
|
-
* QDash API
|
|
5718
|
-
* API for QDash
|
|
5719
|
-
* OpenAPI spec version: 0.0.1
|
|
5720
|
-
*/
|
|
5721
|
-
type GetTaskFileContent200 = {
|
|
5722
|
-
[key: string]: unknown;
|
|
5723
|
-
};
|
|
5724
|
-
|
|
5725
|
-
/**
|
|
5726
|
-
* Generated by orval v7.14.0 🍺
|
|
5727
|
-
* Do not edit manually.
|
|
5728
|
-
* QDash API
|
|
5729
|
-
* API for QDash
|
|
5730
|
-
* OpenAPI spec version: 0.0.1
|
|
5731
|
-
*/
|
|
5732
|
-
type GetTaskFileContentParams = {
|
|
5733
|
-
path: string;
|
|
5734
|
-
};
|
|
5735
|
-
|
|
5736
|
-
/**
|
|
5737
|
-
* Generated by orval v7.14.0 🍺
|
|
5738
|
-
* Do not edit manually.
|
|
5739
|
-
* QDash API
|
|
5740
|
-
* API for QDash
|
|
5741
|
-
* OpenAPI spec version: 0.0.1
|
|
5742
|
-
*/
|
|
5743
|
-
type GetTaskFileTreeParams = {
|
|
5744
|
-
backend: string;
|
|
5745
|
-
};
|
|
5746
|
-
|
|
5747
5911
|
/**
|
|
5748
5912
|
* Generated by orval v7.14.0 🍺
|
|
5749
5913
|
* Do not edit manually.
|
|
@@ -6686,9 +6850,7 @@ type TaskResultMessage = string | null;
|
|
|
6686
6850
|
* API for QDash
|
|
6687
6851
|
* OpenAPI spec version: 0.0.1
|
|
6688
6852
|
*/
|
|
6689
|
-
type
|
|
6690
|
-
[key: string]: unknown;
|
|
6691
|
-
};
|
|
6853
|
+
type TaskResultInputParametersAnyOfAnyOfSource = 'database' | null;
|
|
6692
6854
|
|
|
6693
6855
|
/**
|
|
6694
6856
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6697,8 +6859,7 @@ type TaskResultInputParametersAnyOf = {
|
|
|
6697
6859
|
* API for QDash
|
|
6698
6860
|
* OpenAPI spec version: 0.0.1
|
|
6699
6861
|
*/
|
|
6700
|
-
|
|
6701
|
-
type TaskResultInputParameters = TaskResultInputParametersAnyOf | null;
|
|
6862
|
+
type TaskResultInputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
6702
6863
|
|
|
6703
6864
|
/**
|
|
6704
6865
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6707,7 +6868,23 @@ type TaskResultInputParameters = TaskResultInputParametersAnyOf | null;
|
|
|
6707
6868
|
* API for QDash
|
|
6708
6869
|
* OpenAPI spec version: 0.0.1
|
|
6709
6870
|
*/
|
|
6710
|
-
|
|
6871
|
+
|
|
6872
|
+
/**
|
|
6873
|
+
* Input parameter persisted in task-result history.
|
|
6874
|
+
*/
|
|
6875
|
+
type TaskResultInputParametersAnyOfAnyOf = {
|
|
6876
|
+
parameter_name?: string;
|
|
6877
|
+
qid_role?: string;
|
|
6878
|
+
source?: TaskResultInputParametersAnyOfAnyOfSource;
|
|
6879
|
+
required?: boolean;
|
|
6880
|
+
value?: unknown;
|
|
6881
|
+
value_type?: string;
|
|
6882
|
+
error?: number;
|
|
6883
|
+
unit?: string;
|
|
6884
|
+
description?: string;
|
|
6885
|
+
calibrated_at?: TaskResultInputParametersAnyOfAnyOfCalibratedAt;
|
|
6886
|
+
execution_id?: string;
|
|
6887
|
+
task_id?: string;
|
|
6711
6888
|
[key: string]: unknown;
|
|
6712
6889
|
};
|
|
6713
6890
|
|
|
@@ -6719,7 +6896,9 @@ type TaskResultOutputParametersAnyOf = {
|
|
|
6719
6896
|
* OpenAPI spec version: 0.0.1
|
|
6720
6897
|
*/
|
|
6721
6898
|
|
|
6722
|
-
type
|
|
6899
|
+
type TaskResultInputParametersAnyOf = {
|
|
6900
|
+
[key: string]: TaskResultInputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
6901
|
+
};
|
|
6723
6902
|
|
|
6724
6903
|
/**
|
|
6725
6904
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6728,7 +6907,8 @@ type TaskResultOutputParameters = TaskResultOutputParametersAnyOf | null;
|
|
|
6728
6907
|
* API for QDash
|
|
6729
6908
|
* OpenAPI spec version: 0.0.1
|
|
6730
6909
|
*/
|
|
6731
|
-
|
|
6910
|
+
|
|
6911
|
+
type TaskResultInputParameters = TaskResultInputParametersAnyOf | null;
|
|
6732
6912
|
|
|
6733
6913
|
/**
|
|
6734
6914
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6737,9 +6917,7 @@ type TaskResultOutputParameterNames = string[] | null;
|
|
|
6737
6917
|
* API for QDash
|
|
6738
6918
|
* OpenAPI spec version: 0.0.1
|
|
6739
6919
|
*/
|
|
6740
|
-
type
|
|
6741
|
-
[key: string]: unknown;
|
|
6742
|
-
};
|
|
6920
|
+
type TaskResultOutputParametersAnyOfAnyOfSource = 'database' | null;
|
|
6743
6921
|
|
|
6744
6922
|
/**
|
|
6745
6923
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6748,8 +6926,7 @@ type TaskResultRunParametersAnyOf = {
|
|
|
6748
6926
|
* API for QDash
|
|
6749
6927
|
* OpenAPI spec version: 0.0.1
|
|
6750
6928
|
*/
|
|
6751
|
-
|
|
6752
|
-
type TaskResultRunParameters = TaskResultRunParametersAnyOf | null;
|
|
6929
|
+
type TaskResultOutputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
6753
6930
|
|
|
6754
6931
|
/**
|
|
6755
6932
|
* Generated by orval v7.14.0 🍺
|
|
@@ -6758,7 +6935,25 @@ type TaskResultRunParameters = TaskResultRunParametersAnyOf | null;
|
|
|
6758
6935
|
* API for QDash
|
|
6759
6936
|
* OpenAPI spec version: 0.0.1
|
|
6760
6937
|
*/
|
|
6761
|
-
|
|
6938
|
+
|
|
6939
|
+
/**
|
|
6940
|
+
* Output parameter persisted in task-result history with DB comparison metadata.
|
|
6941
|
+
*/
|
|
6942
|
+
type TaskResultOutputParametersAnyOfAnyOf = {
|
|
6943
|
+
parameter_name?: string;
|
|
6944
|
+
qid_role?: string;
|
|
6945
|
+
source?: TaskResultOutputParametersAnyOfAnyOfSource;
|
|
6946
|
+
required?: boolean;
|
|
6947
|
+
value?: unknown;
|
|
6948
|
+
value_type?: string;
|
|
6949
|
+
error?: number;
|
|
6950
|
+
unit?: string;
|
|
6951
|
+
description?: string;
|
|
6952
|
+
calibrated_at?: TaskResultOutputParametersAnyOfAnyOfCalibratedAt;
|
|
6953
|
+
execution_id?: string;
|
|
6954
|
+
task_id?: string;
|
|
6955
|
+
previous_database_value?: unknown;
|
|
6956
|
+
database_updated?: boolean;
|
|
6762
6957
|
[key: string]: unknown;
|
|
6763
6958
|
};
|
|
6764
6959
|
|
|
@@ -6770,7 +6965,70 @@ type TaskResultNoteAnyOf = {
|
|
|
6770
6965
|
* OpenAPI spec version: 0.0.1
|
|
6771
6966
|
*/
|
|
6772
6967
|
|
|
6773
|
-
type
|
|
6968
|
+
type TaskResultOutputParametersAnyOf = {
|
|
6969
|
+
[key: string]: TaskResultOutputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
6970
|
+
};
|
|
6971
|
+
|
|
6972
|
+
/**
|
|
6973
|
+
* Generated by orval v7.14.0 🍺
|
|
6974
|
+
* Do not edit manually.
|
|
6975
|
+
* QDash API
|
|
6976
|
+
* API for QDash
|
|
6977
|
+
* OpenAPI spec version: 0.0.1
|
|
6978
|
+
*/
|
|
6979
|
+
|
|
6980
|
+
type TaskResultOutputParameters = TaskResultOutputParametersAnyOf | null;
|
|
6981
|
+
|
|
6982
|
+
/**
|
|
6983
|
+
* Generated by orval v7.14.0 🍺
|
|
6984
|
+
* Do not edit manually.
|
|
6985
|
+
* QDash API
|
|
6986
|
+
* API for QDash
|
|
6987
|
+
* OpenAPI spec version: 0.0.1
|
|
6988
|
+
*/
|
|
6989
|
+
type TaskResultOutputParameterNames = string[] | null;
|
|
6990
|
+
|
|
6991
|
+
/**
|
|
6992
|
+
* Generated by orval v7.14.0 🍺
|
|
6993
|
+
* Do not edit manually.
|
|
6994
|
+
* QDash API
|
|
6995
|
+
* API for QDash
|
|
6996
|
+
* OpenAPI spec version: 0.0.1
|
|
6997
|
+
*/
|
|
6998
|
+
type TaskResultRunParametersAnyOf = {
|
|
6999
|
+
[key: string]: unknown;
|
|
7000
|
+
};
|
|
7001
|
+
|
|
7002
|
+
/**
|
|
7003
|
+
* Generated by orval v7.14.0 🍺
|
|
7004
|
+
* Do not edit manually.
|
|
7005
|
+
* QDash API
|
|
7006
|
+
* API for QDash
|
|
7007
|
+
* OpenAPI spec version: 0.0.1
|
|
7008
|
+
*/
|
|
7009
|
+
|
|
7010
|
+
type TaskResultRunParameters = TaskResultRunParametersAnyOf | null;
|
|
7011
|
+
|
|
7012
|
+
/**
|
|
7013
|
+
* Generated by orval v7.14.0 🍺
|
|
7014
|
+
* Do not edit manually.
|
|
7015
|
+
* QDash API
|
|
7016
|
+
* API for QDash
|
|
7017
|
+
* OpenAPI spec version: 0.0.1
|
|
7018
|
+
*/
|
|
7019
|
+
type TaskResultNoteAnyOf = {
|
|
7020
|
+
[key: string]: unknown;
|
|
7021
|
+
};
|
|
7022
|
+
|
|
7023
|
+
/**
|
|
7024
|
+
* Generated by orval v7.14.0 🍺
|
|
7025
|
+
* Do not edit manually.
|
|
7026
|
+
* QDash API
|
|
7027
|
+
* API for QDash
|
|
7028
|
+
* OpenAPI spec version: 0.0.1
|
|
7029
|
+
*/
|
|
7030
|
+
|
|
7031
|
+
type TaskResultNote = TaskResultNoteAnyOf | null;
|
|
6774
7032
|
|
|
6775
7033
|
/**
|
|
6776
7034
|
* Generated by orval v7.14.0 🍺
|
|
@@ -7557,10 +7815,56 @@ type MuxTaskMessage = string | null;
|
|
|
7557
7815
|
* API for QDash
|
|
7558
7816
|
* OpenAPI spec version: 0.0.1
|
|
7559
7817
|
*/
|
|
7560
|
-
type
|
|
7818
|
+
type MuxTaskInputParametersAnyOfAnyOfSource = 'database' | null;
|
|
7819
|
+
|
|
7820
|
+
/**
|
|
7821
|
+
* Generated by orval v7.14.0 🍺
|
|
7822
|
+
* Do not edit manually.
|
|
7823
|
+
* QDash API
|
|
7824
|
+
* API for QDash
|
|
7825
|
+
* OpenAPI spec version: 0.0.1
|
|
7826
|
+
*/
|
|
7827
|
+
type MuxTaskInputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
7828
|
+
|
|
7829
|
+
/**
|
|
7830
|
+
* Generated by orval v7.14.0 🍺
|
|
7831
|
+
* Do not edit manually.
|
|
7832
|
+
* QDash API
|
|
7833
|
+
* API for QDash
|
|
7834
|
+
* OpenAPI spec version: 0.0.1
|
|
7835
|
+
*/
|
|
7836
|
+
|
|
7837
|
+
/**
|
|
7838
|
+
* Input parameter persisted in task-result history.
|
|
7839
|
+
*/
|
|
7840
|
+
type MuxTaskInputParametersAnyOfAnyOf = {
|
|
7841
|
+
parameter_name?: string;
|
|
7842
|
+
qid_role?: string;
|
|
7843
|
+
source?: MuxTaskInputParametersAnyOfAnyOfSource;
|
|
7844
|
+
required?: boolean;
|
|
7845
|
+
value?: unknown;
|
|
7846
|
+
value_type?: string;
|
|
7847
|
+
error?: number;
|
|
7848
|
+
unit?: string;
|
|
7849
|
+
description?: string;
|
|
7850
|
+
calibrated_at?: MuxTaskInputParametersAnyOfAnyOfCalibratedAt;
|
|
7851
|
+
execution_id?: string;
|
|
7852
|
+
task_id?: string;
|
|
7561
7853
|
[key: string]: unknown;
|
|
7562
7854
|
};
|
|
7563
7855
|
|
|
7856
|
+
/**
|
|
7857
|
+
* Generated by orval v7.14.0 🍺
|
|
7858
|
+
* Do not edit manually.
|
|
7859
|
+
* QDash API
|
|
7860
|
+
* API for QDash
|
|
7861
|
+
* OpenAPI spec version: 0.0.1
|
|
7862
|
+
*/
|
|
7863
|
+
|
|
7864
|
+
type MuxTaskInputParametersAnyOf = {
|
|
7865
|
+
[key: string]: MuxTaskInputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
7866
|
+
};
|
|
7867
|
+
|
|
7564
7868
|
/**
|
|
7565
7869
|
* Generated by orval v7.14.0 🍺
|
|
7566
7870
|
* Do not edit manually.
|
|
@@ -7578,10 +7882,58 @@ type MuxTaskInputParameters = MuxTaskInputParametersAnyOf | null;
|
|
|
7578
7882
|
* API for QDash
|
|
7579
7883
|
* OpenAPI spec version: 0.0.1
|
|
7580
7884
|
*/
|
|
7581
|
-
type
|
|
7885
|
+
type MuxTaskOutputParametersAnyOfAnyOfSource = 'database' | null;
|
|
7886
|
+
|
|
7887
|
+
/**
|
|
7888
|
+
* Generated by orval v7.14.0 🍺
|
|
7889
|
+
* Do not edit manually.
|
|
7890
|
+
* QDash API
|
|
7891
|
+
* API for QDash
|
|
7892
|
+
* OpenAPI spec version: 0.0.1
|
|
7893
|
+
*/
|
|
7894
|
+
type MuxTaskOutputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
7895
|
+
|
|
7896
|
+
/**
|
|
7897
|
+
* Generated by orval v7.14.0 🍺
|
|
7898
|
+
* Do not edit manually.
|
|
7899
|
+
* QDash API
|
|
7900
|
+
* API for QDash
|
|
7901
|
+
* OpenAPI spec version: 0.0.1
|
|
7902
|
+
*/
|
|
7903
|
+
|
|
7904
|
+
/**
|
|
7905
|
+
* Output parameter persisted in task-result history with DB comparison metadata.
|
|
7906
|
+
*/
|
|
7907
|
+
type MuxTaskOutputParametersAnyOfAnyOf = {
|
|
7908
|
+
parameter_name?: string;
|
|
7909
|
+
qid_role?: string;
|
|
7910
|
+
source?: MuxTaskOutputParametersAnyOfAnyOfSource;
|
|
7911
|
+
required?: boolean;
|
|
7912
|
+
value?: unknown;
|
|
7913
|
+
value_type?: string;
|
|
7914
|
+
error?: number;
|
|
7915
|
+
unit?: string;
|
|
7916
|
+
description?: string;
|
|
7917
|
+
calibrated_at?: MuxTaskOutputParametersAnyOfAnyOfCalibratedAt;
|
|
7918
|
+
execution_id?: string;
|
|
7919
|
+
task_id?: string;
|
|
7920
|
+
previous_database_value?: unknown;
|
|
7921
|
+
database_updated?: boolean;
|
|
7582
7922
|
[key: string]: unknown;
|
|
7583
7923
|
};
|
|
7584
7924
|
|
|
7925
|
+
/**
|
|
7926
|
+
* Generated by orval v7.14.0 🍺
|
|
7927
|
+
* Do not edit manually.
|
|
7928
|
+
* QDash API
|
|
7929
|
+
* API for QDash
|
|
7930
|
+
* OpenAPI spec version: 0.0.1
|
|
7931
|
+
*/
|
|
7932
|
+
|
|
7933
|
+
type MuxTaskOutputParametersAnyOf = {
|
|
7934
|
+
[key: string]: MuxTaskOutputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
7935
|
+
};
|
|
7936
|
+
|
|
7585
7937
|
/**
|
|
7586
7938
|
* Generated by orval v7.14.0 🍺
|
|
7587
7939
|
* Do not edit manually.
|
|
@@ -8122,6 +8474,32 @@ type TaskInfoDescription = string | null;
|
|
|
8122
8474
|
*/
|
|
8123
8475
|
type TaskInfoCategory = string | null;
|
|
8124
8476
|
|
|
8477
|
+
/**
|
|
8478
|
+
* Generated by orval v7.14.0 🍺
|
|
8479
|
+
* Do not edit manually.
|
|
8480
|
+
* QDash API
|
|
8481
|
+
* API for QDash
|
|
8482
|
+
* OpenAPI spec version: 0.0.1
|
|
8483
|
+
*/
|
|
8484
|
+
type TaskInfoInputParameters = {
|
|
8485
|
+
[key: string]: {
|
|
8486
|
+
[key: string]: unknown;
|
|
8487
|
+
};
|
|
8488
|
+
};
|
|
8489
|
+
|
|
8490
|
+
/**
|
|
8491
|
+
* Generated by orval v7.14.0 🍺
|
|
8492
|
+
* Do not edit manually.
|
|
8493
|
+
* QDash API
|
|
8494
|
+
* API for QDash
|
|
8495
|
+
* OpenAPI spec version: 0.0.1
|
|
8496
|
+
*/
|
|
8497
|
+
type TaskInfoRunParameters = {
|
|
8498
|
+
[key: string]: {
|
|
8499
|
+
[key: string]: unknown;
|
|
8500
|
+
};
|
|
8501
|
+
};
|
|
8502
|
+
|
|
8125
8503
|
/**
|
|
8126
8504
|
* Generated by orval v7.14.0 🍺
|
|
8127
8505
|
* Do not edit manually.
|
|
@@ -8141,6 +8519,8 @@ interface TaskInfo {
|
|
|
8141
8519
|
file_path: string;
|
|
8142
8520
|
category?: TaskInfoCategory;
|
|
8143
8521
|
enabled?: boolean;
|
|
8522
|
+
input_parameters?: TaskInfoInputParameters;
|
|
8523
|
+
run_parameters?: TaskInfoRunParameters;
|
|
8144
8524
|
}
|
|
8145
8525
|
|
|
8146
8526
|
/**
|
|
@@ -8815,10 +9195,56 @@ type MetricHistoryItemName = string | null;
|
|
|
8815
9195
|
* API for QDash
|
|
8816
9196
|
* OpenAPI spec version: 0.0.1
|
|
8817
9197
|
*/
|
|
8818
|
-
type
|
|
9198
|
+
type MetricHistoryItemInputParametersAnyOfAnyOfSource = 'database' | null;
|
|
9199
|
+
|
|
9200
|
+
/**
|
|
9201
|
+
* Generated by orval v7.14.0 🍺
|
|
9202
|
+
* Do not edit manually.
|
|
9203
|
+
* QDash API
|
|
9204
|
+
* API for QDash
|
|
9205
|
+
* OpenAPI spec version: 0.0.1
|
|
9206
|
+
*/
|
|
9207
|
+
type MetricHistoryItemInputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
9208
|
+
|
|
9209
|
+
/**
|
|
9210
|
+
* Generated by orval v7.14.0 🍺
|
|
9211
|
+
* Do not edit manually.
|
|
9212
|
+
* QDash API
|
|
9213
|
+
* API for QDash
|
|
9214
|
+
* OpenAPI spec version: 0.0.1
|
|
9215
|
+
*/
|
|
9216
|
+
|
|
9217
|
+
/**
|
|
9218
|
+
* Input parameter persisted in task-result history.
|
|
9219
|
+
*/
|
|
9220
|
+
type MetricHistoryItemInputParametersAnyOfAnyOf = {
|
|
9221
|
+
parameter_name?: string;
|
|
9222
|
+
qid_role?: string;
|
|
9223
|
+
source?: MetricHistoryItemInputParametersAnyOfAnyOfSource;
|
|
9224
|
+
required?: boolean;
|
|
9225
|
+
value?: unknown;
|
|
9226
|
+
value_type?: string;
|
|
9227
|
+
error?: number;
|
|
9228
|
+
unit?: string;
|
|
9229
|
+
description?: string;
|
|
9230
|
+
calibrated_at?: MetricHistoryItemInputParametersAnyOfAnyOfCalibratedAt;
|
|
9231
|
+
execution_id?: string;
|
|
9232
|
+
task_id?: string;
|
|
8819
9233
|
[key: string]: unknown;
|
|
8820
9234
|
};
|
|
8821
9235
|
|
|
9236
|
+
/**
|
|
9237
|
+
* Generated by orval v7.14.0 🍺
|
|
9238
|
+
* Do not edit manually.
|
|
9239
|
+
* QDash API
|
|
9240
|
+
* API for QDash
|
|
9241
|
+
* OpenAPI spec version: 0.0.1
|
|
9242
|
+
*/
|
|
9243
|
+
|
|
9244
|
+
type MetricHistoryItemInputParametersAnyOf = {
|
|
9245
|
+
[key: string]: MetricHistoryItemInputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
9246
|
+
};
|
|
9247
|
+
|
|
8822
9248
|
/**
|
|
8823
9249
|
* Generated by orval v7.14.0 🍺
|
|
8824
9250
|
* Do not edit manually.
|
|
@@ -8836,10 +9262,58 @@ type MetricHistoryItemInputParameters = MetricHistoryItemInputParametersAnyOf |
|
|
|
8836
9262
|
* API for QDash
|
|
8837
9263
|
* OpenAPI spec version: 0.0.1
|
|
8838
9264
|
*/
|
|
8839
|
-
type
|
|
9265
|
+
type MetricHistoryItemOutputParametersAnyOfAnyOfSource = 'database' | null;
|
|
9266
|
+
|
|
9267
|
+
/**
|
|
9268
|
+
* Generated by orval v7.14.0 🍺
|
|
9269
|
+
* Do not edit manually.
|
|
9270
|
+
* QDash API
|
|
9271
|
+
* API for QDash
|
|
9272
|
+
* OpenAPI spec version: 0.0.1
|
|
9273
|
+
*/
|
|
9274
|
+
type MetricHistoryItemOutputParametersAnyOfAnyOfCalibratedAt = string | null;
|
|
9275
|
+
|
|
9276
|
+
/**
|
|
9277
|
+
* Generated by orval v7.14.0 🍺
|
|
9278
|
+
* Do not edit manually.
|
|
9279
|
+
* QDash API
|
|
9280
|
+
* API for QDash
|
|
9281
|
+
* OpenAPI spec version: 0.0.1
|
|
9282
|
+
*/
|
|
9283
|
+
|
|
9284
|
+
/**
|
|
9285
|
+
* Output parameter persisted in task-result history with DB comparison metadata.
|
|
9286
|
+
*/
|
|
9287
|
+
type MetricHistoryItemOutputParametersAnyOfAnyOf = {
|
|
9288
|
+
parameter_name?: string;
|
|
9289
|
+
qid_role?: string;
|
|
9290
|
+
source?: MetricHistoryItemOutputParametersAnyOfAnyOfSource;
|
|
9291
|
+
required?: boolean;
|
|
9292
|
+
value?: unknown;
|
|
9293
|
+
value_type?: string;
|
|
9294
|
+
error?: number;
|
|
9295
|
+
unit?: string;
|
|
9296
|
+
description?: string;
|
|
9297
|
+
calibrated_at?: MetricHistoryItemOutputParametersAnyOfAnyOfCalibratedAt;
|
|
9298
|
+
execution_id?: string;
|
|
9299
|
+
task_id?: string;
|
|
9300
|
+
previous_database_value?: unknown;
|
|
9301
|
+
database_updated?: boolean;
|
|
8840
9302
|
[key: string]: unknown;
|
|
8841
9303
|
};
|
|
8842
9304
|
|
|
9305
|
+
/**
|
|
9306
|
+
* Generated by orval v7.14.0 🍺
|
|
9307
|
+
* Do not edit manually.
|
|
9308
|
+
* QDash API
|
|
9309
|
+
* API for QDash
|
|
9310
|
+
* OpenAPI spec version: 0.0.1
|
|
9311
|
+
*/
|
|
9312
|
+
|
|
9313
|
+
type MetricHistoryItemOutputParametersAnyOf = {
|
|
9314
|
+
[key: string]: MetricHistoryItemOutputParametersAnyOfAnyOf | string | number | boolean | unknown[] | null;
|
|
9315
|
+
};
|
|
9316
|
+
|
|
8843
9317
|
/**
|
|
8844
9318
|
* Generated by orval v7.14.0 🍺
|
|
8845
9319
|
* Do not edit manually.
|
|
@@ -9136,7 +9610,7 @@ interface ParameterHistoryResponse {
|
|
|
9136
9610
|
* API for QDash
|
|
9137
9611
|
* OpenAPI spec version: 0.0.1
|
|
9138
9612
|
*/
|
|
9139
|
-
type
|
|
9613
|
+
type ParameterModelSource = 'database' | null;
|
|
9140
9614
|
|
|
9141
9615
|
/**
|
|
9142
9616
|
* Generated by orval v7.14.0 🍺
|
|
@@ -9145,16 +9619,25 @@ type ParameterModelValue = number | number;
|
|
|
9145
9619
|
* API for QDash
|
|
9146
9620
|
* OpenAPI spec version: 0.0.1
|
|
9147
9621
|
*/
|
|
9622
|
+
type ParameterModelValue = number | number | null;
|
|
9148
9623
|
|
|
9149
9624
|
/**
|
|
9150
|
-
*
|
|
9625
|
+
* Generated by orval v7.14.0 🍺
|
|
9626
|
+
* Do not edit manually.
|
|
9627
|
+
* QDash API
|
|
9628
|
+
* API for QDash
|
|
9629
|
+
* OpenAPI spec version: 0.0.1
|
|
9630
|
+
*/
|
|
9151
9631
|
|
|
9152
|
-
|
|
9153
|
-
|
|
9632
|
+
/**
|
|
9633
|
+
* Common persisted metadata for resolved calibration parameters.
|
|
9154
9634
|
|
|
9155
9635
|
Attributes
|
|
9156
9636
|
----------
|
|
9157
9637
|
parameter_name: The actual DB parameter name. If empty, the dict key is used.
|
|
9638
|
+
source: Explicit source for dependency resolution. ``"database"`` declares
|
|
9639
|
+
that the value must be loaded from calibration state.
|
|
9640
|
+
required: Whether resolution must fail when the declared source has no value.
|
|
9158
9641
|
qid_role: The qid role for 2-qubit tasks. One of:
|
|
9159
9642
|
- "" or "self": Use task's qid as-is (default, for 1-qubit tasks)
|
|
9160
9643
|
- "control": Use control qubit's qid (for 2-qubit tasks)
|
|
@@ -9172,6 +9655,8 @@ Attributes
|
|
|
9172
9655
|
interface ParameterModel {
|
|
9173
9656
|
parameter_name?: string;
|
|
9174
9657
|
qid_role?: string;
|
|
9658
|
+
source?: ParameterModelSource;
|
|
9659
|
+
required?: boolean;
|
|
9175
9660
|
value?: ParameterModelValue;
|
|
9176
9661
|
value_type?: string;
|
|
9177
9662
|
error?: number;
|
|
@@ -9214,6 +9699,17 @@ interface PasswordReset {
|
|
|
9214
9699
|
new_password: string;
|
|
9215
9700
|
}
|
|
9216
9701
|
|
|
9702
|
+
/**
|
|
9703
|
+
* Generated by orval v7.14.0 🍺
|
|
9704
|
+
* Do not edit manually.
|
|
9705
|
+
* QDash API
|
|
9706
|
+
* API for QDash
|
|
9707
|
+
* OpenAPI spec version: 0.0.1
|
|
9708
|
+
*/
|
|
9709
|
+
type PreviewArtifactByPathParams = {
|
|
9710
|
+
path: string;
|
|
9711
|
+
};
|
|
9712
|
+
|
|
9217
9713
|
/**
|
|
9218
9714
|
* Generated by orval v7.14.0 🍺
|
|
9219
9715
|
* Do not edit manually.
|
|
@@ -9526,6 +10022,59 @@ interface QubitMetricHistoryResponse {
|
|
|
9526
10022
|
history: MetricHistoryItem[];
|
|
9527
10023
|
}
|
|
9528
10024
|
|
|
10025
|
+
/**
|
|
10026
|
+
* Generated by orval v7.14.0 🍺
|
|
10027
|
+
* Do not edit manually.
|
|
10028
|
+
* QDash API
|
|
10029
|
+
* API for QDash
|
|
10030
|
+
* OpenAPI spec version: 0.0.1
|
|
10031
|
+
*/
|
|
10032
|
+
type QuickRunTaskRequestBackendName = string | null;
|
|
10033
|
+
|
|
10034
|
+
/**
|
|
10035
|
+
* Generated by orval v7.14.0 🍺
|
|
10036
|
+
* Do not edit manually.
|
|
10037
|
+
* QDash API
|
|
10038
|
+
* API for QDash
|
|
10039
|
+
* OpenAPI spec version: 0.0.1
|
|
10040
|
+
*/
|
|
10041
|
+
type QuickRunTaskRequestInputParameterOverrides = {
|
|
10042
|
+
[key: string]: unknown;
|
|
10043
|
+
};
|
|
10044
|
+
|
|
10045
|
+
/**
|
|
10046
|
+
* Generated by orval v7.14.0 🍺
|
|
10047
|
+
* Do not edit manually.
|
|
10048
|
+
* QDash API
|
|
10049
|
+
* API for QDash
|
|
10050
|
+
* OpenAPI spec version: 0.0.1
|
|
10051
|
+
*/
|
|
10052
|
+
type QuickRunTaskRequestRunParameterOverrides = {
|
|
10053
|
+
[key: string]: unknown;
|
|
10054
|
+
};
|
|
10055
|
+
|
|
10056
|
+
/**
|
|
10057
|
+
* Generated by orval v7.14.0 🍺
|
|
10058
|
+
* Do not edit manually.
|
|
10059
|
+
* QDash API
|
|
10060
|
+
* API for QDash
|
|
10061
|
+
* OpenAPI spec version: 0.0.1
|
|
10062
|
+
*/
|
|
10063
|
+
|
|
10064
|
+
/**
|
|
10065
|
+
* Request to execute one task directly from the task catalog.
|
|
10066
|
+
*/
|
|
10067
|
+
interface QuickRunTaskRequest {
|
|
10068
|
+
chip_id: string;
|
|
10069
|
+
qid: string;
|
|
10070
|
+
backend_name?: QuickRunTaskRequestBackendName;
|
|
10071
|
+
input_parameter_overrides?: QuickRunTaskRequestInputParameterOverrides;
|
|
10072
|
+
run_parameter_overrides?: QuickRunTaskRequestRunParameterOverrides;
|
|
10073
|
+
reconfigure?: boolean;
|
|
10074
|
+
persist_output_parameters?: boolean;
|
|
10075
|
+
update_params?: boolean;
|
|
10076
|
+
}
|
|
10077
|
+
|
|
9529
10078
|
/**
|
|
9530
10079
|
* Generated by orval v7.14.0 🍺
|
|
9531
10080
|
* Do not edit manually.
|
|
@@ -10172,32 +10721,6 @@ interface SaveFlowResponse {
|
|
|
10172
10721
|
message: string;
|
|
10173
10722
|
}
|
|
10174
10723
|
|
|
10175
|
-
/**
|
|
10176
|
-
* Generated by orval v7.14.0 🍺
|
|
10177
|
-
* Do not edit manually.
|
|
10178
|
-
* QDash API
|
|
10179
|
-
* API for QDash
|
|
10180
|
-
* OpenAPI spec version: 0.0.1
|
|
10181
|
-
*/
|
|
10182
|
-
type SaveTaskFileContent200 = {
|
|
10183
|
-
[key: string]: string;
|
|
10184
|
-
};
|
|
10185
|
-
|
|
10186
|
-
/**
|
|
10187
|
-
* Generated by orval v7.14.0 🍺
|
|
10188
|
-
* Do not edit manually.
|
|
10189
|
-
* QDash API
|
|
10190
|
-
* API for QDash
|
|
10191
|
-
* OpenAPI spec version: 0.0.1
|
|
10192
|
-
*/
|
|
10193
|
-
/**
|
|
10194
|
-
* Request model for saving task file content.
|
|
10195
|
-
*/
|
|
10196
|
-
interface SaveTaskFileRequest {
|
|
10197
|
-
path: string;
|
|
10198
|
-
content: string;
|
|
10199
|
-
}
|
|
10200
|
-
|
|
10201
10724
|
/**
|
|
10202
10725
|
* Generated by orval v7.14.0 🍺
|
|
10203
10726
|
* Do not edit manually.
|
|
@@ -10645,34 +11168,6 @@ interface TaskFileSettings {
|
|
|
10645
11168
|
sort_order?: TaskFileSettingsSortOrder;
|
|
10646
11169
|
}
|
|
10647
11170
|
|
|
10648
|
-
/**
|
|
10649
|
-
* Generated by orval v7.14.0 🍺
|
|
10650
|
-
* Do not edit manually.
|
|
10651
|
-
* QDash API
|
|
10652
|
-
* API for QDash
|
|
10653
|
-
* OpenAPI spec version: 0.0.1
|
|
10654
|
-
*/
|
|
10655
|
-
|
|
10656
|
-
type TaskFileTreeNodeChildren = TaskFileTreeNode[] | null;
|
|
10657
|
-
|
|
10658
|
-
/**
|
|
10659
|
-
* Generated by orval v7.14.0 🍺
|
|
10660
|
-
* Do not edit manually.
|
|
10661
|
-
* QDash API
|
|
10662
|
-
* API for QDash
|
|
10663
|
-
* OpenAPI spec version: 0.0.1
|
|
10664
|
-
*/
|
|
10665
|
-
|
|
10666
|
-
/**
|
|
10667
|
-
* Task file tree node model.
|
|
10668
|
-
*/
|
|
10669
|
-
interface TaskFileTreeNode {
|
|
10670
|
-
name: string;
|
|
10671
|
-
path: string;
|
|
10672
|
-
type: FileNodeType;
|
|
10673
|
-
children?: TaskFileTreeNodeChildren;
|
|
10674
|
-
}
|
|
10675
|
-
|
|
10676
11171
|
/**
|
|
10677
11172
|
* Generated by orval v7.14.0 🍺
|
|
10678
11173
|
* Do not edit manually.
|
|
@@ -10916,7 +11411,100 @@ type TaskResultResponseUserId = string | null;
|
|
|
10916
11411
|
* API for QDash
|
|
10917
11412
|
* OpenAPI spec version: 0.0.1
|
|
10918
11413
|
*/
|
|
11414
|
+
type TaskResultResponseInputParametersAnyOfSource = 'database' | null;
|
|
11415
|
+
|
|
11416
|
+
/**
|
|
11417
|
+
* Generated by orval v7.14.0 🍺
|
|
11418
|
+
* Do not edit manually.
|
|
11419
|
+
* QDash API
|
|
11420
|
+
* API for QDash
|
|
11421
|
+
* OpenAPI spec version: 0.0.1
|
|
11422
|
+
*/
|
|
11423
|
+
type TaskResultResponseInputParametersAnyOfCalibratedAt = string | null;
|
|
11424
|
+
|
|
11425
|
+
/**
|
|
11426
|
+
* Generated by orval v7.14.0 🍺
|
|
11427
|
+
* Do not edit manually.
|
|
11428
|
+
* QDash API
|
|
11429
|
+
* API for QDash
|
|
11430
|
+
* OpenAPI spec version: 0.0.1
|
|
11431
|
+
*/
|
|
11432
|
+
|
|
11433
|
+
/**
|
|
11434
|
+
* Input parameter persisted in task-result history.
|
|
11435
|
+
*/
|
|
11436
|
+
type TaskResultResponseInputParametersAnyOf = {
|
|
11437
|
+
parameter_name?: string;
|
|
11438
|
+
qid_role?: string;
|
|
11439
|
+
source?: TaskResultResponseInputParametersAnyOfSource;
|
|
11440
|
+
required?: boolean;
|
|
11441
|
+
value?: unknown;
|
|
11442
|
+
value_type?: string;
|
|
11443
|
+
error?: number;
|
|
11444
|
+
unit?: string;
|
|
11445
|
+
description?: string;
|
|
11446
|
+
calibrated_at?: TaskResultResponseInputParametersAnyOfCalibratedAt;
|
|
11447
|
+
execution_id?: string;
|
|
11448
|
+
task_id?: string;
|
|
11449
|
+
[key: string]: unknown;
|
|
11450
|
+
};
|
|
11451
|
+
|
|
11452
|
+
/**
|
|
11453
|
+
* Generated by orval v7.14.0 🍺
|
|
11454
|
+
* Do not edit manually.
|
|
11455
|
+
* QDash API
|
|
11456
|
+
* API for QDash
|
|
11457
|
+
* OpenAPI spec version: 0.0.1
|
|
11458
|
+
*/
|
|
11459
|
+
|
|
10919
11460
|
type TaskResultResponseInputParameters = {
|
|
11461
|
+
[key: string]: TaskResultResponseInputParametersAnyOf | string | number | boolean | unknown[] | null;
|
|
11462
|
+
};
|
|
11463
|
+
|
|
11464
|
+
/**
|
|
11465
|
+
* Generated by orval v7.14.0 🍺
|
|
11466
|
+
* Do not edit manually.
|
|
11467
|
+
* QDash API
|
|
11468
|
+
* API for QDash
|
|
11469
|
+
* OpenAPI spec version: 0.0.1
|
|
11470
|
+
*/
|
|
11471
|
+
type TaskResultResponseOutputParametersAnyOfSource = 'database' | null;
|
|
11472
|
+
|
|
11473
|
+
/**
|
|
11474
|
+
* Generated by orval v7.14.0 🍺
|
|
11475
|
+
* Do not edit manually.
|
|
11476
|
+
* QDash API
|
|
11477
|
+
* API for QDash
|
|
11478
|
+
* OpenAPI spec version: 0.0.1
|
|
11479
|
+
*/
|
|
11480
|
+
type TaskResultResponseOutputParametersAnyOfCalibratedAt = string | null;
|
|
11481
|
+
|
|
11482
|
+
/**
|
|
11483
|
+
* Generated by orval v7.14.0 🍺
|
|
11484
|
+
* Do not edit manually.
|
|
11485
|
+
* QDash API
|
|
11486
|
+
* API for QDash
|
|
11487
|
+
* OpenAPI spec version: 0.0.1
|
|
11488
|
+
*/
|
|
11489
|
+
|
|
11490
|
+
/**
|
|
11491
|
+
* Output parameter persisted in task-result history with DB comparison metadata.
|
|
11492
|
+
*/
|
|
11493
|
+
type TaskResultResponseOutputParametersAnyOf = {
|
|
11494
|
+
parameter_name?: string;
|
|
11495
|
+
qid_role?: string;
|
|
11496
|
+
source?: TaskResultResponseOutputParametersAnyOfSource;
|
|
11497
|
+
required?: boolean;
|
|
11498
|
+
value?: unknown;
|
|
11499
|
+
value_type?: string;
|
|
11500
|
+
error?: number;
|
|
11501
|
+
unit?: string;
|
|
11502
|
+
description?: string;
|
|
11503
|
+
calibrated_at?: TaskResultResponseOutputParametersAnyOfCalibratedAt;
|
|
11504
|
+
execution_id?: string;
|
|
11505
|
+
task_id?: string;
|
|
11506
|
+
previous_database_value?: unknown;
|
|
11507
|
+
database_updated?: boolean;
|
|
10920
11508
|
[key: string]: unknown;
|
|
10921
11509
|
};
|
|
10922
11510
|
|
|
@@ -10927,8 +11515,9 @@ type TaskResultResponseInputParameters = {
|
|
|
10927
11515
|
* API for QDash
|
|
10928
11516
|
* OpenAPI spec version: 0.0.1
|
|
10929
11517
|
*/
|
|
11518
|
+
|
|
10930
11519
|
type TaskResultResponseOutputParameters = {
|
|
10931
|
-
[key: string]: unknown;
|
|
11520
|
+
[key: string]: TaskResultResponseOutputParametersAnyOf | string | number | boolean | unknown[] | null;
|
|
10932
11521
|
};
|
|
10933
11522
|
|
|
10934
11523
|
/**
|
|
@@ -11000,6 +11589,7 @@ Attributes
|
|
|
11000
11589
|
username (str): Username snapshot of the user who executed the task.
|
|
11001
11590
|
figure_path (list[str]): List of figure paths.
|
|
11002
11591
|
json_figure_path (list[str]): List of JSON figure paths.
|
|
11592
|
+
raw_data_path (list[str]): List of raw data artifact paths.
|
|
11003
11593
|
input_parameters (dict): Input parameters.
|
|
11004
11594
|
output_parameters (dict): Output parameters.
|
|
11005
11595
|
start_at (datetime | None): Start time.
|
|
@@ -11020,6 +11610,7 @@ interface TaskResultResponse {
|
|
|
11020
11610
|
username?: string;
|
|
11021
11611
|
figure_path: string[];
|
|
11022
11612
|
json_figure_path: string[];
|
|
11613
|
+
raw_data_path: string[];
|
|
11023
11614
|
input_parameters: TaskResultResponseInputParameters;
|
|
11024
11615
|
output_parameters: TaskResultResponseOutputParameters;
|
|
11025
11616
|
run_parameters?: TaskResultResponseRunParameters;
|
|
@@ -11914,4 +12505,4 @@ interface ValidateFileRequest {
|
|
|
11914
12505
|
file_type: string;
|
|
11915
12506
|
}
|
|
11916
12507
|
|
|
11917
|
-
export { type AgentActionResponseExecutionId as $, type AgentSessionPolicy as A, type ForumPostResponse as B, type ChipResponse as C, type ForumPostUpdate as D, type ExecuteFlowResponse as E, type FileTreeNode as F, type GetFlowResponse as G, type ForumImageUploadResponse as H, type LineageResponse as I, type ImpactResponse as J, type ProvenanceStatsResponse as K, type ListChipsResponse as L, type ExecutionLockStatusResponse as M, type ExecutionComparisonResponse as N, type DegradationTrendsResponse as O, type ProjectResponse as P, type QubitResponse as Q, type RecentChangesResponse as R, type SaveFlowRequest as S, type TimeSeriesData as T, type RecalibrationRecommendationResponse as U, type ActivityResponse as V, type ActivityResponseEndedAt as W, type ActivityResponseStartedAt as X, type AddMemberRequest as Y, type AdminDeleteProject200 as Z, AgentActionDecision as _, type ChipMetricsResponse as a, type BulkAiReviewRequestTaskIds as a$, type AgentActionResponseOperationId as a0, type AgentActionResponseParameterOverrides as a1, type AgentActionResponseTaskName as a2, type AgentCampaignCommitResponseAfterSnapshot as a3, type AgentCampaignCommitResponseBeforeSnapshot as a4, type AgentCampaignCommitResponseCommittedAt as a5, type AgentCandidateCommitResponseAfterSnapshot as a6, type AgentCandidateCommitResponseAfterSnapshotAnyOf as a7, type AgentCandidateCommitResponseBackendAppliedAt as a8, type AgentCandidateCommitResponseBackendBaseGitCommit as a9, type AiReviewRunSummaryCompletedAt as aA, type AiReviewRunSummaryDecisionCounts as aB, type AiReviewRunSummaryRequestedAt as aC, type AiReviewRunSummaryStatusCounts as aD, type AllConfigResponse as aE, type AllConfigResponseCopilot as aF, type AllConfigResponseMetrics as aG, type AnalysisResponse as aH, type AnalyzeRequest as aI, type AnalyzeRequestConversationHistoryItem as aJ, type AnalyzeRequestImageBase64 as aK, type AnalyzeRequestModelOverride as aL, type ApplyAgentCandidateRequest as aM, type BackendConfigResponse as aN, type BackendConfigResponseBackends as aO, type BackendConfigResponseCategories as aP, type BackendDefinitionResponse as aQ, type BackendResponseModel as aR, type BodyBulkImportUsers as aS, type BodyLogin as aT, type BodyReExecuteTaskResult as aU, type BodyReExecuteTaskResultParameterOverrides as aV, type BodyReExecuteTaskResultParameterOverridesAnyOf as aW, type BodyUploadForumImage as aX, type BulkAiReviewRequest as aY, type BulkAiReviewRequestDate as aZ, type BulkAiReviewRequestModelOverride as a_, type AgentCandidateCommitResponseBackendGitCommit as aa, type AgentCandidateCommitResponseBackendOperationId as ab, type AgentCandidateCommitResponseBackendRequestedAt as ac, type AgentCandidateCommitResponseBeforeSnapshot as ad, type AgentCandidateCommitResponseBeforeSnapshotAnyOf as ae, type AgentCandidateCommitResponseCommittedAt as af, type AgentCandidateResponseMaximum as ag, type AgentCandidateResponseMinimum as ah, type AgentCandidateResponseQualityMetrics as ai, type AgentSessionPolicyAllowedOverrides as aj, type AgentSessionPolicyQualityGates as ak, AgentSessionStatus as al, type AiReviewListItem as am, type AiReviewListItemCompletedAt as an, type AiReviewListItemNoteUpdatedAt as ao, type AiReviewListItemRequestedAt as ap, type AiReviewListItemStartAt as aq, type AiReviewListResponse as ar, type AiReviewListResponseDecisionCounts as as, type AiReviewListResponseStatusCounts as at, type AiReviewModel as au, type AiReviewModelCompletedAt as av, type AiReviewModelRequestedAt as aw, type AiReviewRunDetailResponse as ax, type AiReviewRunListResponse as ay, type AiReviewRunSummary as az, type ListQubitsResponse as b, type CouplingResponseMetricNotes as b$, type BulkAiReviewResponse as b0, type BulkAiReviewResponseDate as b1, type BulkAiReviewResponseSkippedReason as b2, type BulkUserImportResponse as b3, type BulkUserImportResult as b4, type BulkUserImportResultDisplayName as b5, type BulkUserImportResultInitialPassword as b6, type BulkUserImportResultMessage as b7, type BulkUserImportResultOrganization as b8, type CalibrationNoteResponse as b9, type CooldownCreateRequest as bA, type CooldownCreateRequestEndedAt as bB, type CooldownResponse as bC, type CooldownResponseEndedAt as bD, type CooldownResponseWiringBlocksItem as bE, type CooldownUpdateRequest as bF, type CooldownUpdateRequestDescription as bG, type CooldownUpdateRequestEndedAt as bH, type CooldownUpdateRequestStartedAt as bI, type CooldownUpdateRequestWiringBlocks as bJ, type CooldownUpdateRequestWiringBlocksAnyOfItem as bK, type CooldownUpdateRequestWiringInfo as bL, type CooldownWiringCheckpointRequest as bM, type CooldownWiringEventResponse as bN, type CooldownWiringEventResponseActorUserId as bO, type CopilotChatMessageSchema as bP, type CopilotChatMessageSchemaAttachedImage as bQ, type CopilotChatMessageSchemaCreatedAt as bR, type CopilotChatSessionResponse as bS, type CopilotChatSessionResponseContext as bT, type CopilotChatSessionResponseContextAnyOf as bU, type CopilotChatSessionSummary as bV, type CopilotChatSessionSummaryContext as bW, type CopilotChatSessionSummaryContextAnyOf as bX, type Coupling as bY, type CouplingGateDuration as bZ, type CouplingResponseData as b_, type CalibrationNoteResponseNote as ba, type CalibrationNoteResponseTimestamp as bb, type CancelExecutionResponse as bc, type CandidateGateResponseMaximum as bd, type CandidateGateResponseMinimum as be, type ChangePassword200 as bf, type ChipDatesResponse as bg, type ChipDeletionImpactResponse as bh, type ChipMetricsResponseCouplingMetrics as bi, type ChipMetricsResponseEndAt as bj, type ChipMetricsResponseQubitMetrics as bk, type ChipMetricsResponseStartAt as bl, type ChipMetricsResponseWithinHours as bm, type ChipNotesSummaryResponse as bn, ChipResponseActivityStatus as bo, type ChipResponseCurrentCooldownId as bp, type ChipResponseInstalledAt as bq, type ChipResponseTopologyId as br, type CommitAgentCampaignRequest as bs, type CommitAgentCandidateRequest as bt, type CompareExecutionsParams as bu, type CompareSeedValues200 as bv, type CompareSeedValuesParams as bw, type Condition as bx, type ConditionCrDirection as by, type ConfigReloadResponse as bz, type ListCouplingsResponse as c, type ExecutionResponseSummaryEndAt as c$, type CreateAgentSessionRequest as c0, type CreateChipRequest as c1, type CreateChipRequestTopologyId as c2, type CreateCopilotChatSessionRequest as c3, type CreateCopilotChatSessionRequestContext as c4, type CreateCopilotChatSessionRequestContextAnyOf as c5, type CreateCouplingNoteCommentParams as c6, type CreateQubitNoteCommentParams as c7, type CryostatCreateRequest as c8, type CryostatCreateRequestCommissionedAt as c9, type DeleteFlow200 as cA, type DeleteQubitMetricNoteParams as cB, type DeleteQubitNoteCommentParams as cC, type DeleteQubitNoteParams as cD, type DeleteScheduleResponse as cE, type DeleteUser200 as cF, type Device as cG, type DeviceCalibratedAt as cH, type DeviceTopologyRequest as cI, type DownloadFiguresAsZipRequest as cJ, type DownloadFileParams as cK, type DownloadMetricsPdfParams as cL, DownloadMetricsPdfSelectionMode as cM, type DownloadZipFileParams as cN, type EvaluateCandidateGateRequest as cO, type ExecuteAgentActionRequest as cP, type ExecuteFlowRequest as cQ, type ExecuteFlowRequestParameters as cR, type ExecutionIdResponse as cS, type ExecutionIdResponseValidFrom as cT, type ExecutionResponseDetailElapsedTime as cU, type ExecutionResponseDetailEndAt as cV, type ExecutionResponseDetailNote as cW, type ExecutionResponseDetailStartAt as cX, type ExecutionResponseDetailUserId as cY, type ExecutionResponseSummary as cZ, type ExecutionResponseSummaryElapsedTime as c_, type CryostatResponse as ca, type CryostatResponseCommissionedAt as cb, type CryostatResponseDecommissionedAt as cc, type CryostatUpdateRequest as cd, type CryostatUpdateRequestCommissionedAt as ce, type CryostatUpdateRequestDecommissionedAt as cf, type CryostatUpdateRequestLocation as cg, type CryostatUpdateRequestManufacturer as ch, type CryostatUpdateRequestModel as ci, type CryostatUpdateRequestName as cj, type CryostatUpdateRequestStatus as ck, type DashboardAiInsightsResponse as cl, type DashboardInsight as cm, DashboardInsightCategory as cn, DashboardInsightConfidence as co, DashboardInsightSeverity as cp, type DashboardInsightSuppressed as cq, type DegradationTrendResponse as cr, type DegradationTrendResponseCurrentValue as cs, type DegradationTrendResponseValidFrom as ct, type DeleteChipNoteParams as cu, type DeleteChipParams as cv, type DeleteCopilotChatSession200 as cw, type DeleteCouplingMetricNoteParams as cx, type DeleteCouplingNoteCommentParams as cy, type DeleteCouplingNoteParams as cz, type CouplingResponse as d, type GetDashboardAiInsightsParams as d$, type ExecutionResponseSummaryNote as d0, type ExecutionResponseSummaryStartAt as d1, type ExecutionResponseSummaryUserId as d2, type ExpectedResultResponse as d3, type FailureModeResponse as d4, type FidelityCondition as d5, type FidelityConditionMetric as d6, FileNodeType as d7, type FileTreeNodeChildren as d8, type FlowScheduleSummary as d9, type ForumPostResponseChipId as dA, type ForumPostResponseContentBlocksItem as dB, type ForumPostResponseCooldownId as dC, type ForumPostResponseNumber as dD, type ForumPostResponseParentId as dE, ForumPostResponseStatus as dF, type ForumPostResponseTargetId as dG, type ForumPostResponseTargetType as dH, type ForumPostResponseTitle as dI, type ForumPostResponseUserId as dJ, type ForumPostUpdateAssigneeUsername as dK, type ForumPostUpdateCategory as dL, type ForumPostUpdateChipId as dM, type ForumPostUpdateContentBlocksItem as dN, type ForumPostUpdateCooldownId as dO, type ForumPostUpdateLabels as dP, type ForumPostUpdateStatus as dQ, type ForumPostUpdateTargetId as dR, type ForumPostUpdateTargetType as dS, type ForumPostUpdateTitle as dT, type GetChipMetricsParams as dU, GetChipMetricsSelectionMode as dV, type GetChipNoteParams as dW, type GetChipNotesSummaryParams as dX, type GetCopilotConfig200 as dY, type GetCouplingMetricHistoryParams as dZ, type GetCouplingTaskHistoryParams as d_, type FlowScheduleSummaryCron as da, type FlowScheduleSummaryNextRun as db, type FlowSummary as dc, type ForumCategoryCreate as dd, type ForumCategoryCreateKey as de, type ForumCategoryCreateSortOrder as df, type ForumCategoryResponse as dg, type ForumCategoryUpdate as dh, type ForumCategoryUpdateColor as di, type ForumCategoryUpdateDescription as dj, type ForumCategoryUpdateIcon as dk, type ForumCategoryUpdateIsArchived as dl, type ForumCategoryUpdateName as dm, type ForumCategoryUpdateSortOrder as dn, type ForumPostCreateAssigneeUsername as dp, type ForumPostCreateChipId as dq, type ForumPostCreateContentBlocksItem as dr, type ForumPostCreateCooldownId as ds, type ForumPostCreateParentId as dt, ForumPostCreateStatus as du, type ForumPostCreateTargetId as dv, type ForumPostCreateTargetType as dw, type ForumPostCreateTitle as dx, type ForumPostResponseAssigneeUsername as dy, type ForumPostResponseAvatarKey as dz, type TaskResultListResponse as e, type IssueUpdate as e$, type GetDegradationTrendsParams as e0, type GetFigureByPathParams as e1, type GetFileContent200 as e2, type GetFileContentParams as e3, type GetFlowResponseDefaultParameters as e4, type GetFlowResponseDefaultRunParameters as e5, type GetForumPostRepliesParams as e6, type GetGitStatus200 as e7, type GetHistoricalCouplingTaskResultsParams as e8, type GetHistoricalQubitTaskResultsParams as e9, type IssueKnowledgeResponse as eA, type IssueKnowledgeResponsePrUrl as eB, type IssueKnowledgeResponseReviewedBy as eC, type IssueKnowledgeResponseReviewedByUserId as eD, type IssueKnowledgeUpdate as eE, type IssueKnowledgeUpdateApplicability as eF, type IssueKnowledgeUpdateBoundaryCriteria as eG, type IssueKnowledgeUpdateCaseType as eH, type IssueKnowledgeUpdateCounterexample as eI, type IssueKnowledgeUpdateFailureModeLabels as eJ, type IssueKnowledgeUpdateHumanLabel as eK, type IssueKnowledgeUpdateHumanReviewDecision as eL, type IssueKnowledgeUpdateLessonLearned as eM, type IssueKnowledgeUpdateModelErrorType as eN, type IssueKnowledgeUpdateModelPrediction as eO, type IssueKnowledgeUpdatePromptGuidance as eP, type IssueKnowledgeUpdateResolution as eQ, type IssueKnowledgeUpdateResolutionLabel as eR, type IssueKnowledgeUpdateRootCause as eS, type IssueKnowledgeUpdateSeverity as eT, type IssueKnowledgeUpdateSymptom as eU, type IssueKnowledgeUpdateTitle as eV, type IssueResponse as eW, type IssueResponseAvatarKey as eX, type IssueResponseParentId as eY, type IssueResponseTitle as eZ, type IssueResponseUserId as e_, type GetLatestCouplingTaskResultsParams as ea, type GetLatestQubitTaskResultsParams as eb, type GetMetricsConfig200 as ec, type GetParameterHistoryParams as ed, type GetProvenanceImpactParams as ee, type GetProvenanceLineageParams as ef, type GetQubitMetricHistoryParams as eg, type GetQubitTaskHistoryParams as eh, type GetRecalibrationRecommendationsParams as ei, type GetRecentChangesParams as ej, type GetRecentExecutionsParams as ek, type GetTaskFileContent200 as el, type GetTaskFileContentParams as em, type GetTaskFileTreeParams as en, type GetTaskKnowledgeParams as eo, type GetTimeseriesTaskResultsParams as ep, type GetTopologyById200 as eq, type GitPullConfig200 as er, type GitPushConfig200 as es, type GitPushRequest as et, type InputParameterModel as eu, type InputParameterModelValue as ev, type InputParameterModelValueAnyOfItem as ew, type IssueCreate as ex, type IssueCreateParentId as ey, type IssueCreateTitle as ez, type TaskResultResponse as f, type MarkAllNotificationsRead200 as f$, type IssueUpdateTitle as f0, type KnowledgeCaseResponse as f1, type KnowledgeImageResponse as f2, type LatestTaskResultResponse as f3, type LatestTaskResultResponseResult as f4, type LineageEdgeResponse as f5, type LineageNodeResponse as f6, type LineageNodeResponseActivity as f7, type LineageNodeResponseEntity as f8, type LineageNodeResponseLatestVersion as f9, type ListIssuesParams as fA, type ListIssuesResponse as fB, type ListMuxResponse as fC, type ListMuxResponseMuxes as fD, type ListNoteEventsResponse as fE, type ListNotificationsParams as fF, type ListNotificationsResponse as fG, type ListTagResponse as fH, type ListTargetNoteEventsParams as fI, type ListTaskFileBackendsResponse as fJ, type ListTaskInfoParams as fK, type ListTaskInfoResponse as fL, type ListTaskKnowledgeResponseCategories as fM, type ListTaskResultAiReviewRunsParams as fN, type ListTaskResultAiReviewsParams as fO, type ListTaskResultsParams as fP, type ListTasksParams as fQ, type ListTopologies200 as fR, type ListTopologiesParams as fS, type Logout200 as fT, type ManualEditItem as fU, type ManualEditItemValue as fV, type ManualEditsResponse as fW, type ManualParameterUpdateRequest as fX, type ManualParameterUpdateRequestParameters as fY, type ManualParameterUpdateResponse as fZ, type ManualParameterUpdateResponseProvenanceActivityId as f_, type ListAgentActionsResponse as fa, type ListAgentCandidatesResponse as fb, type ListAllFlowSchedulesParams as fc, type ListAllProjectsParams as fd, type ListAllUsersParams as fe, type ListBackendsResponse as ff, type ListChipCouplingsParams as fg, type ListChipNoteEventsParams as fh, type ListChipQubitsParams as fi, type ListCooldownWiringEventsParams as fj, type ListCooldownWiringEventsResponse as fk, type ListCooldownsParams as fl, type ListCooldownsResponse as fm, type ListCopilotChatSessionsResponse as fn, type ListCryostatsResponse as fo, type ListExecutionsParams as fp, type ListExecutionsResponseLimit as fq, type ListExecutionsResponseSkip as fr, type ListExecutionsResponseTotal as fs, type ListFlowSchedulesParams as ft, type ListFlowSchedulesResponse as fu, type ListForumCategoriesParams as fv, type ListForumCategoriesResponse as fw, type ListForumPostsParams as fx, type ListIssueKnowledgeParams as fy, type ListIssueKnowledgeResponse as fz, type ListTaskResponse as g, type MuxTaskTaskId as g$, type MeasError as g0, type MemberInvite as g1, type MemberItem as g2, type MemberItemAvatarKey as g3, type MemberItemDisplayName as g4, type MemberItemOrganization as g5, type MemberResponse as g6, type MemberResponseAvatarKey as g7, type MemberResponseDisplayName as g8, type MemberResponseInvitedBy as g9, type ModelConfig as gA, type ModelConfigApiKeyEnv as gB, type ModelConfigBaseUrl as gC, type ModelConfigKeepAlive as gD, type ModelConfigNumCtx as gE, type ModelConfigReasoningEffort as gF, type ModelConfigTemperature as gG, type ModelConfigTopK as gH, type ModelConfigTopP as gI, type MuxDetailResponse as gJ, type MuxDetailResponseDetail as gK, type MuxTask as gL, type MuxTaskElapsedTime as gM, type MuxTaskEndAt as gN, type MuxTaskFigurePath as gO, type MuxTaskInputParameters as gP, type MuxTaskInputParametersAnyOf as gQ, type MuxTaskJsonFigurePath as gR, type MuxTaskMessage as gS, type MuxTaskNote as gT, type MuxTaskNoteAnyOf as gU, type MuxTaskOutputParameterNames as gV, type MuxTaskOutputParameters as gW, type MuxTaskOutputParametersAnyOf as gX, type MuxTaskQid as gY, type MuxTaskRawDataPath as gZ, type MuxTaskStartAt as g_, type MemberResponseInvitedByUserId as ga, type MemberResponseLastAccessedAt as gb, type MemberResponseOrganization as gc, type MemberUpdate as gd, type MetricHeatmapResponse as ge, type MetricHeatmapResponseUnit as gf, type MetricHeatmapResponseValues as gg, type MetricHistoryItem as gh, type MetricHistoryItemCalibratedAt as gi, type MetricHistoryItemExcludedAt as gj, type MetricHistoryItemExcludedBy as gk, type MetricHistoryItemExcludedByUserId as gl, type MetricHistoryItemInputParameters as gm, type MetricHistoryItemInputParametersAnyOf as gn, type MetricHistoryItemName as go, type MetricHistoryItemOutputParameters as gp, type MetricHistoryItemOutputParametersAnyOf as gq, type MetricHistoryItemTaskId as gr, type MetricHistoryItemValue as gs, type MetricValue as gt, type MetricValueExecutionId as gu, type MetricValueStddev as gv, type MetricValueTaskId as gw, type MetricValueValue as gx, type MetricsSummaryResponse as gy, type MetricsSummaryResponseAverages as gz, type ListTaskKnowledgeResponse as h, type ReExecuteRequest as h$, type MuxTaskTaskType as h0, type MuxTaskUpstreamId as h1, type NoteCommentModel as h2, type NoteCommentModelUpdatedAt as h3, type NoteCommentRequest as h4, type NoteEventResponse as h5, type NoteEventResponseActorUserId as h6, type NoteEventResponseExtra as h7, type NoteModel as h8, type NoteModelUpdatedAt as h9, type ParameterVersionResponseValidUntil as hA, type ParameterVersionResponseValue as hB, type PasswordChange as hC, type PasswordReset as hD, type Position as hE, type ProjectCreate as hF, type ProjectCreateDescription as hG, type ProjectListItem as hH, type ProjectListItemCreatedAt as hI, type ProjectListItemDescription as hJ, type ProjectResponseDescription as hK, ProjectRole as hL, type ProjectUpdate as hM, type ProjectUpdateDefaultRole as hN, type ProjectUpdateDescription as hO, type ProjectUpdateName as hP, type ProjectUpdateTags as hQ, type ProvenanceStatsResponseRelationCounts as hR, type QdashApiSchemasAdminMemberListResponse as hS, type QdashApiSchemasAdminProjectListResponse as hT, type QdashApiSchemasProjectMemberListResponse as hU, type Qubit as hV, type QubitGateDuration as hW, type QubitLifetime as hX, type QubitMetricHistoryResponse as hY, type QubitResponseData as hZ, type QubitResponseMetricNotes as h_, type NoteUpsertRequest as ha, type NotificationResponse as hb, type NotificationResponseActorUserId as hc, type NotificationResponseReadAt as hd, type NotificationResponseRecipientUserId as he, type NumericBounds as hf, type NumericBoundsMaximum as hg, type NumericBoundsMinimum as hh, type OutputParameterInfoResponse as hi, type ParameterChangeResponse as hj, type ParameterChangeResponseDelta as hk, type ParameterChangeResponseDeltaPercent as hl, type ParameterChangeResponsePreviousError as hm, type ParameterChangeResponsePreviousValue as hn, type ParameterChangeResponseValidFrom as ho, type ParameterChangeResponseValue as hp, type ParameterDiffResponse as hq, type ParameterDiffResponseDelta as hr, type ParameterDiffResponseDeltaPercent as hs, type ParameterDiffResponseValueAfter as ht, type ParameterDiffResponseValueBefore as hu, type ParameterHistoryResponse as hv, type ParameterModel as hw, type ParameterModelValue as hx, type ParameterVersionResponse as hy, type ParameterVersionResponseValidFrom as hz, type TaskKnowledgeResponse as i, type SuccessResponse as i$, type ReExecuteRequestParameterOverrides as i0, type ReExecutionEntry as i1, type ReExecutionEntryStartAt as i2, type ReanalyzeOutputParameter as i3, type ReanalyzeQubitSpectroscopyParams as i4, type ReanalyzeQubitSpectroscopyParamsBinarizeThresholdSigmaMinus as i5, type ReanalyzeQubitSpectroscopyParamsBinarizeThresholdSigmaPlus as i6, type ReanalyzeQubitSpectroscopyParamsF01HeightMin as i7, type ReanalyzeQubitSpectroscopyParamsF12DistanceMax as i8, type ReanalyzeQubitSpectroscopyParamsF12DistanceMin as i9, type SaveFlowRequestDefaultRunParameters as iA, type SaveFlowRequestFlowFunctionName as iB, type SaveTaskFileContent200 as iC, type SaveTaskFileRequest as iD, type ScheduleFlowRequest as iE, type ScheduleFlowRequestCron as iF, type ScheduleFlowRequestParameters as iG, type ScheduleFlowRequestScheduledTime as iH, type ScheduleFlowResponse as iI, type ScheduleFlowResponseCron as iJ, type ScheduleFlowResponseNextRun as iK, type SearchNoteEventsParams as iL, type SeedImportRequest as iM, type SeedImportRequestManualData as iN, type SeedImportRequestManualDataAnyOf as iO, type SeedImportRequestParameters as iP, type SeedImportRequestQids as iQ, type SeedImportResponse as iR, type SeedImportResponseProvenanceActivityId as iS, type SeedImportResultItem as iT, type SeedImportResultItemMessage as iU, type SeedImportResultItemValue as iV, SeedImportSource as iW, type SettingsResponse as iX, type SubmitAgentActionRequest as iY, type SubmitAgentActionRequestParameterOverrides as iZ, type SubmitAgentActionRequestTaskName as i_, type ReanalyzeQubitSpectroscopyParamsF12HeightMin as ia, type ReanalyzeQubitSpectroscopyParamsRetryWithTrim as ib, type ReanalyzeQubitSpectroscopyParamsTopPower as ic, type ReanalyzeQubitSpectroscopyRequest as id, type ReanalyzeQubitSpectroscopyRequestSourceTaskId as ie, type ReanalyzeResonatorSpectroscopyParams as ig, type ReanalyzeResonatorSpectroscopyParamsBareShiftEstimatorType as ih, type ReanalyzeResonatorSpectroscopyParamsBareShiftStrengthLimit as ii, type ReanalyzeResonatorSpectroscopyParamsHighPowerMax as ij, type ReanalyzeResonatorSpectroscopyParamsHighPowerMin as ik, type ReanalyzeResonatorSpectroscopyParamsLowPower as il, type ReanalyzeResonatorSpectroscopyParamsNumResonators as im, type ReanalyzeResonatorSpectroscopyParamsResonatorAssignmentPattern as io, type ReanalyzeResonatorSpectroscopyRequest as ip, type ReanalyzeResonatorSpectroscopyRequestSourceTaskId as iq, type ReanalyzeResponse as ir, type ReanalyzeResponseFigure as is, type RecentExecutionsResponse as it, type RecommendedTaskResponse as iu, type RemoveProjectMemberAdmin200 as iv, type ResetPassword200 as iw, type SaveFileContent200 as ix, type SaveFileRequest as iy, type SaveFlowRequestDefaultParameters as iz, type QdashApiSchemasProjectProjectListResponse as j, type TaskResultOutputParameters as j$, SystemRole as j0, type Tag as j1, type TargetNoteEntry as j2, type TargetNoteEntryMetricNotes as j3, type Task as j4, type TaskElapsedTime as j5, type TaskEndAt as j6, type TaskFigurePath as j7, type TaskFileBackend as j8, type TaskFileSettings as j9, type TaskResponseInputParameters as jA, type TaskResponseOutputParameters as jB, type TaskResult as jC, type TaskResultAiReview as jD, type TaskResultElapsedTime as jE, type TaskResultEndAt as jF, type TaskResultExcludeRequest as jG, type TaskResultExcludeResponse as jH, type TaskResultExcludeResponseExcludedAt as jI, type TaskResultExcludeResponseExcludedBy as jJ, type TaskResultExcludeResponseExcludedByUserId as jK, type TaskResultExecutionId as jL, type TaskResultFigurePath as jM, type TaskResultInputParameters as jN, type TaskResultInputParametersAnyOf as jO, type TaskResultJsonFigurePath as jP, type TaskResultListItem as jQ, type TaskResultListItemElapsedTime as jR, type TaskResultListItemEndAt as jS, type TaskResultListItemSourceTaskId as jT, type TaskResultListItemStartAt as jU, type TaskResultListItemUserId as jV, type TaskResultListResponseStatusCounts as jW, type TaskResultMessage as jX, type TaskResultNote as jY, type TaskResultNoteAnyOf as jZ, type TaskResultOutputParameterNames as j_, type TaskFileSettingsDefaultBackend as ja, type TaskFileSettingsDefaultViewMode as jb, type TaskFileSettingsSortOrder as jc, type TaskFileTreeNode as jd, type TaskFileTreeNodeChildren as je, type TaskHistoryResponse as jf, type TaskHistoryResponseData as jg, type TaskInfo as jh, type TaskInfoCategory as ji, type TaskInfoDescription as jj, type TaskInfoTaskType as jk, type TaskInputParameters as jl, type TaskInputParametersAnyOf as jm, type TaskJsonFigurePath as jn, type TaskKnowledgeSummaryResponse as jo, type TaskMessage as jp, type TaskNote as jq, type TaskNoteAnyOf as jr, type TaskNoteEntry as js, type TaskOutputParameterNames as jt, type TaskOutputParameters as ju, type TaskOutputParametersAnyOf as jv, type TaskQid as jw, type TaskRawDataPath as jx, type TaskResponse as jy, type TaskResponseBackend as jz, type ListFlowsResponse as k, type UserCreateAvatarKey as k$, type TaskResultOutputParametersAnyOf as k0, type TaskResultQid as k1, type TaskResultRawDataPath as k2, type TaskResultResponseElapsedTime as k3, type TaskResultResponseEndAt as k4, type TaskResultResponseInputParameters as k5, type TaskResultResponseOutputParameters as k6, type TaskResultResponseRunParameters as k7, type TaskResultResponseSourceTaskId as k8, type TaskResultResponseStartAt as k9, type UpdateChipRequestTopologyId as kA, type UpdateCopilotChatSessionRequest as kB, type UpdateCopilotChatSessionRequestContext as kC, type UpdateCopilotChatSessionRequestContextAnyOf as kD, type UpdateCopilotChatSessionRequestMessages as kE, type UpdateCopilotChatSessionRequestTitle as kF, type UpdateCouplingNoteCommentParams as kG, type UpdateQubitNoteCommentParams as kH, type UpdateScheduleRequest as kI, type UpdateScheduleRequestCron as kJ, type UpdateScheduleRequestParameters as kK, type UpdateScheduleRequestParametersAnyOf as kL, type UpdateScheduleResponse as kM, type UpdateUserRequest as kN, type UpdateUserRequestAvatarKey as kO, type UpdateUserRequestDisabled as kP, type UpdateUserRequestDisplayName as kQ, type UpdateUserRequestOrganization as kR, type UpdateUserRequestSystemRole as kS, type UpsertChipNoteParams as kT, type UpsertCouplingMetricNoteParams as kU, type UpsertCouplingNoteParams as kV, type UpsertQubitMetricNoteParams as kW, type UpsertQubitNoteParams as kX, type User as kY, type UserAvatarKey as kZ, type UserCreate as k_, type TaskResultResponseUserId as ka, type TaskResultRunParameters as kb, type TaskResultRunParametersAnyOf as kc, type TaskResultStartAt as kd, type TaskResultTaskId as ke, type TaskResultTaskType as kf, type TaskResultUpstreamId as kg, type TaskRunParameters as kh, type TaskRunParametersAnyOf as ki, type TaskStartAt as kj, type TaskTaskId as kk, type TaskTaskType as kl, type TaskUpstreamId as km, type TaskUserId as kn, type TimeSeriesDataData as ko, type TokenResponse as kp, type TokenResponseDefaultProjectId as kq, type UISettings as kr, type UITaskFilesSettings as ks, type UITaskFilesSettingsDefaultBackend as kt, type UITaskFilesSettingsDefaultViewMode as ku, type UITaskFilesSettingsSortOrder as kv, type UnreadNotificationCountResponse as kw, type UpdateChipRequest as kx, type UpdateChipRequestActivityStatus as ky, type UpdateChipRequestNote as kz, type FlowTemplate as l, type UserCreateDisplayName as l0, type UserCreateOrganization as l1, type UserCreatePassword as l2, type UserDefaultProjectId as l3, type UserDetailResponse as l4, type UserDetailResponseAvatarKey as l5, type UserDetailResponseCreatedAt as l6, type UserDetailResponseDefaultProjectId as l7, type UserDetailResponseDisplayName as l8, type UserDetailResponseOrganization as l9, type UserDetailResponseUpdatedAt as la, type UserDisabled as lb, type UserDisplayName as lc, type UserListItem as ld, type UserListItemAvatarKey as le, type UserListItemDefaultProjectId as lf, type UserListItemDisplayName as lg, type UserListItemOrganization as lh, type UserListResponse as li, type UserOrganization as lj, type UserProfileUpdate as lk, type UserProfileUpdateAvatarKey as ll, type UserProfileUpdateDisplayName as lm, type UserWithToken as ln, type UserWithTokenAvatarKey as lo, type UserWithTokenDefaultProjectId as lp, type UserWithTokenDisabled as lq, type UserWithTokenDisplayName as lr, type UserWithTokenInitialPassword as ls, type UserWithTokenOrganization as lt, type ValidateFileContent200 as lu, type ValidateFileRequest as lv, type FlowTemplateWithCode as m, type SaveFlowResponse as n, type ListExecutionsResponse as o, type ExecutionResponseDetail as p, type AgentSessionResponse as q, type CandidateGateResponse as r, AgentActionType as s, type AgentActionResponse as t, type AgentCandidateResponse as u, type AgentCandidateCommitResponse as v, type AgentCampaignCandidateReference as w, type AgentCampaignCommitResponse as x, type ListForumPostsResponse as y, type ForumPostCreate as z };
|
|
12508
|
+
export { type AgentActionResponseExecutionId as $, type AgentSessionPolicy as A, type ForumPostResponse as B, type ChipResponse as C, type ForumPostUpdate as D, type ExecuteFlowResponse as E, type FileTreeNode as F, type GetFlowResponse as G, type ForumImageUploadResponse as H, type LineageResponse as I, type ImpactResponse as J, type ProvenanceStatsResponse as K, type ListChipsResponse as L, type ExecutionLockStatusResponse as M, type ExecutionComparisonResponse as N, type DegradationTrendsResponse as O, type ProjectResponse as P, type QubitResponse as Q, type RecentChangesResponse as R, type SaveFlowRequest as S, type TimeSeriesData as T, type RecalibrationRecommendationResponse as U, type ActivityResponse as V, type ActivityResponseEndedAt as W, type ActivityResponseStartedAt as X, type AddMemberRequest as Y, type AdminDeleteProject200 as Z, AgentActionDecision as _, type ChipMetricsResponse as a, type BodyUploadForumImage as a$, type AgentActionResponseOperationId as a0, type AgentActionResponseParameterOverrides as a1, type AgentActionResponseTaskName as a2, type AgentCampaignCommitResponseAfterSnapshot as a3, type AgentCampaignCommitResponseBeforeSnapshot as a4, type AgentCampaignCommitResponseCommittedAt as a5, type AgentCandidateCommitResponseAfterSnapshot as a6, type AgentCandidateCommitResponseAfterSnapshotAnyOf as a7, type AgentCandidateCommitResponseBackendAppliedAt as a8, type AgentCandidateCommitResponseBackendBaseGitCommit as a9, type AiReviewRunSummaryCompletedAt as aA, type AiReviewRunSummaryDecisionCounts as aB, type AiReviewRunSummaryRequestedAt as aC, type AiReviewRunSummaryStatusCounts as aD, type AllConfigResponse as aE, type AllConfigResponseCopilot as aF, type AllConfigResponseMetrics as aG, type AnalysisResponse as aH, type AnalyzeRequest as aI, type AnalyzeRequestConversationHistoryItem as aJ, type AnalyzeRequestImageBase64 as aK, type AnalyzeRequestModelOverride as aL, type ApplyAgentCandidateRequest as aM, type ArtifactPreviewResponse as aN, type ArtifactPreviewResponseRowsItem as aO, type ArtifactPreviewResponseSourceType as aP, type ArtifactPreviewResponseTarget as aQ, type BackendConfigResponse as aR, type BackendConfigResponseBackends as aS, type BackendConfigResponseCategories as aT, type BackendDefinitionResponse as aU, type BackendResponseModel as aV, type BodyBulkImportUsers as aW, type BodyLogin as aX, type BodyReExecuteTaskResult as aY, type BodyReExecuteTaskResultParameterOverrides as aZ, type BodyReExecuteTaskResultParameterOverridesAnyOf as a_, type AgentCandidateCommitResponseBackendGitCommit as aa, type AgentCandidateCommitResponseBackendOperationId as ab, type AgentCandidateCommitResponseBackendRequestedAt as ac, type AgentCandidateCommitResponseBeforeSnapshot as ad, type AgentCandidateCommitResponseBeforeSnapshotAnyOf as ae, type AgentCandidateCommitResponseCommittedAt as af, type AgentCandidateResponseMaximum as ag, type AgentCandidateResponseMinimum as ah, type AgentCandidateResponseQualityMetrics as ai, type AgentSessionPolicyAllowedOverrides as aj, type AgentSessionPolicyQualityGates as ak, AgentSessionStatus as al, type AiReviewListItem as am, type AiReviewListItemCompletedAt as an, type AiReviewListItemNoteUpdatedAt as ao, type AiReviewListItemRequestedAt as ap, type AiReviewListItemStartAt as aq, type AiReviewListResponse as ar, type AiReviewListResponseDecisionCounts as as, type AiReviewListResponseStatusCounts as at, type AiReviewModel as au, type AiReviewModelCompletedAt as av, type AiReviewModelRequestedAt as aw, type AiReviewRunDetailResponse as ax, type AiReviewRunListResponse as ay, type AiReviewRunSummary as az, type ListQubitsResponse as b, type CopilotChatSessionSummaryContextAnyOf as b$, type BulkAiReviewRequest as b0, type BulkAiReviewRequestDate as b1, type BulkAiReviewRequestModelOverride as b2, type BulkAiReviewRequestTaskIds as b3, type BulkAiReviewResponse as b4, type BulkAiReviewResponseDate as b5, type BulkAiReviewResponseSkippedReason as b6, type BulkUserImportResponse as b7, type BulkUserImportResult as b8, type BulkUserImportResultDisplayName as b9, type CompareSeedValuesParams as bA, type Condition as bB, type ConditionCrDirection as bC, type ConfigReloadResponse as bD, type CooldownCreateRequest as bE, type CooldownCreateRequestEndedAt as bF, type CooldownResponse as bG, type CooldownResponseEndedAt as bH, type CooldownResponseWiringBlocksItem as bI, type CooldownUpdateRequest as bJ, type CooldownUpdateRequestDescription as bK, type CooldownUpdateRequestEndedAt as bL, type CooldownUpdateRequestStartedAt as bM, type CooldownUpdateRequestWiringBlocks as bN, type CooldownUpdateRequestWiringBlocksAnyOfItem as bO, type CooldownUpdateRequestWiringInfo as bP, type CooldownWiringCheckpointRequest as bQ, type CooldownWiringEventResponse as bR, type CooldownWiringEventResponseActorUserId as bS, type CopilotChatMessageSchema as bT, type CopilotChatMessageSchemaAttachedImage as bU, type CopilotChatMessageSchemaCreatedAt as bV, type CopilotChatSessionResponse as bW, type CopilotChatSessionResponseContext as bX, type CopilotChatSessionResponseContextAnyOf as bY, type CopilotChatSessionSummary as bZ, type CopilotChatSessionSummaryContext as b_, type BulkUserImportResultInitialPassword as ba, type BulkUserImportResultMessage as bb, type BulkUserImportResultOrganization as bc, type CalibrationNoteResponse as bd, type CalibrationNoteResponseNote as be, type CalibrationNoteResponseTimestamp as bf, type CancelExecutionResponse as bg, type CandidateGateResponseMaximum as bh, type CandidateGateResponseMinimum as bi, type ChangePassword200 as bj, type ChipDatesResponse as bk, type ChipDeletionImpactResponse as bl, type ChipMetricsResponseCouplingMetrics as bm, type ChipMetricsResponseEndAt as bn, type ChipMetricsResponseQubitMetrics as bo, type ChipMetricsResponseStartAt as bp, type ChipMetricsResponseWithinHours as bq, type ChipNotesSummaryResponse as br, ChipResponseActivityStatus as bs, type ChipResponseCurrentCooldownId as bt, type ChipResponseInstalledAt as bu, type ChipResponseTopologyId as bv, type CommitAgentCampaignRequest as bw, type CommitAgentCandidateRequest as bx, type CompareExecutionsParams as by, type CompareSeedValues200 as bz, type ListCouplingsResponse as c, type ExecutionLockStatusResponseExecutionId as c$, type Coupling as c0, type CouplingGateDuration as c1, type CouplingResponseData as c2, type CouplingResponseMetricNotes as c3, type CreateAgentSessionRequest as c4, type CreateChipRequest as c5, type CreateChipRequestTopologyId as c6, type CreateCopilotChatSessionRequest as c7, type CreateCopilotChatSessionRequestContext as c8, type CreateCopilotChatSessionRequestContextAnyOf as c9, type DeleteCopilotChatSession200 as cA, type DeleteCouplingMetricNoteParams as cB, type DeleteCouplingNoteCommentParams as cC, type DeleteCouplingNoteParams as cD, type DeleteFlow200 as cE, type DeleteQubitMetricNoteParams as cF, type DeleteQubitNoteCommentParams as cG, type DeleteQubitNoteParams as cH, type DeleteScheduleResponse as cI, type DeleteUser200 as cJ, type Device as cK, type DeviceCalibratedAt as cL, type DeviceTopologyRequest as cM, type DownloadArtifactByPathParams as cN, type DownloadArtifactsAsArchiveParams as cO, type DownloadFiguresAsZipRequest as cP, type DownloadFileParams as cQ, type DownloadMetricsPdfParams as cR, DownloadMetricsPdfSelectionMode as cS, type DownloadZipFileParams as cT, type EvaluateCandidateGateRequest as cU, type ExecuteAgentActionRequest as cV, type ExecuteFlowRequest as cW, type ExecuteFlowRequestParameters as cX, type ExecutionIdResponse as cY, type ExecutionIdResponseValidFrom as cZ, type ExecutionLockStatusResponseChipId as c_, type CreateCouplingNoteCommentParams as ca, type CreateQubitNoteCommentParams as cb, type CryostatCreateRequest as cc, type CryostatCreateRequestCommissionedAt as cd, type CryostatResponse as ce, type CryostatResponseCommissionedAt as cf, type CryostatResponseDecommissionedAt as cg, type CryostatUpdateRequest as ch, type CryostatUpdateRequestCommissionedAt as ci, type CryostatUpdateRequestDecommissionedAt as cj, type CryostatUpdateRequestLocation as ck, type CryostatUpdateRequestManufacturer as cl, type CryostatUpdateRequestModel as cm, type CryostatUpdateRequestName as cn, type CryostatUpdateRequestStatus as co, type DashboardAiInsightsResponse as cp, type DashboardInsight as cq, DashboardInsightCategory as cr, DashboardInsightConfidence as cs, DashboardInsightSeverity as ct, type DashboardInsightSuppressed as cu, type DegradationTrendResponse as cv, type DegradationTrendResponseCurrentValue as cw, type DegradationTrendResponseValidFrom as cx, type DeleteChipNoteParams as cy, type DeleteChipParams as cz, type CouplingResponse as d, type ForumPostUpdateTargetType as d$, type ExecutionLockStatusResponseName as d0, type ExecutionLockStatusResponseStatus as d1, type ExecutionResponseDetailElapsedTime as d2, type ExecutionResponseDetailEndAt as d3, type ExecutionResponseDetailNote as d4, type ExecutionResponseDetailStartAt as d5, type ExecutionResponseDetailUserId as d6, type ExecutionResponseSummary as d7, type ExecutionResponseSummaryElapsedTime as d8, type ExecutionResponseSummaryEndAt as d9, type ForumPostCreateContentBlocksItem as dA, type ForumPostCreateCooldownId as dB, type ForumPostCreateParentId as dC, ForumPostCreateStatus as dD, type ForumPostCreateTargetId as dE, type ForumPostCreateTargetType as dF, type ForumPostCreateTitle as dG, type ForumPostResponseAssigneeUsername as dH, type ForumPostResponseAvatarKey as dI, type ForumPostResponseChipId as dJ, type ForumPostResponseContentBlocksItem as dK, type ForumPostResponseCooldownId as dL, type ForumPostResponseNumber as dM, type ForumPostResponseParentId as dN, ForumPostResponseStatus as dO, type ForumPostResponseTargetId as dP, type ForumPostResponseTargetType as dQ, type ForumPostResponseTitle as dR, type ForumPostResponseUserId as dS, type ForumPostUpdateAssigneeUsername as dT, type ForumPostUpdateCategory as dU, type ForumPostUpdateChipId as dV, type ForumPostUpdateContentBlocksItem as dW, type ForumPostUpdateCooldownId as dX, type ForumPostUpdateLabels as dY, type ForumPostUpdateStatus as dZ, type ForumPostUpdateTargetId as d_, type ExecutionResponseSummaryNote as da, type ExecutionResponseSummaryStartAt as db, type ExecutionResponseSummaryUserId as dc, type ExpectedResultResponse as dd, type FailureModeResponse as de, type FidelityCondition as df, type FidelityConditionMetric as dg, type FileTreeNodeChildren as dh, type FlowScheduleSummary as di, type FlowScheduleSummaryCron as dj, type FlowScheduleSummaryNextRun as dk, type FlowSummary as dl, type ForumCategoryCreate as dm, type ForumCategoryCreateKey as dn, type ForumCategoryCreateSortOrder as dp, type ForumCategoryResponse as dq, type ForumCategoryUpdate as dr, type ForumCategoryUpdateColor as ds, type ForumCategoryUpdateDescription as dt, type ForumCategoryUpdateIcon as du, type ForumCategoryUpdateIsArchived as dv, type ForumCategoryUpdateName as dw, type ForumCategoryUpdateSortOrder as dx, type ForumPostCreateAssigneeUsername as dy, type ForumPostCreateChipId as dz, type TaskResultListResponse as e, type IssueKnowledgeUpdateTitle as e$, type ForumPostUpdateTitle as e0, type GetChipMetricsParams as e1, GetChipMetricsSelectionMode as e2, type GetChipNoteParams as e3, type GetChipNotesSummaryParams as e4, type GetCopilotConfig200 as e5, type GetCouplingMetricHistoryParams as e6, type GetCouplingTaskHistoryParams as e7, type GetDashboardAiInsightsParams as e8, type GetDegradationTrendsParams as e9, type InputParameterModel as eA, type InputParameterModelValue as eB, type InputParameterModelValueAnyOfItem as eC, type IssueCreate as eD, type IssueCreateParentId as eE, type IssueCreateTitle as eF, type IssueKnowledgeResponse as eG, type IssueKnowledgeResponsePrUrl as eH, type IssueKnowledgeResponseReviewedBy as eI, type IssueKnowledgeResponseReviewedByUserId as eJ, type IssueKnowledgeUpdate as eK, type IssueKnowledgeUpdateApplicability as eL, type IssueKnowledgeUpdateBoundaryCriteria as eM, type IssueKnowledgeUpdateCaseType as eN, type IssueKnowledgeUpdateCounterexample as eO, type IssueKnowledgeUpdateFailureModeLabels as eP, type IssueKnowledgeUpdateHumanLabel as eQ, type IssueKnowledgeUpdateHumanReviewDecision as eR, type IssueKnowledgeUpdateLessonLearned as eS, type IssueKnowledgeUpdateModelErrorType as eT, type IssueKnowledgeUpdateModelPrediction as eU, type IssueKnowledgeUpdatePromptGuidance as eV, type IssueKnowledgeUpdateResolution as eW, type IssueKnowledgeUpdateResolutionLabel as eX, type IssueKnowledgeUpdateRootCause as eY, type IssueKnowledgeUpdateSeverity as eZ, type IssueKnowledgeUpdateSymptom as e_, type GetFigureByPathParams as ea, type GetFileContent200 as eb, type GetFileContentParams as ec, type GetFlowResponseDefaultParameters as ed, type GetFlowResponseDefaultRunParameters as ee, type GetForumPostRepliesParams as ef, type GetGitStatus200 as eg, type GetHistoricalCouplingTaskResultsParams as eh, type GetHistoricalQubitTaskResultsParams as ei, type GetLatestCouplingTaskResultsParams as ej, type GetLatestQubitTaskResultsParams as ek, type GetMetricsConfig200 as el, type GetParameterHistoryParams as em, type GetProvenanceImpactParams as en, type GetProvenanceLineageParams as eo, type GetQubitMetricHistoryParams as ep, type GetQubitTaskHistoryParams as eq, type GetRecalibrationRecommendationsParams as er, type GetRecentChangesParams as es, type GetRecentExecutionsParams as et, type GetTaskKnowledgeParams as eu, type GetTimeseriesTaskResultsParams as ev, type GetTopologyById200 as ew, type GitPullConfig200 as ex, type GitPushConfig200 as ey, type GitPushRequest as ez, type TaskResultResponse as f, type ManualEditItemValue as f$, type IssueResponse as f0, type IssueResponseAvatarKey as f1, type IssueResponseParentId as f2, type IssueResponseTitle as f3, type IssueResponseUserId as f4, type IssueUpdate as f5, type IssueUpdateTitle as f6, type KnowledgeCaseResponse as f7, type KnowledgeImageResponse as f8, type LatestTaskResultResponse as f9, type ListFlowSchedulesResponse as fA, type ListForumCategoriesParams as fB, type ListForumCategoriesResponse as fC, type ListForumPostsParams as fD, type ListIssueKnowledgeParams as fE, type ListIssueKnowledgeResponse as fF, type ListIssuesParams as fG, type ListIssuesResponse as fH, type ListMuxResponse as fI, type ListMuxResponseMuxes as fJ, type ListNoteEventsResponse as fK, type ListNotificationsParams as fL, type ListNotificationsResponse as fM, type ListTagResponse as fN, type ListTargetNoteEventsParams as fO, type ListTaskFileBackendsResponse as fP, type ListTaskInfoParams as fQ, type ListTaskInfoResponse as fR, type ListTaskKnowledgeResponseCategories as fS, type ListTaskResultAiReviewRunsParams as fT, type ListTaskResultAiReviewsParams as fU, type ListTaskResultsParams as fV, type ListTasksParams as fW, type ListTopologies200 as fX, type ListTopologiesParams as fY, type Logout200 as fZ, type ManualEditItem as f_, type LatestTaskResultResponseResult as fa, type LineageEdgeResponse as fb, type LineageNodeResponse as fc, type LineageNodeResponseActivity as fd, type LineageNodeResponseEntity as fe, type LineageNodeResponseLatestVersion as ff, type ListAgentActionsResponse as fg, type ListAgentCandidatesResponse as fh, type ListAllFlowSchedulesParams as fi, type ListAllProjectsParams as fj, type ListAllUsersParams as fk, type ListBackendsResponse as fl, type ListChipCouplingsParams as fm, type ListChipNoteEventsParams as fn, type ListChipQubitsParams as fo, type ListCooldownWiringEventsParams as fp, type ListCooldownWiringEventsResponse as fq, type ListCooldownsParams as fr, type ListCooldownsResponse as fs, type ListCopilotChatSessionsResponse as ft, type ListCryostatsResponse as fu, type ListExecutionsParams as fv, type ListExecutionsResponseLimit as fw, type ListExecutionsResponseSkip as fx, type ListExecutionsResponseTotal as fy, type ListFlowSchedulesParams as fz, type ListTaskResponse as g, type MuxTaskInputParameters as g$, type ManualEditsResponse as g0, type ManualParameterUpdateRequest as g1, type ManualParameterUpdateRequestParameters as g2, type ManualParameterUpdateResponse as g3, type ManualParameterUpdateResponseProvenanceActivityId as g4, type MarkAllNotificationsRead200 as g5, type MeasError as g6, type MemberInvite as g7, type MemberItem as g8, type MemberItemAvatarKey as g9, type MetricHistoryItemOutputParametersAnyOfAnyOf as gA, type MetricHistoryItemOutputParametersAnyOfAnyOfCalibratedAt as gB, type MetricHistoryItemOutputParametersAnyOfAnyOfSource as gC, type MetricHistoryItemTaskId as gD, type MetricHistoryItemValue as gE, type MetricValue as gF, type MetricValueExecutionId as gG, type MetricValueStddev as gH, type MetricValueTaskId as gI, type MetricValueValue as gJ, type MetricsSummaryResponse as gK, type MetricsSummaryResponseAverages as gL, type ModelConfig as gM, type ModelConfigApiKeyEnv as gN, type ModelConfigBaseUrl as gO, type ModelConfigKeepAlive as gP, type ModelConfigNumCtx as gQ, type ModelConfigReasoningEffort as gR, type ModelConfigTemperature as gS, type ModelConfigTopK as gT, type ModelConfigTopP as gU, type MuxDetailResponse as gV, type MuxDetailResponseDetail as gW, type MuxTask as gX, type MuxTaskElapsedTime as gY, type MuxTaskEndAt as gZ, type MuxTaskFigurePath as g_, type MemberItemDisplayName as ga, type MemberItemOrganization as gb, type MemberResponse as gc, type MemberResponseAvatarKey as gd, type MemberResponseDisplayName as ge, type MemberResponseInvitedBy as gf, type MemberResponseInvitedByUserId as gg, type MemberResponseLastAccessedAt as gh, type MemberResponseOrganization as gi, type MemberUpdate as gj, type MetricHeatmapResponse as gk, type MetricHeatmapResponseUnit as gl, type MetricHeatmapResponseValues as gm, type MetricHistoryItem as gn, type MetricHistoryItemCalibratedAt as go, type MetricHistoryItemExcludedAt as gp, type MetricHistoryItemExcludedBy as gq, type MetricHistoryItemExcludedByUserId as gr, type MetricHistoryItemInputParameters as gs, type MetricHistoryItemInputParametersAnyOf as gt, type MetricHistoryItemInputParametersAnyOfAnyOf as gu, type MetricHistoryItemInputParametersAnyOfAnyOfCalibratedAt as gv, type MetricHistoryItemInputParametersAnyOfAnyOfSource as gw, type MetricHistoryItemName as gx, type MetricHistoryItemOutputParameters as gy, type MetricHistoryItemOutputParametersAnyOf as gz, type ListTaskKnowledgeResponse as h, type ProjectListItem as h$, type MuxTaskInputParametersAnyOf as h0, type MuxTaskInputParametersAnyOfAnyOf as h1, type MuxTaskInputParametersAnyOfAnyOfCalibratedAt as h2, type MuxTaskInputParametersAnyOfAnyOfSource as h3, type MuxTaskJsonFigurePath as h4, type MuxTaskMessage as h5, type MuxTaskNote as h6, type MuxTaskNoteAnyOf as h7, type MuxTaskOutputParameterNames as h8, type MuxTaskOutputParameters as h9, type OutputParameterInfoResponse as hA, type ParameterChangeResponse as hB, type ParameterChangeResponseDelta as hC, type ParameterChangeResponseDeltaPercent as hD, type ParameterChangeResponsePreviousError as hE, type ParameterChangeResponsePreviousValue as hF, type ParameterChangeResponseValidFrom as hG, type ParameterChangeResponseValue as hH, type ParameterDiffResponse as hI, type ParameterDiffResponseDelta as hJ, type ParameterDiffResponseDeltaPercent as hK, type ParameterDiffResponseValueAfter as hL, type ParameterDiffResponseValueBefore as hM, type ParameterHistoryResponse as hN, type ParameterModel as hO, type ParameterModelSource as hP, type ParameterModelValue as hQ, type ParameterVersionResponse as hR, type ParameterVersionResponseValidFrom as hS, type ParameterVersionResponseValidUntil as hT, type ParameterVersionResponseValue as hU, type PasswordChange as hV, type PasswordReset as hW, type Position as hX, type PreviewArtifactByPathParams as hY, type ProjectCreate as hZ, type ProjectCreateDescription as h_, type MuxTaskOutputParametersAnyOf as ha, type MuxTaskOutputParametersAnyOfAnyOf as hb, type MuxTaskOutputParametersAnyOfAnyOfCalibratedAt as hc, type MuxTaskOutputParametersAnyOfAnyOfSource as hd, type MuxTaskQid as he, type MuxTaskRawDataPath as hf, type MuxTaskStartAt as hg, type MuxTaskTaskId as hh, type MuxTaskTaskType as hi, type MuxTaskUpstreamId as hj, type NoteCommentModel as hk, type NoteCommentModelUpdatedAt as hl, type NoteCommentRequest as hm, type NoteEventResponse as hn, type NoteEventResponseActorUserId as ho, type NoteEventResponseExtra as hp, type NoteModel as hq, type NoteModelUpdatedAt as hr, type NoteUpsertRequest as hs, type NotificationResponse as ht, type NotificationResponseActorUserId as hu, type NotificationResponseReadAt as hv, type NotificationResponseRecipientUserId as hw, type NumericBounds as hx, type NumericBoundsMaximum as hy, type NumericBoundsMinimum as hz, type TaskKnowledgeResponse as i, type ScheduleFlowRequestCron as i$, type ProjectListItemCreatedAt as i0, type ProjectListItemDescription as i1, type ProjectResponseDescription as i2, ProjectRole as i3, type ProjectUpdate as i4, type ProjectUpdateDefaultRole as i5, type ProjectUpdateDescription as i6, type ProjectUpdateName as i7, type ProjectUpdateTags as i8, type ProvenanceStatsResponseRelationCounts as i9, type ReanalyzeQubitSpectroscopyParamsF12HeightMin as iA, type ReanalyzeQubitSpectroscopyParamsRetryWithTrim as iB, type ReanalyzeQubitSpectroscopyParamsTopPower as iC, type ReanalyzeQubitSpectroscopyRequest as iD, type ReanalyzeQubitSpectroscopyRequestSourceTaskId as iE, type ReanalyzeResonatorSpectroscopyParams as iF, type ReanalyzeResonatorSpectroscopyParamsBareShiftEstimatorType as iG, type ReanalyzeResonatorSpectroscopyParamsBareShiftStrengthLimit as iH, type ReanalyzeResonatorSpectroscopyParamsHighPowerMax as iI, type ReanalyzeResonatorSpectroscopyParamsHighPowerMin as iJ, type ReanalyzeResonatorSpectroscopyParamsLowPower as iK, type ReanalyzeResonatorSpectroscopyParamsNumResonators as iL, type ReanalyzeResonatorSpectroscopyParamsResonatorAssignmentPattern as iM, type ReanalyzeResonatorSpectroscopyRequest as iN, type ReanalyzeResonatorSpectroscopyRequestSourceTaskId as iO, type ReanalyzeResponse as iP, type ReanalyzeResponseFigure as iQ, type RecentExecutionsResponse as iR, type RecommendedTaskResponse as iS, type RemoveProjectMemberAdmin200 as iT, type ResetPassword200 as iU, type SaveFileContent200 as iV, type SaveFileRequest as iW, type SaveFlowRequestDefaultParameters as iX, type SaveFlowRequestDefaultRunParameters as iY, type SaveFlowRequestFlowFunctionName as iZ, type ScheduleFlowRequest as i_, type QdashApiSchemasAdminMemberListResponse as ia, type QdashApiSchemasAdminProjectListResponse as ib, type QdashApiSchemasProjectMemberListResponse as ic, type Qubit as id, type QubitGateDuration as ie, type QubitLifetime as ig, type QubitMetricHistoryResponse as ih, type QubitResponseData as ii, type QubitResponseMetricNotes as ij, type QuickRunTaskRequest as ik, type QuickRunTaskRequestBackendName as il, type QuickRunTaskRequestInputParameterOverrides as im, type QuickRunTaskRequestRunParameterOverrides as io, type ReExecuteRequest as ip, type ReExecuteRequestParameterOverrides as iq, type ReExecutionEntry as ir, type ReExecutionEntryStartAt as is, type ReanalyzeOutputParameter as it, type ReanalyzeQubitSpectroscopyParams as iu, type ReanalyzeQubitSpectroscopyParamsBinarizeThresholdSigmaMinus as iv, type ReanalyzeQubitSpectroscopyParamsBinarizeThresholdSigmaPlus as iw, type ReanalyzeQubitSpectroscopyParamsF01HeightMin as ix, type ReanalyzeQubitSpectroscopyParamsF12DistanceMax as iy, type ReanalyzeQubitSpectroscopyParamsF12DistanceMin as iz, type QdashApiSchemasProjectProjectListResponse as j, type TaskResponseBackend as j$, type ScheduleFlowRequestParameters as j0, type ScheduleFlowRequestScheduledTime as j1, type ScheduleFlowResponse as j2, type ScheduleFlowResponseCron as j3, type ScheduleFlowResponseNextRun as j4, type SearchNoteEventsParams as j5, type SeedImportRequest as j6, type SeedImportRequestManualData as j7, type SeedImportRequestManualDataAnyOf as j8, type SeedImportRequestParameters as j9, type TaskHistoryResponseData as jA, type TaskInfo as jB, type TaskInfoCategory as jC, type TaskInfoDescription as jD, type TaskInfoInputParameters as jE, type TaskInfoRunParameters as jF, type TaskInfoTaskType as jG, type TaskInputParameters as jH, type TaskInputParametersAnyOf as jI, type TaskInputParametersAnyOfAnyOf as jJ, type TaskInputParametersAnyOfAnyOfCalibratedAt as jK, type TaskInputParametersAnyOfAnyOfSource as jL, type TaskJsonFigurePath as jM, type TaskKnowledgeSummaryResponse as jN, type TaskMessage as jO, type TaskNote as jP, type TaskNoteAnyOf as jQ, type TaskNoteEntry as jR, type TaskOutputParameterNames as jS, type TaskOutputParameters as jT, type TaskOutputParametersAnyOf as jU, type TaskOutputParametersAnyOfAnyOf as jV, type TaskOutputParametersAnyOfAnyOfCalibratedAt as jW, type TaskOutputParametersAnyOfAnyOfSource as jX, type TaskQid as jY, type TaskRawDataPath as jZ, type TaskResponse as j_, type SeedImportRequestQids as ja, type SeedImportResponse as jb, type SeedImportResponseProvenanceActivityId as jc, type SeedImportResultItem as jd, type SeedImportResultItemMessage as je, type SeedImportResultItemValue as jf, SeedImportSource as jg, type SettingsResponse as jh, type SubmitAgentActionRequest as ji, type SubmitAgentActionRequestParameterOverrides as jj, type SubmitAgentActionRequestTaskName as jk, type SuccessResponse as jl, SystemRole as jm, type Tag as jn, type TargetNoteEntry as jo, type TargetNoteEntryMetricNotes as jp, type Task as jq, type TaskElapsedTime as jr, type TaskEndAt as js, type TaskFigurePath as jt, type TaskFileBackend as ju, type TaskFileSettings as jv, type TaskFileSettingsDefaultBackend as jw, type TaskFileSettingsDefaultViewMode as jx, type TaskFileSettingsSortOrder as jy, type TaskHistoryResponse as jz, type ListFlowsResponse as k, type TaskUserId as k$, type TaskResponseInputParameters as k0, type TaskResponseOutputParameters as k1, type TaskResult as k2, type TaskResultAiReview as k3, type TaskResultElapsedTime as k4, type TaskResultEndAt as k5, type TaskResultExcludeRequest as k6, type TaskResultExcludeResponse as k7, type TaskResultExcludeResponseExcludedAt as k8, type TaskResultExcludeResponseExcludedBy as k9, type TaskResultRawDataPath as kA, type TaskResultResponseElapsedTime as kB, type TaskResultResponseEndAt as kC, type TaskResultResponseInputParameters as kD, type TaskResultResponseInputParametersAnyOf as kE, type TaskResultResponseInputParametersAnyOfCalibratedAt as kF, type TaskResultResponseInputParametersAnyOfSource as kG, type TaskResultResponseOutputParameters as kH, type TaskResultResponseOutputParametersAnyOf as kI, type TaskResultResponseOutputParametersAnyOfCalibratedAt as kJ, type TaskResultResponseOutputParametersAnyOfSource as kK, type TaskResultResponseRunParameters as kL, type TaskResultResponseSourceTaskId as kM, type TaskResultResponseStartAt as kN, type TaskResultResponseUserId as kO, type TaskResultRunParameters as kP, type TaskResultRunParametersAnyOf as kQ, type TaskResultStartAt as kR, type TaskResultTaskId as kS, type TaskResultTaskType as kT, type TaskResultUpstreamId as kU, type TaskRunParameters as kV, type TaskRunParametersAnyOf as kW, type TaskStartAt as kX, type TaskTaskId as kY, type TaskTaskType as kZ, type TaskUpstreamId as k_, type TaskResultExcludeResponseExcludedByUserId as ka, type TaskResultExecutionId as kb, type TaskResultFigurePath as kc, type TaskResultInputParameters as kd, type TaskResultInputParametersAnyOf as ke, type TaskResultInputParametersAnyOfAnyOf as kf, type TaskResultInputParametersAnyOfAnyOfCalibratedAt as kg, type TaskResultInputParametersAnyOfAnyOfSource as kh, type TaskResultJsonFigurePath as ki, type TaskResultListItem as kj, type TaskResultListItemElapsedTime as kk, type TaskResultListItemEndAt as kl, type TaskResultListItemSourceTaskId as km, type TaskResultListItemStartAt as kn, type TaskResultListItemUserId as ko, type TaskResultListResponseStatusCounts as kp, type TaskResultMessage as kq, type TaskResultNote as kr, type TaskResultNoteAnyOf as ks, type TaskResultOutputParameterNames as kt, type TaskResultOutputParameters as ku, type TaskResultOutputParametersAnyOf as kv, type TaskResultOutputParametersAnyOfAnyOf as kw, type TaskResultOutputParametersAnyOfAnyOfCalibratedAt as kx, type TaskResultOutputParametersAnyOfAnyOfSource as ky, type TaskResultQid as kz, type FlowTemplate as l, type UserWithToken as l$, type TimeSeriesDataData as l0, type TokenResponse as l1, type TokenResponseDefaultProjectId as l2, type UISettings as l3, type UITaskFilesSettings as l4, type UITaskFilesSettingsDefaultBackend as l5, type UITaskFilesSettingsDefaultViewMode as l6, type UITaskFilesSettingsSortOrder as l7, type UnreadNotificationCountResponse as l8, type UpdateChipRequest as l9, type User as lA, type UserAvatarKey as lB, type UserCreate as lC, type UserCreateAvatarKey as lD, type UserCreateDisplayName as lE, type UserCreateOrganization as lF, type UserCreatePassword as lG, type UserDefaultProjectId as lH, type UserDetailResponse as lI, type UserDetailResponseAvatarKey as lJ, type UserDetailResponseCreatedAt as lK, type UserDetailResponseDefaultProjectId as lL, type UserDetailResponseDisplayName as lM, type UserDetailResponseOrganization as lN, type UserDetailResponseUpdatedAt as lO, type UserDisabled as lP, type UserDisplayName as lQ, type UserListItem as lR, type UserListItemAvatarKey as lS, type UserListItemDefaultProjectId as lT, type UserListItemDisplayName as lU, type UserListItemOrganization as lV, type UserListResponse as lW, type UserOrganization as lX, type UserProfileUpdate as lY, type UserProfileUpdateAvatarKey as lZ, type UserProfileUpdateDisplayName as l_, type UpdateChipRequestActivityStatus as la, type UpdateChipRequestNote as lb, type UpdateChipRequestTopologyId as lc, type UpdateCopilotChatSessionRequest as ld, type UpdateCopilotChatSessionRequestContext as le, type UpdateCopilotChatSessionRequestContextAnyOf as lf, type UpdateCopilotChatSessionRequestMessages as lg, type UpdateCopilotChatSessionRequestTitle as lh, type UpdateCouplingNoteCommentParams as li, type UpdateQubitNoteCommentParams as lj, type UpdateScheduleRequest as lk, type UpdateScheduleRequestCron as ll, type UpdateScheduleRequestParameters as lm, type UpdateScheduleRequestParametersAnyOf as ln, type UpdateScheduleResponse as lo, type UpdateUserRequest as lp, type UpdateUserRequestAvatarKey as lq, type UpdateUserRequestDisabled as lr, type UpdateUserRequestDisplayName as ls, type UpdateUserRequestOrganization as lt, type UpdateUserRequestSystemRole as lu, type UpsertChipNoteParams as lv, type UpsertCouplingMetricNoteParams as lw, type UpsertCouplingNoteParams as lx, type UpsertQubitMetricNoteParams as ly, type UpsertQubitNoteParams as lz, type FlowTemplateWithCode as m, type UserWithTokenAvatarKey as m0, type UserWithTokenDefaultProjectId as m1, type UserWithTokenDisabled as m2, type UserWithTokenDisplayName as m3, type UserWithTokenInitialPassword as m4, type UserWithTokenOrganization as m5, type ValidateFileContent200 as m6, type ValidateFileRequest as m7, type SaveFlowResponse as n, type ListExecutionsResponse as o, type ExecutionResponseDetail as p, type AgentSessionResponse as q, type CandidateGateResponse as r, AgentActionType as s, type AgentActionResponse as t, type AgentCandidateResponse as u, type AgentCandidateCommitResponse as v, type AgentCampaignCandidateReference as w, type AgentCampaignCommitResponse as x, type ListForumPostsResponse as y, type ForumPostCreate as z };
|