@blade-hq/agent-kit 0.5.7 → 0.5.10
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/{chunk-K5EE7X2D.js → chunk-G2LJZTPX.js} +80 -50
- package/dist/{chunk-K5EE7X2D.js.map → chunk-G2LJZTPX.js.map} +1 -1
- package/dist/client/index.d.ts +925 -0
- package/dist/react/components/chat/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -2843,6 +2843,258 @@ interface paths {
|
|
|
2843
2843
|
patch?: never;
|
|
2844
2844
|
trace?: never;
|
|
2845
2845
|
};
|
|
2846
|
+
"/api/factory-v2/ls/{dir_path}": {
|
|
2847
|
+
parameters: {
|
|
2848
|
+
query?: never;
|
|
2849
|
+
header?: never;
|
|
2850
|
+
path?: never;
|
|
2851
|
+
cookie?: never;
|
|
2852
|
+
};
|
|
2853
|
+
/**
|
|
2854
|
+
* List Dir
|
|
2855
|
+
* @description List directories (and files) under a path on the user's cloud PC.
|
|
2856
|
+
*/
|
|
2857
|
+
get: operations["list_dir_api_factory_v2_ls__dir_path__get"];
|
|
2858
|
+
put?: never;
|
|
2859
|
+
post?: never;
|
|
2860
|
+
delete?: never;
|
|
2861
|
+
options?: never;
|
|
2862
|
+
head?: never;
|
|
2863
|
+
patch?: never;
|
|
2864
|
+
trace?: never;
|
|
2865
|
+
};
|
|
2866
|
+
"/api/factory-v2/check-path": {
|
|
2867
|
+
parameters: {
|
|
2868
|
+
query?: never;
|
|
2869
|
+
header?: never;
|
|
2870
|
+
path?: never;
|
|
2871
|
+
cookie?: never;
|
|
2872
|
+
};
|
|
2873
|
+
/**
|
|
2874
|
+
* Check Path
|
|
2875
|
+
* @description Check if a path already exists.
|
|
2876
|
+
*/
|
|
2877
|
+
get: operations["check_path_api_factory_v2_check_path_get"];
|
|
2878
|
+
put?: never;
|
|
2879
|
+
post?: never;
|
|
2880
|
+
delete?: never;
|
|
2881
|
+
options?: never;
|
|
2882
|
+
head?: never;
|
|
2883
|
+
patch?: never;
|
|
2884
|
+
trace?: never;
|
|
2885
|
+
};
|
|
2886
|
+
"/api/factory-v2/validate-repo": {
|
|
2887
|
+
parameters: {
|
|
2888
|
+
query?: never;
|
|
2889
|
+
header?: never;
|
|
2890
|
+
path?: never;
|
|
2891
|
+
cookie?: never;
|
|
2892
|
+
};
|
|
2893
|
+
get?: never;
|
|
2894
|
+
put?: never;
|
|
2895
|
+
/**
|
|
2896
|
+
* Validate Repo
|
|
2897
|
+
* @description Validate that a git repo URL is reachable.
|
|
2898
|
+
*/
|
|
2899
|
+
post: operations["validate_repo_api_factory_v2_validate_repo_post"];
|
|
2900
|
+
delete?: never;
|
|
2901
|
+
options?: never;
|
|
2902
|
+
head?: never;
|
|
2903
|
+
patch?: never;
|
|
2904
|
+
trace?: never;
|
|
2905
|
+
};
|
|
2906
|
+
"/api/factory-v2/projects": {
|
|
2907
|
+
parameters: {
|
|
2908
|
+
query?: never;
|
|
2909
|
+
header?: never;
|
|
2910
|
+
path?: never;
|
|
2911
|
+
cookie?: never;
|
|
2912
|
+
};
|
|
2913
|
+
/** List Projects */
|
|
2914
|
+
get: operations["list_projects_api_factory_v2_projects_get"];
|
|
2915
|
+
put?: never;
|
|
2916
|
+
/** Create Project */
|
|
2917
|
+
post: operations["create_project_api_factory_v2_projects_post"];
|
|
2918
|
+
delete?: never;
|
|
2919
|
+
options?: never;
|
|
2920
|
+
head?: never;
|
|
2921
|
+
patch?: never;
|
|
2922
|
+
trace?: never;
|
|
2923
|
+
};
|
|
2924
|
+
"/api/factory-v2/projects/{project_id}": {
|
|
2925
|
+
parameters: {
|
|
2926
|
+
query?: never;
|
|
2927
|
+
header?: never;
|
|
2928
|
+
path?: never;
|
|
2929
|
+
cookie?: never;
|
|
2930
|
+
};
|
|
2931
|
+
/** Get Project */
|
|
2932
|
+
get: operations["get_project_api_factory_v2_projects__project_id__get"];
|
|
2933
|
+
put?: never;
|
|
2934
|
+
post?: never;
|
|
2935
|
+
/** Delete Project */
|
|
2936
|
+
delete: operations["delete_project_api_factory_v2_projects__project_id__delete"];
|
|
2937
|
+
options?: never;
|
|
2938
|
+
head?: never;
|
|
2939
|
+
/** Update Project */
|
|
2940
|
+
patch: operations["update_project_api_factory_v2_projects__project_id__patch"];
|
|
2941
|
+
trace?: never;
|
|
2942
|
+
};
|
|
2943
|
+
"/api/factory-v2/projects/{project_id}/sessions": {
|
|
2944
|
+
parameters: {
|
|
2945
|
+
query?: never;
|
|
2946
|
+
header?: never;
|
|
2947
|
+
path?: never;
|
|
2948
|
+
cookie?: never;
|
|
2949
|
+
};
|
|
2950
|
+
/** List Project Sessions */
|
|
2951
|
+
get: operations["list_project_sessions_api_factory_v2_projects__project_id__sessions_get"];
|
|
2952
|
+
put?: never;
|
|
2953
|
+
/** Register Project Session */
|
|
2954
|
+
post: operations["register_project_session_api_factory_v2_projects__project_id__sessions_post"];
|
|
2955
|
+
delete?: never;
|
|
2956
|
+
options?: never;
|
|
2957
|
+
head?: never;
|
|
2958
|
+
patch?: never;
|
|
2959
|
+
trace?: never;
|
|
2960
|
+
};
|
|
2961
|
+
"/api/factory-v2/projects/{project_id}/sessions/{session_id}": {
|
|
2962
|
+
parameters: {
|
|
2963
|
+
query?: never;
|
|
2964
|
+
header?: never;
|
|
2965
|
+
path?: never;
|
|
2966
|
+
cookie?: never;
|
|
2967
|
+
};
|
|
2968
|
+
get?: never;
|
|
2969
|
+
put?: never;
|
|
2970
|
+
post?: never;
|
|
2971
|
+
/** Remove Project Session */
|
|
2972
|
+
delete: operations["remove_project_session_api_factory_v2_projects__project_id__sessions__session_id__delete"];
|
|
2973
|
+
options?: never;
|
|
2974
|
+
head?: never;
|
|
2975
|
+
patch?: never;
|
|
2976
|
+
trace?: never;
|
|
2977
|
+
};
|
|
2978
|
+
"/api/factory-v2/projects/{project_id}/published-apps": {
|
|
2979
|
+
parameters: {
|
|
2980
|
+
query?: never;
|
|
2981
|
+
header?: never;
|
|
2982
|
+
path?: never;
|
|
2983
|
+
cookie?: never;
|
|
2984
|
+
};
|
|
2985
|
+
/** List Project Published Apps */
|
|
2986
|
+
get: operations["list_project_published_apps_api_factory_v2_projects__project_id__published_apps_get"];
|
|
2987
|
+
put?: never;
|
|
2988
|
+
post?: never;
|
|
2989
|
+
delete?: never;
|
|
2990
|
+
options?: never;
|
|
2991
|
+
head?: never;
|
|
2992
|
+
patch?: never;
|
|
2993
|
+
trace?: never;
|
|
2994
|
+
};
|
|
2995
|
+
"/api/factory-v2/projects/{project_id}/files/{file_path}": {
|
|
2996
|
+
parameters: {
|
|
2997
|
+
query?: never;
|
|
2998
|
+
header?: never;
|
|
2999
|
+
path?: never;
|
|
3000
|
+
cookie?: never;
|
|
3001
|
+
};
|
|
3002
|
+
/** Read Project File */
|
|
3003
|
+
get: operations["read_project_file_api_factory_v2_projects__project_id__files__file_path__get"];
|
|
3004
|
+
/** Write Project File */
|
|
3005
|
+
put: operations["write_project_file_api_factory_v2_projects__project_id__files__file_path__put"];
|
|
3006
|
+
post?: never;
|
|
3007
|
+
delete?: never;
|
|
3008
|
+
options?: never;
|
|
3009
|
+
head?: never;
|
|
3010
|
+
patch?: never;
|
|
3011
|
+
trace?: never;
|
|
3012
|
+
};
|
|
3013
|
+
"/api/factory-v2/projects/{project_id}/git/status": {
|
|
3014
|
+
parameters: {
|
|
3015
|
+
query?: never;
|
|
3016
|
+
header?: never;
|
|
3017
|
+
path?: never;
|
|
3018
|
+
cookie?: never;
|
|
3019
|
+
};
|
|
3020
|
+
/** Get Project Git Status */
|
|
3021
|
+
get: operations["get_project_git_status_api_factory_v2_projects__project_id__git_status_get"];
|
|
3022
|
+
put?: never;
|
|
3023
|
+
post?: never;
|
|
3024
|
+
delete?: never;
|
|
3025
|
+
options?: never;
|
|
3026
|
+
head?: never;
|
|
3027
|
+
patch?: never;
|
|
3028
|
+
trace?: never;
|
|
3029
|
+
};
|
|
3030
|
+
"/api/factory-v2/projects/{project_id}/git/init": {
|
|
3031
|
+
parameters: {
|
|
3032
|
+
query?: never;
|
|
3033
|
+
header?: never;
|
|
3034
|
+
path?: never;
|
|
3035
|
+
cookie?: never;
|
|
3036
|
+
};
|
|
3037
|
+
get?: never;
|
|
3038
|
+
put?: never;
|
|
3039
|
+
/** Init Project Git */
|
|
3040
|
+
post: operations["init_project_git_api_factory_v2_projects__project_id__git_init_post"];
|
|
3041
|
+
delete?: never;
|
|
3042
|
+
options?: never;
|
|
3043
|
+
head?: never;
|
|
3044
|
+
patch?: never;
|
|
3045
|
+
trace?: never;
|
|
3046
|
+
};
|
|
3047
|
+
"/api/factory-v2/projects/{project_id}/git/stage": {
|
|
3048
|
+
parameters: {
|
|
3049
|
+
query?: never;
|
|
3050
|
+
header?: never;
|
|
3051
|
+
path?: never;
|
|
3052
|
+
cookie?: never;
|
|
3053
|
+
};
|
|
3054
|
+
get?: never;
|
|
3055
|
+
put?: never;
|
|
3056
|
+
/** Stage Project Changes */
|
|
3057
|
+
post: operations["stage_project_changes_api_factory_v2_projects__project_id__git_stage_post"];
|
|
3058
|
+
delete?: never;
|
|
3059
|
+
options?: never;
|
|
3060
|
+
head?: never;
|
|
3061
|
+
patch?: never;
|
|
3062
|
+
trace?: never;
|
|
3063
|
+
};
|
|
3064
|
+
"/api/factory-v2/projects/{project_id}/git/stage-file": {
|
|
3065
|
+
parameters: {
|
|
3066
|
+
query?: never;
|
|
3067
|
+
header?: never;
|
|
3068
|
+
path?: never;
|
|
3069
|
+
cookie?: never;
|
|
3070
|
+
};
|
|
3071
|
+
get?: never;
|
|
3072
|
+
put?: never;
|
|
3073
|
+
/** Stage Project File */
|
|
3074
|
+
post: operations["stage_project_file_api_factory_v2_projects__project_id__git_stage_file_post"];
|
|
3075
|
+
delete?: never;
|
|
3076
|
+
options?: never;
|
|
3077
|
+
head?: never;
|
|
3078
|
+
patch?: never;
|
|
3079
|
+
trace?: never;
|
|
3080
|
+
};
|
|
3081
|
+
"/api/factory-v2/projects/{project_id}/git/commit-push": {
|
|
3082
|
+
parameters: {
|
|
3083
|
+
query?: never;
|
|
3084
|
+
header?: never;
|
|
3085
|
+
path?: never;
|
|
3086
|
+
cookie?: never;
|
|
3087
|
+
};
|
|
3088
|
+
get?: never;
|
|
3089
|
+
put?: never;
|
|
3090
|
+
/** Commit And Push Project */
|
|
3091
|
+
post: operations["commit_and_push_project_api_factory_v2_projects__project_id__git_commit_push_post"];
|
|
3092
|
+
delete?: never;
|
|
3093
|
+
options?: never;
|
|
3094
|
+
head?: never;
|
|
3095
|
+
patch?: never;
|
|
3096
|
+
trace?: never;
|
|
3097
|
+
};
|
|
2846
3098
|
"/api/registry/resources": {
|
|
2847
3099
|
parameters: {
|
|
2848
3100
|
query?: never;
|
|
@@ -3551,6 +3803,11 @@ interface components {
|
|
|
3551
3803
|
*/
|
|
3552
3804
|
position: "before" | "turn_end";
|
|
3553
3805
|
};
|
|
3806
|
+
/** CommitProjectRequest */
|
|
3807
|
+
CommitProjectRequest: {
|
|
3808
|
+
/** Message */
|
|
3809
|
+
message: string;
|
|
3810
|
+
};
|
|
3554
3811
|
/** ComputerUpgradeStatusResponse */
|
|
3555
3812
|
ComputerUpgradeStatusResponse: {
|
|
3556
3813
|
/** Upgrade Available */
|
|
@@ -3657,6 +3914,25 @@ interface components {
|
|
|
3657
3914
|
*/
|
|
3658
3915
|
architecture_ai_assist: boolean;
|
|
3659
3916
|
};
|
|
3917
|
+
/** CreateProjectRequest */
|
|
3918
|
+
CreateProjectRequest: {
|
|
3919
|
+
/** Name */
|
|
3920
|
+
name: string;
|
|
3921
|
+
/**
|
|
3922
|
+
* Description
|
|
3923
|
+
* @default
|
|
3924
|
+
*/
|
|
3925
|
+
description: string;
|
|
3926
|
+
/** Dir Path */
|
|
3927
|
+
dir_path: string;
|
|
3928
|
+
/** Create Mode */
|
|
3929
|
+
create_mode: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* Gitea Repo
|
|
3932
|
+
* @default
|
|
3933
|
+
*/
|
|
3934
|
+
gitea_repo: string;
|
|
3935
|
+
};
|
|
3660
3936
|
/** CreateQuickScenarioRequest */
|
|
3661
3937
|
CreateQuickScenarioRequest: {
|
|
3662
3938
|
/** Name */
|
|
@@ -4008,6 +4284,28 @@ interface components {
|
|
|
4008
4284
|
/** Updated At */
|
|
4009
4285
|
updated_at: string;
|
|
4010
4286
|
};
|
|
4287
|
+
/** RegisterSessionRequest */
|
|
4288
|
+
RegisterSessionRequest: {
|
|
4289
|
+
/** Session Id */
|
|
4290
|
+
session_id: string;
|
|
4291
|
+
/** Session Type */
|
|
4292
|
+
session_type: string;
|
|
4293
|
+
/**
|
|
4294
|
+
* Label
|
|
4295
|
+
* @default
|
|
4296
|
+
*/
|
|
4297
|
+
label: string;
|
|
4298
|
+
/**
|
|
4299
|
+
* Solution Id
|
|
4300
|
+
* @default
|
|
4301
|
+
*/
|
|
4302
|
+
solution_id: string;
|
|
4303
|
+
/**
|
|
4304
|
+
* Biz Role Id
|
|
4305
|
+
* @default
|
|
4306
|
+
*/
|
|
4307
|
+
biz_role_id: string;
|
|
4308
|
+
};
|
|
4011
4309
|
/** RenameFileRequest */
|
|
4012
4310
|
RenameFileRequest: {
|
|
4013
4311
|
/** New Name */
|
|
@@ -4466,6 +4764,11 @@ interface components {
|
|
|
4466
4764
|
/** Updated At */
|
|
4467
4765
|
updated_at: string;
|
|
4468
4766
|
};
|
|
4767
|
+
/** StageGitFileRequest */
|
|
4768
|
+
StageGitFileRequest: {
|
|
4769
|
+
/** Path */
|
|
4770
|
+
path: string;
|
|
4771
|
+
};
|
|
4469
4772
|
/** StartCodingRequest */
|
|
4470
4773
|
StartCodingRequest: {
|
|
4471
4774
|
/** Topic Name */
|
|
@@ -4589,6 +4892,18 @@ interface components {
|
|
|
4589
4892
|
/** Status */
|
|
4590
4893
|
status?: string | null;
|
|
4591
4894
|
};
|
|
4895
|
+
/** UpdateProjectFileRequest */
|
|
4896
|
+
UpdateProjectFileRequest: {
|
|
4897
|
+
/** Content */
|
|
4898
|
+
content: string;
|
|
4899
|
+
};
|
|
4900
|
+
/** UpdateProjectRequest */
|
|
4901
|
+
UpdateProjectRequest: {
|
|
4902
|
+
/** Name */
|
|
4903
|
+
name?: string | null;
|
|
4904
|
+
/** Description */
|
|
4905
|
+
description?: string | null;
|
|
4906
|
+
};
|
|
4592
4907
|
/** UpdateQuickScenarioRequest */
|
|
4593
4908
|
UpdateQuickScenarioRequest: {
|
|
4594
4909
|
/** Name */
|
|
@@ -4656,6 +4971,11 @@ interface components {
|
|
|
4656
4971
|
ValidateDagRequest: {
|
|
4657
4972
|
dag: components["schemas"]["DagPayload"];
|
|
4658
4973
|
};
|
|
4974
|
+
/** ValidateRepoRequest */
|
|
4975
|
+
ValidateRepoRequest: {
|
|
4976
|
+
/** Repo Url */
|
|
4977
|
+
repo_url: string;
|
|
4978
|
+
};
|
|
4659
4979
|
/** ValidationError */
|
|
4660
4980
|
ValidationError: {
|
|
4661
4981
|
/** Location */
|
|
@@ -11401,6 +11721,611 @@ interface operations {
|
|
|
11401
11721
|
};
|
|
11402
11722
|
};
|
|
11403
11723
|
};
|
|
11724
|
+
list_dir_api_factory_v2_ls__dir_path__get: {
|
|
11725
|
+
parameters: {
|
|
11726
|
+
query?: never;
|
|
11727
|
+
header?: never;
|
|
11728
|
+
path: {
|
|
11729
|
+
dir_path: string;
|
|
11730
|
+
};
|
|
11731
|
+
cookie?: never;
|
|
11732
|
+
};
|
|
11733
|
+
requestBody?: never;
|
|
11734
|
+
responses: {
|
|
11735
|
+
/** @description Successful Response */
|
|
11736
|
+
200: {
|
|
11737
|
+
headers: {
|
|
11738
|
+
[name: string]: unknown;
|
|
11739
|
+
};
|
|
11740
|
+
content: {
|
|
11741
|
+
"application/json": unknown;
|
|
11742
|
+
};
|
|
11743
|
+
};
|
|
11744
|
+
/** @description Validation Error */
|
|
11745
|
+
422: {
|
|
11746
|
+
headers: {
|
|
11747
|
+
[name: string]: unknown;
|
|
11748
|
+
};
|
|
11749
|
+
content: {
|
|
11750
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11751
|
+
};
|
|
11752
|
+
};
|
|
11753
|
+
};
|
|
11754
|
+
};
|
|
11755
|
+
check_path_api_factory_v2_check_path_get: {
|
|
11756
|
+
parameters: {
|
|
11757
|
+
query: {
|
|
11758
|
+
path: string;
|
|
11759
|
+
};
|
|
11760
|
+
header?: never;
|
|
11761
|
+
path?: never;
|
|
11762
|
+
cookie?: never;
|
|
11763
|
+
};
|
|
11764
|
+
requestBody?: never;
|
|
11765
|
+
responses: {
|
|
11766
|
+
/** @description Successful Response */
|
|
11767
|
+
200: {
|
|
11768
|
+
headers: {
|
|
11769
|
+
[name: string]: unknown;
|
|
11770
|
+
};
|
|
11771
|
+
content: {
|
|
11772
|
+
"application/json": unknown;
|
|
11773
|
+
};
|
|
11774
|
+
};
|
|
11775
|
+
/** @description Validation Error */
|
|
11776
|
+
422: {
|
|
11777
|
+
headers: {
|
|
11778
|
+
[name: string]: unknown;
|
|
11779
|
+
};
|
|
11780
|
+
content: {
|
|
11781
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11782
|
+
};
|
|
11783
|
+
};
|
|
11784
|
+
};
|
|
11785
|
+
};
|
|
11786
|
+
validate_repo_api_factory_v2_validate_repo_post: {
|
|
11787
|
+
parameters: {
|
|
11788
|
+
query?: never;
|
|
11789
|
+
header?: never;
|
|
11790
|
+
path?: never;
|
|
11791
|
+
cookie?: never;
|
|
11792
|
+
};
|
|
11793
|
+
requestBody: {
|
|
11794
|
+
content: {
|
|
11795
|
+
"application/json": components["schemas"]["ValidateRepoRequest"];
|
|
11796
|
+
};
|
|
11797
|
+
};
|
|
11798
|
+
responses: {
|
|
11799
|
+
/** @description Successful Response */
|
|
11800
|
+
200: {
|
|
11801
|
+
headers: {
|
|
11802
|
+
[name: string]: unknown;
|
|
11803
|
+
};
|
|
11804
|
+
content: {
|
|
11805
|
+
"application/json": unknown;
|
|
11806
|
+
};
|
|
11807
|
+
};
|
|
11808
|
+
/** @description Validation Error */
|
|
11809
|
+
422: {
|
|
11810
|
+
headers: {
|
|
11811
|
+
[name: string]: unknown;
|
|
11812
|
+
};
|
|
11813
|
+
content: {
|
|
11814
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11815
|
+
};
|
|
11816
|
+
};
|
|
11817
|
+
};
|
|
11818
|
+
};
|
|
11819
|
+
list_projects_api_factory_v2_projects_get: {
|
|
11820
|
+
parameters: {
|
|
11821
|
+
query?: never;
|
|
11822
|
+
header?: never;
|
|
11823
|
+
path?: never;
|
|
11824
|
+
cookie?: never;
|
|
11825
|
+
};
|
|
11826
|
+
requestBody?: never;
|
|
11827
|
+
responses: {
|
|
11828
|
+
/** @description Successful Response */
|
|
11829
|
+
200: {
|
|
11830
|
+
headers: {
|
|
11831
|
+
[name: string]: unknown;
|
|
11832
|
+
};
|
|
11833
|
+
content: {
|
|
11834
|
+
"application/json": unknown;
|
|
11835
|
+
};
|
|
11836
|
+
};
|
|
11837
|
+
};
|
|
11838
|
+
};
|
|
11839
|
+
create_project_api_factory_v2_projects_post: {
|
|
11840
|
+
parameters: {
|
|
11841
|
+
query?: never;
|
|
11842
|
+
header?: never;
|
|
11843
|
+
path?: never;
|
|
11844
|
+
cookie?: never;
|
|
11845
|
+
};
|
|
11846
|
+
requestBody: {
|
|
11847
|
+
content: {
|
|
11848
|
+
"application/json": components["schemas"]["CreateProjectRequest"];
|
|
11849
|
+
};
|
|
11850
|
+
};
|
|
11851
|
+
responses: {
|
|
11852
|
+
/** @description Successful Response */
|
|
11853
|
+
200: {
|
|
11854
|
+
headers: {
|
|
11855
|
+
[name: string]: unknown;
|
|
11856
|
+
};
|
|
11857
|
+
content: {
|
|
11858
|
+
"application/json": unknown;
|
|
11859
|
+
};
|
|
11860
|
+
};
|
|
11861
|
+
/** @description Validation Error */
|
|
11862
|
+
422: {
|
|
11863
|
+
headers: {
|
|
11864
|
+
[name: string]: unknown;
|
|
11865
|
+
};
|
|
11866
|
+
content: {
|
|
11867
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11868
|
+
};
|
|
11869
|
+
};
|
|
11870
|
+
};
|
|
11871
|
+
};
|
|
11872
|
+
get_project_api_factory_v2_projects__project_id__get: {
|
|
11873
|
+
parameters: {
|
|
11874
|
+
query?: never;
|
|
11875
|
+
header?: never;
|
|
11876
|
+
path: {
|
|
11877
|
+
project_id: number;
|
|
11878
|
+
};
|
|
11879
|
+
cookie?: never;
|
|
11880
|
+
};
|
|
11881
|
+
requestBody?: never;
|
|
11882
|
+
responses: {
|
|
11883
|
+
/** @description Successful Response */
|
|
11884
|
+
200: {
|
|
11885
|
+
headers: {
|
|
11886
|
+
[name: string]: unknown;
|
|
11887
|
+
};
|
|
11888
|
+
content: {
|
|
11889
|
+
"application/json": unknown;
|
|
11890
|
+
};
|
|
11891
|
+
};
|
|
11892
|
+
/** @description Validation Error */
|
|
11893
|
+
422: {
|
|
11894
|
+
headers: {
|
|
11895
|
+
[name: string]: unknown;
|
|
11896
|
+
};
|
|
11897
|
+
content: {
|
|
11898
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11899
|
+
};
|
|
11900
|
+
};
|
|
11901
|
+
};
|
|
11902
|
+
};
|
|
11903
|
+
delete_project_api_factory_v2_projects__project_id__delete: {
|
|
11904
|
+
parameters: {
|
|
11905
|
+
query?: never;
|
|
11906
|
+
header?: never;
|
|
11907
|
+
path: {
|
|
11908
|
+
project_id: number;
|
|
11909
|
+
};
|
|
11910
|
+
cookie?: never;
|
|
11911
|
+
};
|
|
11912
|
+
requestBody?: never;
|
|
11913
|
+
responses: {
|
|
11914
|
+
/** @description Successful Response */
|
|
11915
|
+
200: {
|
|
11916
|
+
headers: {
|
|
11917
|
+
[name: string]: unknown;
|
|
11918
|
+
};
|
|
11919
|
+
content: {
|
|
11920
|
+
"application/json": unknown;
|
|
11921
|
+
};
|
|
11922
|
+
};
|
|
11923
|
+
/** @description Validation Error */
|
|
11924
|
+
422: {
|
|
11925
|
+
headers: {
|
|
11926
|
+
[name: string]: unknown;
|
|
11927
|
+
};
|
|
11928
|
+
content: {
|
|
11929
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11930
|
+
};
|
|
11931
|
+
};
|
|
11932
|
+
};
|
|
11933
|
+
};
|
|
11934
|
+
update_project_api_factory_v2_projects__project_id__patch: {
|
|
11935
|
+
parameters: {
|
|
11936
|
+
query?: never;
|
|
11937
|
+
header?: never;
|
|
11938
|
+
path: {
|
|
11939
|
+
project_id: number;
|
|
11940
|
+
};
|
|
11941
|
+
cookie?: never;
|
|
11942
|
+
};
|
|
11943
|
+
requestBody: {
|
|
11944
|
+
content: {
|
|
11945
|
+
"application/json": components["schemas"]["UpdateProjectRequest"];
|
|
11946
|
+
};
|
|
11947
|
+
};
|
|
11948
|
+
responses: {
|
|
11949
|
+
/** @description Successful Response */
|
|
11950
|
+
200: {
|
|
11951
|
+
headers: {
|
|
11952
|
+
[name: string]: unknown;
|
|
11953
|
+
};
|
|
11954
|
+
content: {
|
|
11955
|
+
"application/json": unknown;
|
|
11956
|
+
};
|
|
11957
|
+
};
|
|
11958
|
+
/** @description Validation Error */
|
|
11959
|
+
422: {
|
|
11960
|
+
headers: {
|
|
11961
|
+
[name: string]: unknown;
|
|
11962
|
+
};
|
|
11963
|
+
content: {
|
|
11964
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11965
|
+
};
|
|
11966
|
+
};
|
|
11967
|
+
};
|
|
11968
|
+
};
|
|
11969
|
+
list_project_sessions_api_factory_v2_projects__project_id__sessions_get: {
|
|
11970
|
+
parameters: {
|
|
11971
|
+
query?: never;
|
|
11972
|
+
header?: never;
|
|
11973
|
+
path: {
|
|
11974
|
+
project_id: number;
|
|
11975
|
+
};
|
|
11976
|
+
cookie?: never;
|
|
11977
|
+
};
|
|
11978
|
+
requestBody?: never;
|
|
11979
|
+
responses: {
|
|
11980
|
+
/** @description Successful Response */
|
|
11981
|
+
200: {
|
|
11982
|
+
headers: {
|
|
11983
|
+
[name: string]: unknown;
|
|
11984
|
+
};
|
|
11985
|
+
content: {
|
|
11986
|
+
"application/json": unknown;
|
|
11987
|
+
};
|
|
11988
|
+
};
|
|
11989
|
+
/** @description Validation Error */
|
|
11990
|
+
422: {
|
|
11991
|
+
headers: {
|
|
11992
|
+
[name: string]: unknown;
|
|
11993
|
+
};
|
|
11994
|
+
content: {
|
|
11995
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11996
|
+
};
|
|
11997
|
+
};
|
|
11998
|
+
};
|
|
11999
|
+
};
|
|
12000
|
+
register_project_session_api_factory_v2_projects__project_id__sessions_post: {
|
|
12001
|
+
parameters: {
|
|
12002
|
+
query?: never;
|
|
12003
|
+
header?: never;
|
|
12004
|
+
path: {
|
|
12005
|
+
project_id: number;
|
|
12006
|
+
};
|
|
12007
|
+
cookie?: never;
|
|
12008
|
+
};
|
|
12009
|
+
requestBody: {
|
|
12010
|
+
content: {
|
|
12011
|
+
"application/json": components["schemas"]["RegisterSessionRequest"];
|
|
12012
|
+
};
|
|
12013
|
+
};
|
|
12014
|
+
responses: {
|
|
12015
|
+
/** @description Successful Response */
|
|
12016
|
+
200: {
|
|
12017
|
+
headers: {
|
|
12018
|
+
[name: string]: unknown;
|
|
12019
|
+
};
|
|
12020
|
+
content: {
|
|
12021
|
+
"application/json": unknown;
|
|
12022
|
+
};
|
|
12023
|
+
};
|
|
12024
|
+
/** @description Validation Error */
|
|
12025
|
+
422: {
|
|
12026
|
+
headers: {
|
|
12027
|
+
[name: string]: unknown;
|
|
12028
|
+
};
|
|
12029
|
+
content: {
|
|
12030
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12031
|
+
};
|
|
12032
|
+
};
|
|
12033
|
+
};
|
|
12034
|
+
};
|
|
12035
|
+
remove_project_session_api_factory_v2_projects__project_id__sessions__session_id__delete: {
|
|
12036
|
+
parameters: {
|
|
12037
|
+
query?: never;
|
|
12038
|
+
header?: never;
|
|
12039
|
+
path: {
|
|
12040
|
+
project_id: number;
|
|
12041
|
+
session_id: string;
|
|
12042
|
+
};
|
|
12043
|
+
cookie?: never;
|
|
12044
|
+
};
|
|
12045
|
+
requestBody?: never;
|
|
12046
|
+
responses: {
|
|
12047
|
+
/** @description Successful Response */
|
|
12048
|
+
200: {
|
|
12049
|
+
headers: {
|
|
12050
|
+
[name: string]: unknown;
|
|
12051
|
+
};
|
|
12052
|
+
content: {
|
|
12053
|
+
"application/json": unknown;
|
|
12054
|
+
};
|
|
12055
|
+
};
|
|
12056
|
+
/** @description Validation Error */
|
|
12057
|
+
422: {
|
|
12058
|
+
headers: {
|
|
12059
|
+
[name: string]: unknown;
|
|
12060
|
+
};
|
|
12061
|
+
content: {
|
|
12062
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12063
|
+
};
|
|
12064
|
+
};
|
|
12065
|
+
};
|
|
12066
|
+
};
|
|
12067
|
+
list_project_published_apps_api_factory_v2_projects__project_id__published_apps_get: {
|
|
12068
|
+
parameters: {
|
|
12069
|
+
query?: never;
|
|
12070
|
+
header?: never;
|
|
12071
|
+
path: {
|
|
12072
|
+
project_id: number;
|
|
12073
|
+
};
|
|
12074
|
+
cookie?: never;
|
|
12075
|
+
};
|
|
12076
|
+
requestBody?: never;
|
|
12077
|
+
responses: {
|
|
12078
|
+
/** @description Successful Response */
|
|
12079
|
+
200: {
|
|
12080
|
+
headers: {
|
|
12081
|
+
[name: string]: unknown;
|
|
12082
|
+
};
|
|
12083
|
+
content: {
|
|
12084
|
+
"application/json": unknown;
|
|
12085
|
+
};
|
|
12086
|
+
};
|
|
12087
|
+
/** @description Validation Error */
|
|
12088
|
+
422: {
|
|
12089
|
+
headers: {
|
|
12090
|
+
[name: string]: unknown;
|
|
12091
|
+
};
|
|
12092
|
+
content: {
|
|
12093
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12094
|
+
};
|
|
12095
|
+
};
|
|
12096
|
+
};
|
|
12097
|
+
};
|
|
12098
|
+
read_project_file_api_factory_v2_projects__project_id__files__file_path__get: {
|
|
12099
|
+
parameters: {
|
|
12100
|
+
query?: never;
|
|
12101
|
+
header?: never;
|
|
12102
|
+
path: {
|
|
12103
|
+
project_id: number;
|
|
12104
|
+
file_path: string;
|
|
12105
|
+
};
|
|
12106
|
+
cookie?: never;
|
|
12107
|
+
};
|
|
12108
|
+
requestBody?: never;
|
|
12109
|
+
responses: {
|
|
12110
|
+
/** @description Successful Response */
|
|
12111
|
+
200: {
|
|
12112
|
+
headers: {
|
|
12113
|
+
[name: string]: unknown;
|
|
12114
|
+
};
|
|
12115
|
+
content: {
|
|
12116
|
+
"application/json": unknown;
|
|
12117
|
+
};
|
|
12118
|
+
};
|
|
12119
|
+
/** @description Validation Error */
|
|
12120
|
+
422: {
|
|
12121
|
+
headers: {
|
|
12122
|
+
[name: string]: unknown;
|
|
12123
|
+
};
|
|
12124
|
+
content: {
|
|
12125
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12126
|
+
};
|
|
12127
|
+
};
|
|
12128
|
+
};
|
|
12129
|
+
};
|
|
12130
|
+
write_project_file_api_factory_v2_projects__project_id__files__file_path__put: {
|
|
12131
|
+
parameters: {
|
|
12132
|
+
query?: never;
|
|
12133
|
+
header?: never;
|
|
12134
|
+
path: {
|
|
12135
|
+
project_id: number;
|
|
12136
|
+
file_path: string;
|
|
12137
|
+
};
|
|
12138
|
+
cookie?: never;
|
|
12139
|
+
};
|
|
12140
|
+
requestBody: {
|
|
12141
|
+
content: {
|
|
12142
|
+
"application/json": components["schemas"]["UpdateProjectFileRequest"];
|
|
12143
|
+
};
|
|
12144
|
+
};
|
|
12145
|
+
responses: {
|
|
12146
|
+
/** @description Successful Response */
|
|
12147
|
+
200: {
|
|
12148
|
+
headers: {
|
|
12149
|
+
[name: string]: unknown;
|
|
12150
|
+
};
|
|
12151
|
+
content: {
|
|
12152
|
+
"application/json": unknown;
|
|
12153
|
+
};
|
|
12154
|
+
};
|
|
12155
|
+
/** @description Validation Error */
|
|
12156
|
+
422: {
|
|
12157
|
+
headers: {
|
|
12158
|
+
[name: string]: unknown;
|
|
12159
|
+
};
|
|
12160
|
+
content: {
|
|
12161
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12162
|
+
};
|
|
12163
|
+
};
|
|
12164
|
+
};
|
|
12165
|
+
};
|
|
12166
|
+
get_project_git_status_api_factory_v2_projects__project_id__git_status_get: {
|
|
12167
|
+
parameters: {
|
|
12168
|
+
query?: never;
|
|
12169
|
+
header?: never;
|
|
12170
|
+
path: {
|
|
12171
|
+
project_id: number;
|
|
12172
|
+
};
|
|
12173
|
+
cookie?: never;
|
|
12174
|
+
};
|
|
12175
|
+
requestBody?: never;
|
|
12176
|
+
responses: {
|
|
12177
|
+
/** @description Successful Response */
|
|
12178
|
+
200: {
|
|
12179
|
+
headers: {
|
|
12180
|
+
[name: string]: unknown;
|
|
12181
|
+
};
|
|
12182
|
+
content: {
|
|
12183
|
+
"application/json": unknown;
|
|
12184
|
+
};
|
|
12185
|
+
};
|
|
12186
|
+
/** @description Validation Error */
|
|
12187
|
+
422: {
|
|
12188
|
+
headers: {
|
|
12189
|
+
[name: string]: unknown;
|
|
12190
|
+
};
|
|
12191
|
+
content: {
|
|
12192
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12193
|
+
};
|
|
12194
|
+
};
|
|
12195
|
+
};
|
|
12196
|
+
};
|
|
12197
|
+
init_project_git_api_factory_v2_projects__project_id__git_init_post: {
|
|
12198
|
+
parameters: {
|
|
12199
|
+
query?: never;
|
|
12200
|
+
header?: never;
|
|
12201
|
+
path: {
|
|
12202
|
+
project_id: number;
|
|
12203
|
+
};
|
|
12204
|
+
cookie?: never;
|
|
12205
|
+
};
|
|
12206
|
+
requestBody?: never;
|
|
12207
|
+
responses: {
|
|
12208
|
+
/** @description Successful Response */
|
|
12209
|
+
200: {
|
|
12210
|
+
headers: {
|
|
12211
|
+
[name: string]: unknown;
|
|
12212
|
+
};
|
|
12213
|
+
content: {
|
|
12214
|
+
"application/json": unknown;
|
|
12215
|
+
};
|
|
12216
|
+
};
|
|
12217
|
+
/** @description Validation Error */
|
|
12218
|
+
422: {
|
|
12219
|
+
headers: {
|
|
12220
|
+
[name: string]: unknown;
|
|
12221
|
+
};
|
|
12222
|
+
content: {
|
|
12223
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12224
|
+
};
|
|
12225
|
+
};
|
|
12226
|
+
};
|
|
12227
|
+
};
|
|
12228
|
+
stage_project_changes_api_factory_v2_projects__project_id__git_stage_post: {
|
|
12229
|
+
parameters: {
|
|
12230
|
+
query?: never;
|
|
12231
|
+
header?: never;
|
|
12232
|
+
path: {
|
|
12233
|
+
project_id: number;
|
|
12234
|
+
};
|
|
12235
|
+
cookie?: never;
|
|
12236
|
+
};
|
|
12237
|
+
requestBody?: never;
|
|
12238
|
+
responses: {
|
|
12239
|
+
/** @description Successful Response */
|
|
12240
|
+
200: {
|
|
12241
|
+
headers: {
|
|
12242
|
+
[name: string]: unknown;
|
|
12243
|
+
};
|
|
12244
|
+
content: {
|
|
12245
|
+
"application/json": unknown;
|
|
12246
|
+
};
|
|
12247
|
+
};
|
|
12248
|
+
/** @description Validation Error */
|
|
12249
|
+
422: {
|
|
12250
|
+
headers: {
|
|
12251
|
+
[name: string]: unknown;
|
|
12252
|
+
};
|
|
12253
|
+
content: {
|
|
12254
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12255
|
+
};
|
|
12256
|
+
};
|
|
12257
|
+
};
|
|
12258
|
+
};
|
|
12259
|
+
stage_project_file_api_factory_v2_projects__project_id__git_stage_file_post: {
|
|
12260
|
+
parameters: {
|
|
12261
|
+
query?: never;
|
|
12262
|
+
header?: never;
|
|
12263
|
+
path: {
|
|
12264
|
+
project_id: number;
|
|
12265
|
+
};
|
|
12266
|
+
cookie?: never;
|
|
12267
|
+
};
|
|
12268
|
+
requestBody: {
|
|
12269
|
+
content: {
|
|
12270
|
+
"application/json": components["schemas"]["StageGitFileRequest"];
|
|
12271
|
+
};
|
|
12272
|
+
};
|
|
12273
|
+
responses: {
|
|
12274
|
+
/** @description Successful Response */
|
|
12275
|
+
200: {
|
|
12276
|
+
headers: {
|
|
12277
|
+
[name: string]: unknown;
|
|
12278
|
+
};
|
|
12279
|
+
content: {
|
|
12280
|
+
"application/json": unknown;
|
|
12281
|
+
};
|
|
12282
|
+
};
|
|
12283
|
+
/** @description Validation Error */
|
|
12284
|
+
422: {
|
|
12285
|
+
headers: {
|
|
12286
|
+
[name: string]: unknown;
|
|
12287
|
+
};
|
|
12288
|
+
content: {
|
|
12289
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12290
|
+
};
|
|
12291
|
+
};
|
|
12292
|
+
};
|
|
12293
|
+
};
|
|
12294
|
+
commit_and_push_project_api_factory_v2_projects__project_id__git_commit_push_post: {
|
|
12295
|
+
parameters: {
|
|
12296
|
+
query?: never;
|
|
12297
|
+
header?: never;
|
|
12298
|
+
path: {
|
|
12299
|
+
project_id: number;
|
|
12300
|
+
};
|
|
12301
|
+
cookie?: never;
|
|
12302
|
+
};
|
|
12303
|
+
requestBody: {
|
|
12304
|
+
content: {
|
|
12305
|
+
"application/json": components["schemas"]["CommitProjectRequest"];
|
|
12306
|
+
};
|
|
12307
|
+
};
|
|
12308
|
+
responses: {
|
|
12309
|
+
/** @description Successful Response */
|
|
12310
|
+
200: {
|
|
12311
|
+
headers: {
|
|
12312
|
+
[name: string]: unknown;
|
|
12313
|
+
};
|
|
12314
|
+
content: {
|
|
12315
|
+
"application/json": unknown;
|
|
12316
|
+
};
|
|
12317
|
+
};
|
|
12318
|
+
/** @description Validation Error */
|
|
12319
|
+
422: {
|
|
12320
|
+
headers: {
|
|
12321
|
+
[name: string]: unknown;
|
|
12322
|
+
};
|
|
12323
|
+
content: {
|
|
12324
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
12325
|
+
};
|
|
12326
|
+
};
|
|
12327
|
+
};
|
|
12328
|
+
};
|
|
11404
12329
|
list_resources_api_registry_resources_get: {
|
|
11405
12330
|
parameters: {
|
|
11406
12331
|
query?: {
|