@blade-hq/agent-kit 1.0.27 → 1.0.29
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-M72OL7ZJ.js → chunk-HCQDDDOX.js} +2 -2
- package/dist/{chunk-X2NJKKXR.js → chunk-N2OE5MVV.js} +253 -52
- package/dist/chunk-N2OE5MVV.js.map +1 -0
- package/dist/{chunk-C2FKVGJU.js → chunk-PYYDXV2A.js} +2 -2
- package/dist/{chunk-JU5SL4HP.js → chunk-TVWC3PED.js} +2 -2
- package/dist/{chunk-SBASG3M2.js → chunk-UWNQ4PXK.js} +4 -1101
- package/dist/chunk-UWNQ4PXK.js.map +1 -0
- package/dist/{chunk-34GDDOWY.js → chunk-YJ6BX3FU.js} +1379 -31
- package/dist/chunk-YJ6BX3FU.js.map +1 -0
- package/dist/{chunk-TE6G6NVX.js → chunk-YXHPJGXR.js} +27 -13
- package/dist/chunk-YXHPJGXR.js.map +1 -0
- package/dist/client/blade-client.d.ts +2 -0
- package/dist/client/index.d.ts +1 -0
- package/dist/client/index.js +3 -1
- package/dist/client/resources/app-dev-templates.d.ts +93 -0
- package/dist/client/resources/models.d.ts +3 -0
- package/dist/{react → client/shared}/projection/builder.d.ts +1 -1
- package/dist/{react → client/shared}/projection/helpers.d.ts +1 -1
- package/dist/client/shared/projection/history.d.ts +12 -0
- package/dist/{react → client/shared}/projection/index.d.ts +1 -0
- package/dist/{react → client/shared}/projection/state.d.ts +1 -1
- package/dist/client/types/index.d.ts +2 -2
- package/dist/client/types/rest.d.ts +1104 -66
- package/dist/client/types/socket-events.d.ts +18 -132
- package/dist/react/api/app-dev-templates.d.ts +5 -0
- package/dist/react/api/model-config.d.ts +68 -0
- package/dist/react/api/models.d.ts +2 -0
- package/dist/react/api/published-apps.js +3 -3
- package/dist/react/api/sessions.js +2 -2
- package/dist/react/components/chat/AskUserQuestionBlock.d.ts +1 -1
- package/dist/react/components/chat/ChatInput.d.ts +10 -4
- package/dist/react/components/chat/ChatView.d.ts +3 -1
- package/dist/react/components/chat/MessageList.d.ts +3 -1
- package/dist/react/components/chat/index.d.ts +1 -1
- package/dist/react/components/chat/index.js +5 -5
- package/dist/react/components/chat/scroll-anchor.d.ts +8 -0
- package/dist/react/components/plan/index.js +4 -4
- package/dist/react/components/session/index.js +3 -3
- package/dist/react/components/workspace/index.js +3 -3
- package/dist/react/hooks/use-model-preferences.d.ts +1 -0
- package/dist/react/hooks/use-resolved-model.d.ts +1 -0
- package/dist/react/index.d.ts +3 -0
- package/dist/react/index.js +87 -7
- package/dist/react/index.js.map +1 -1
- package/dist/react/schemas/session.d.ts +1 -0
- package/package.json +1 -1
- package/dist/chunk-34GDDOWY.js.map +0 -1
- package/dist/chunk-SBASG3M2.js.map +0 -1
- package/dist/chunk-TE6G6NVX.js.map +0 -1
- package/dist/chunk-X2NJKKXR.js.map +0 -1
- /package/dist/{chunk-M72OL7ZJ.js.map → chunk-HCQDDDOX.js.map} +0 -0
- /package/dist/{chunk-C2FKVGJU.js.map → chunk-PYYDXV2A.js.map} +0 -0
- /package/dist/{chunk-JU5SL4HP.js.map → chunk-TVWC3PED.js.map} +0 -0
|
@@ -897,6 +897,23 @@ export interface paths {
|
|
|
897
897
|
patch: operations["update_session_api_sessions__session_id__patch"];
|
|
898
898
|
trace?: never;
|
|
899
899
|
};
|
|
900
|
+
"/api/sessions/{session_id}/preview-url": {
|
|
901
|
+
parameters: {
|
|
902
|
+
query?: never;
|
|
903
|
+
header?: never;
|
|
904
|
+
path?: never;
|
|
905
|
+
cookie?: never;
|
|
906
|
+
};
|
|
907
|
+
get?: never;
|
|
908
|
+
put?: never;
|
|
909
|
+
/** Register Session Preview */
|
|
910
|
+
post: operations["register_session_preview_api_sessions__session_id__preview_url_post"];
|
|
911
|
+
delete?: never;
|
|
912
|
+
options?: never;
|
|
913
|
+
head?: never;
|
|
914
|
+
patch?: never;
|
|
915
|
+
trace?: never;
|
|
916
|
+
};
|
|
900
917
|
"/api/sessions/{session_id}/env": {
|
|
901
918
|
parameters: {
|
|
902
919
|
query?: never;
|
|
@@ -1852,6 +1869,110 @@ export interface paths {
|
|
|
1852
1869
|
patch?: never;
|
|
1853
1870
|
trace?: never;
|
|
1854
1871
|
};
|
|
1872
|
+
"/api/admin/model-config": {
|
|
1873
|
+
parameters: {
|
|
1874
|
+
query?: never;
|
|
1875
|
+
header?: never;
|
|
1876
|
+
path?: never;
|
|
1877
|
+
cookie?: never;
|
|
1878
|
+
};
|
|
1879
|
+
/** Read Model Configs */
|
|
1880
|
+
get: operations["read_model_configs_api_admin_model_config_get"];
|
|
1881
|
+
put?: never;
|
|
1882
|
+
/** Create Model Config */
|
|
1883
|
+
post: operations["create_model_config_api_admin_model_config_post"];
|
|
1884
|
+
delete?: never;
|
|
1885
|
+
options?: never;
|
|
1886
|
+
head?: never;
|
|
1887
|
+
patch?: never;
|
|
1888
|
+
trace?: never;
|
|
1889
|
+
};
|
|
1890
|
+
"/api/admin/model-config/{config_id}": {
|
|
1891
|
+
parameters: {
|
|
1892
|
+
query?: never;
|
|
1893
|
+
header?: never;
|
|
1894
|
+
path?: never;
|
|
1895
|
+
cookie?: never;
|
|
1896
|
+
};
|
|
1897
|
+
get?: never;
|
|
1898
|
+
/** Update Model Config */
|
|
1899
|
+
put: operations["update_model_config_api_admin_model_config__config_id__put"];
|
|
1900
|
+
post?: never;
|
|
1901
|
+
/** Delete Model Config */
|
|
1902
|
+
delete: operations["delete_model_config_api_admin_model_config__config_id__delete"];
|
|
1903
|
+
options?: never;
|
|
1904
|
+
head?: never;
|
|
1905
|
+
patch?: never;
|
|
1906
|
+
trace?: never;
|
|
1907
|
+
};
|
|
1908
|
+
"/api/admin/model-config/{config_id}/default": {
|
|
1909
|
+
parameters: {
|
|
1910
|
+
query?: never;
|
|
1911
|
+
header?: never;
|
|
1912
|
+
path?: never;
|
|
1913
|
+
cookie?: never;
|
|
1914
|
+
};
|
|
1915
|
+
get?: never;
|
|
1916
|
+
/** Set Default Model Config */
|
|
1917
|
+
put: operations["set_default_model_config_api_admin_model_config__config_id__default_put"];
|
|
1918
|
+
post?: never;
|
|
1919
|
+
delete?: never;
|
|
1920
|
+
options?: never;
|
|
1921
|
+
head?: never;
|
|
1922
|
+
patch?: never;
|
|
1923
|
+
trace?: never;
|
|
1924
|
+
};
|
|
1925
|
+
"/api/admin/model-config/candidates": {
|
|
1926
|
+
parameters: {
|
|
1927
|
+
query?: never;
|
|
1928
|
+
header?: never;
|
|
1929
|
+
path?: never;
|
|
1930
|
+
cookie?: never;
|
|
1931
|
+
};
|
|
1932
|
+
get?: never;
|
|
1933
|
+
put?: never;
|
|
1934
|
+
/** List Model Candidates */
|
|
1935
|
+
post: operations["list_model_candidates_api_admin_model_config_candidates_post"];
|
|
1936
|
+
delete?: never;
|
|
1937
|
+
options?: never;
|
|
1938
|
+
head?: never;
|
|
1939
|
+
patch?: never;
|
|
1940
|
+
trace?: never;
|
|
1941
|
+
};
|
|
1942
|
+
"/api/admin/model-config/detect-context-window": {
|
|
1943
|
+
parameters: {
|
|
1944
|
+
query?: never;
|
|
1945
|
+
header?: never;
|
|
1946
|
+
path?: never;
|
|
1947
|
+
cookie?: never;
|
|
1948
|
+
};
|
|
1949
|
+
get?: never;
|
|
1950
|
+
put?: never;
|
|
1951
|
+
/** Detect Context Window */
|
|
1952
|
+
post: operations["detect_context_window_api_admin_model_config_detect_context_window_post"];
|
|
1953
|
+
delete?: never;
|
|
1954
|
+
options?: never;
|
|
1955
|
+
head?: never;
|
|
1956
|
+
patch?: never;
|
|
1957
|
+
trace?: never;
|
|
1958
|
+
};
|
|
1959
|
+
"/api/admin/model-config/test": {
|
|
1960
|
+
parameters: {
|
|
1961
|
+
query?: never;
|
|
1962
|
+
header?: never;
|
|
1963
|
+
path?: never;
|
|
1964
|
+
cookie?: never;
|
|
1965
|
+
};
|
|
1966
|
+
get?: never;
|
|
1967
|
+
put?: never;
|
|
1968
|
+
/** Test Model Config */
|
|
1969
|
+
post: operations["test_model_config_api_admin_model_config_test_post"];
|
|
1970
|
+
delete?: never;
|
|
1971
|
+
options?: never;
|
|
1972
|
+
head?: never;
|
|
1973
|
+
patch?: never;
|
|
1974
|
+
trace?: never;
|
|
1975
|
+
};
|
|
1855
1976
|
"/api/env/platform": {
|
|
1856
1977
|
parameters: {
|
|
1857
1978
|
query?: never;
|
|
@@ -3433,6 +3554,109 @@ export interface paths {
|
|
|
3433
3554
|
patch?: never;
|
|
3434
3555
|
trace?: never;
|
|
3435
3556
|
};
|
|
3557
|
+
"/api/app-dev/templates": {
|
|
3558
|
+
parameters: {
|
|
3559
|
+
query?: never;
|
|
3560
|
+
header?: never;
|
|
3561
|
+
path?: never;
|
|
3562
|
+
cookie?: never;
|
|
3563
|
+
};
|
|
3564
|
+
/** List App Dev Templates */
|
|
3565
|
+
get: operations["list_app_dev_templates_api_app_dev_templates_get"];
|
|
3566
|
+
put?: never;
|
|
3567
|
+
post?: never;
|
|
3568
|
+
delete?: never;
|
|
3569
|
+
options?: never;
|
|
3570
|
+
head?: never;
|
|
3571
|
+
patch?: never;
|
|
3572
|
+
trace?: never;
|
|
3573
|
+
};
|
|
3574
|
+
"/api/app-dev/templates/{slug}": {
|
|
3575
|
+
parameters: {
|
|
3576
|
+
query?: never;
|
|
3577
|
+
header?: never;
|
|
3578
|
+
path?: never;
|
|
3579
|
+
cookie?: never;
|
|
3580
|
+
};
|
|
3581
|
+
/** Get App Dev Template */
|
|
3582
|
+
get: operations["get_app_dev_template_api_app_dev_templates__slug__get"];
|
|
3583
|
+
put?: never;
|
|
3584
|
+
post?: never;
|
|
3585
|
+
delete?: never;
|
|
3586
|
+
options?: never;
|
|
3587
|
+
head?: never;
|
|
3588
|
+
patch?: never;
|
|
3589
|
+
trace?: never;
|
|
3590
|
+
};
|
|
3591
|
+
"/api/app-dev/templates/{slug}/media/{media_path}": {
|
|
3592
|
+
parameters: {
|
|
3593
|
+
query?: never;
|
|
3594
|
+
header?: never;
|
|
3595
|
+
path?: never;
|
|
3596
|
+
cookie?: never;
|
|
3597
|
+
};
|
|
3598
|
+
/** Get App Dev Template Media */
|
|
3599
|
+
get: operations["get_app_dev_template_media_api_app_dev_templates__slug__media__media_path__get"];
|
|
3600
|
+
put?: never;
|
|
3601
|
+
post?: never;
|
|
3602
|
+
delete?: never;
|
|
3603
|
+
options?: never;
|
|
3604
|
+
head?: never;
|
|
3605
|
+
patch?: never;
|
|
3606
|
+
trace?: never;
|
|
3607
|
+
};
|
|
3608
|
+
"/api/app-dev/templates/{slug}/download": {
|
|
3609
|
+
parameters: {
|
|
3610
|
+
query?: never;
|
|
3611
|
+
header?: never;
|
|
3612
|
+
path?: never;
|
|
3613
|
+
cookie?: never;
|
|
3614
|
+
};
|
|
3615
|
+
/** Download App Dev Template */
|
|
3616
|
+
get: operations["download_app_dev_template_api_app_dev_templates__slug__download_get"];
|
|
3617
|
+
put?: never;
|
|
3618
|
+
post?: never;
|
|
3619
|
+
delete?: never;
|
|
3620
|
+
options?: never;
|
|
3621
|
+
head?: never;
|
|
3622
|
+
patch?: never;
|
|
3623
|
+
trace?: never;
|
|
3624
|
+
};
|
|
3625
|
+
"/api/agent-board/projects/favorites": {
|
|
3626
|
+
parameters: {
|
|
3627
|
+
query?: never;
|
|
3628
|
+
header?: never;
|
|
3629
|
+
path?: never;
|
|
3630
|
+
cookie?: never;
|
|
3631
|
+
};
|
|
3632
|
+
/** List Favorite Projects */
|
|
3633
|
+
get: operations["list_favorite_projects_api_agent_board_projects_favorites_get"];
|
|
3634
|
+
put?: never;
|
|
3635
|
+
post?: never;
|
|
3636
|
+
delete?: never;
|
|
3637
|
+
options?: never;
|
|
3638
|
+
head?: never;
|
|
3639
|
+
patch?: never;
|
|
3640
|
+
trace?: never;
|
|
3641
|
+
};
|
|
3642
|
+
"/api/agent-board/projects/{project_id}/favorite": {
|
|
3643
|
+
parameters: {
|
|
3644
|
+
query?: never;
|
|
3645
|
+
header?: never;
|
|
3646
|
+
path?: never;
|
|
3647
|
+
cookie?: never;
|
|
3648
|
+
};
|
|
3649
|
+
get?: never;
|
|
3650
|
+
/** Favorite Project */
|
|
3651
|
+
put: operations["favorite_project_api_agent_board_projects__project_id__favorite_put"];
|
|
3652
|
+
post?: never;
|
|
3653
|
+
/** Unfavorite Project */
|
|
3654
|
+
delete: operations["unfavorite_project_api_agent_board_projects__project_id__favorite_delete"];
|
|
3655
|
+
options?: never;
|
|
3656
|
+
head?: never;
|
|
3657
|
+
patch?: never;
|
|
3658
|
+
trace?: never;
|
|
3659
|
+
};
|
|
3436
3660
|
"/api/agent-board/ls/{dir_path}": {
|
|
3437
3661
|
parameters: {
|
|
3438
3662
|
query?: never;
|
|
@@ -4636,6 +4860,15 @@ export interface components {
|
|
|
4636
4860
|
/** Target Version */
|
|
4637
4861
|
target_version: string | null;
|
|
4638
4862
|
};
|
|
4863
|
+
/** ContextWindowDetectionResponse */
|
|
4864
|
+
ContextWindowDetectionResponse: {
|
|
4865
|
+
/** Provider Name */
|
|
4866
|
+
provider_name: string;
|
|
4867
|
+
/** Model Id */
|
|
4868
|
+
model_id: string;
|
|
4869
|
+
/** Context Window */
|
|
4870
|
+
context_window: number;
|
|
4871
|
+
};
|
|
4639
4872
|
/** CreateAgentBizRoleRequest */
|
|
4640
4873
|
CreateAgentBizRoleRequest: {
|
|
4641
4874
|
/** Name */
|
|
@@ -4898,6 +5131,10 @@ export interface components {
|
|
|
4898
5131
|
model?: string | null;
|
|
4899
5132
|
/** Browser Safety Context */
|
|
4900
5133
|
browser_safety_context?: string | null;
|
|
5134
|
+
/** Askuser Answer */
|
|
5135
|
+
askuser_answer?: {
|
|
5136
|
+
[key: string]: unknown;
|
|
5137
|
+
} | null;
|
|
4901
5138
|
};
|
|
4902
5139
|
/** FrontendTelemetryPayload */
|
|
4903
5140
|
FrontendTelemetryPayload: {
|
|
@@ -5021,6 +5258,70 @@ export interface components {
|
|
|
5021
5258
|
/** Write Reason */
|
|
5022
5259
|
write_reason?: string | null;
|
|
5023
5260
|
};
|
|
5261
|
+
/** ModelCandidatesRequest */
|
|
5262
|
+
ModelCandidatesRequest: {
|
|
5263
|
+
provider: components["schemas"]["ProviderConfigInput"];
|
|
5264
|
+
/** Config Id */
|
|
5265
|
+
config_id?: string | null;
|
|
5266
|
+
};
|
|
5267
|
+
/** ModelCandidatesResponse */
|
|
5268
|
+
ModelCandidatesResponse: {
|
|
5269
|
+
/** Provider Name */
|
|
5270
|
+
provider_name: string;
|
|
5271
|
+
/** Models */
|
|
5272
|
+
models: string[];
|
|
5273
|
+
};
|
|
5274
|
+
/** ModelConfigCollectionResponse */
|
|
5275
|
+
ModelConfigCollectionResponse: {
|
|
5276
|
+
/** Items */
|
|
5277
|
+
items: components["schemas"]["ModelConfigResponse"][];
|
|
5278
|
+
/** Default Config Id */
|
|
5279
|
+
default_config_id: string;
|
|
5280
|
+
/** Source */
|
|
5281
|
+
source: string;
|
|
5282
|
+
};
|
|
5283
|
+
/** ModelConfigInput */
|
|
5284
|
+
ModelConfigInput: {
|
|
5285
|
+
provider: components["schemas"]["ProviderConfigInput"];
|
|
5286
|
+
model: components["schemas"]["ModelDetailsInput"];
|
|
5287
|
+
};
|
|
5288
|
+
/** ModelConfigResponse */
|
|
5289
|
+
ModelConfigResponse: {
|
|
5290
|
+
/** Id */
|
|
5291
|
+
id: string;
|
|
5292
|
+
provider: components["schemas"]["ProviderConfigResponse"];
|
|
5293
|
+
model: components["schemas"]["ModelDetailsResponse"];
|
|
5294
|
+
};
|
|
5295
|
+
/** ModelConfigTestResponse */
|
|
5296
|
+
ModelConfigTestResponse: {
|
|
5297
|
+
/** Ok */
|
|
5298
|
+
ok: boolean;
|
|
5299
|
+
/** Provider Name */
|
|
5300
|
+
provider_name: string;
|
|
5301
|
+
/** Model Id */
|
|
5302
|
+
model_id: string;
|
|
5303
|
+
};
|
|
5304
|
+
/** ModelDetailsInput */
|
|
5305
|
+
ModelDetailsInput: {
|
|
5306
|
+
/** Id */
|
|
5307
|
+
id: string;
|
|
5308
|
+
/** Context Window */
|
|
5309
|
+
context_window: number;
|
|
5310
|
+
/**
|
|
5311
|
+
* Supports Vision
|
|
5312
|
+
* @default true
|
|
5313
|
+
*/
|
|
5314
|
+
supports_vision: boolean;
|
|
5315
|
+
};
|
|
5316
|
+
/** ModelDetailsResponse */
|
|
5317
|
+
ModelDetailsResponse: {
|
|
5318
|
+
/** Id */
|
|
5319
|
+
id: string;
|
|
5320
|
+
/** Context Window */
|
|
5321
|
+
context_window: number;
|
|
5322
|
+
/** Supports Vision */
|
|
5323
|
+
supports_vision: boolean;
|
|
5324
|
+
};
|
|
5024
5325
|
/** ModelOption */
|
|
5025
5326
|
ModelOption: {
|
|
5026
5327
|
/** Id */
|
|
@@ -5034,6 +5335,19 @@ export interface components {
|
|
|
5034
5335
|
* @default false
|
|
5035
5336
|
*/
|
|
5036
5337
|
supportsImage: boolean;
|
|
5338
|
+
/**
|
|
5339
|
+
* Thinkingavailable
|
|
5340
|
+
* @default false
|
|
5341
|
+
*/
|
|
5342
|
+
thinkingAvailable: boolean;
|
|
5343
|
+
};
|
|
5344
|
+
/** ModelProbeRequest */
|
|
5345
|
+
ModelProbeRequest: {
|
|
5346
|
+
provider: components["schemas"]["ProviderConfigInput"];
|
|
5347
|
+
/** Model Id */
|
|
5348
|
+
model_id: string;
|
|
5349
|
+
/** Config Id */
|
|
5350
|
+
config_id?: string | null;
|
|
5037
5351
|
};
|
|
5038
5352
|
/** ModelsConfig */
|
|
5039
5353
|
ModelsConfig: {
|
|
@@ -5042,6 +5356,11 @@ export interface components {
|
|
|
5042
5356
|
* @default
|
|
5043
5357
|
*/
|
|
5044
5358
|
default: string;
|
|
5359
|
+
/**
|
|
5360
|
+
* Thinkingavailable
|
|
5361
|
+
* @default false
|
|
5362
|
+
*/
|
|
5363
|
+
thinkingAvailable: boolean;
|
|
5045
5364
|
/** Models */
|
|
5046
5365
|
models?: components["schemas"]["ModelOption"][];
|
|
5047
5366
|
};
|
|
@@ -5064,6 +5383,38 @@ export interface components {
|
|
|
5064
5383
|
/** Url */
|
|
5065
5384
|
url: string;
|
|
5066
5385
|
};
|
|
5386
|
+
/** ProviderConfigInput */
|
|
5387
|
+
ProviderConfigInput: {
|
|
5388
|
+
/** Base Url */
|
|
5389
|
+
base_url: string;
|
|
5390
|
+
/** Api Key */
|
|
5391
|
+
api_key?: string | null;
|
|
5392
|
+
/**
|
|
5393
|
+
* Thinking Request Format
|
|
5394
|
+
* @default auto
|
|
5395
|
+
* @enum {string}
|
|
5396
|
+
*/
|
|
5397
|
+
thinking_request_format: "auto" | "none" | "openai_reasoning_effort" | "openrouter_reasoning" | "deepseek_thinking" | "together_reasoning" | "zai_thinking" | "qwen_enable_thinking" | "sglang_chat_template";
|
|
5398
|
+
};
|
|
5399
|
+
/** ProviderConfigResponse */
|
|
5400
|
+
ProviderConfigResponse: {
|
|
5401
|
+
/** Name */
|
|
5402
|
+
name: string;
|
|
5403
|
+
/** Base Url */
|
|
5404
|
+
base_url: string;
|
|
5405
|
+
/** Api Key Configured */
|
|
5406
|
+
api_key_configured: boolean;
|
|
5407
|
+
/**
|
|
5408
|
+
* Thinking Request Format
|
|
5409
|
+
* @enum {string}
|
|
5410
|
+
*/
|
|
5411
|
+
thinking_request_format: "auto" | "none" | "openai_reasoning_effort" | "openrouter_reasoning" | "deepseek_thinking" | "together_reasoning" | "zai_thinking" | "qwen_enable_thinking" | "sglang_chat_template";
|
|
5412
|
+
/**
|
|
5413
|
+
* Effective Thinking Request Format
|
|
5414
|
+
* @enum {string}
|
|
5415
|
+
*/
|
|
5416
|
+
effective_thinking_request_format: "none" | "openai_reasoning_effort" | "openrouter_reasoning" | "deepseek_thinking" | "together_reasoning" | "zai_thinking" | "qwen_enable_thinking" | "sglang_chat_template";
|
|
5417
|
+
};
|
|
5067
5418
|
/** PublishArchitectureRequest */
|
|
5068
5419
|
PublishArchitectureRequest: {
|
|
5069
5420
|
architecture?: components["schemas"]["ArchitecturePayload"] | null;
|
|
@@ -5110,6 +5461,11 @@ export interface components {
|
|
|
5110
5461
|
/** Updated At */
|
|
5111
5462
|
updated_at: string;
|
|
5112
5463
|
};
|
|
5464
|
+
/** RegisterSessionPreviewRequest */
|
|
5465
|
+
RegisterSessionPreviewRequest: {
|
|
5466
|
+
/** Url */
|
|
5467
|
+
url: string;
|
|
5468
|
+
};
|
|
5113
5469
|
/** RegisterSessionRequest */
|
|
5114
5470
|
RegisterSessionRequest: {
|
|
5115
5471
|
/** Session Id */
|
|
@@ -5507,34 +5863,224 @@ export interface components {
|
|
|
5507
5863
|
/** Org */
|
|
5508
5864
|
org: string;
|
|
5509
5865
|
};
|
|
5510
|
-
/**
|
|
5511
|
-
|
|
5512
|
-
/**
|
|
5513
|
-
|
|
5514
|
-
/**
|
|
5866
|
+
/** SoftwareFactoryTemplateAgent */
|
|
5867
|
+
SoftwareFactoryTemplateAgent: {
|
|
5868
|
+
/** Key */
|
|
5869
|
+
key?: string | null;
|
|
5870
|
+
/**
|
|
5871
|
+
* Name
|
|
5872
|
+
* @default
|
|
5873
|
+
*/
|
|
5515
5874
|
name: string;
|
|
5875
|
+
/** Role */
|
|
5876
|
+
role?: string | null;
|
|
5877
|
+
/** Description */
|
|
5878
|
+
description?: string | null;
|
|
5516
5879
|
/**
|
|
5517
|
-
*
|
|
5518
|
-
* @default
|
|
5880
|
+
* Default
|
|
5881
|
+
* @default false
|
|
5519
5882
|
*/
|
|
5520
|
-
|
|
5883
|
+
default: boolean;
|
|
5521
5884
|
};
|
|
5522
|
-
/**
|
|
5523
|
-
|
|
5885
|
+
/** SoftwareFactoryTemplateBadge */
|
|
5886
|
+
SoftwareFactoryTemplateBadge: {
|
|
5887
|
+
/** Text */
|
|
5888
|
+
text?: string | null;
|
|
5889
|
+
/** Color */
|
|
5890
|
+
color?: string | null;
|
|
5891
|
+
};
|
|
5892
|
+
/** SoftwareFactoryTemplateCategory */
|
|
5893
|
+
SoftwareFactoryTemplateCategory: {
|
|
5894
|
+
/** Id */
|
|
5895
|
+
id: string;
|
|
5896
|
+
/** Label */
|
|
5897
|
+
label: string;
|
|
5898
|
+
};
|
|
5899
|
+
/** SoftwareFactoryTemplateCoverImage */
|
|
5900
|
+
SoftwareFactoryTemplateCoverImage: {
|
|
5524
5901
|
/** Path */
|
|
5525
|
-
path
|
|
5902
|
+
path?: string | null;
|
|
5903
|
+
/** Alt */
|
|
5904
|
+
alt?: string | null;
|
|
5526
5905
|
};
|
|
5527
|
-
/**
|
|
5528
|
-
|
|
5529
|
-
/**
|
|
5530
|
-
|
|
5531
|
-
/**
|
|
5532
|
-
|
|
5533
|
-
/**
|
|
5534
|
-
|
|
5535
|
-
/**
|
|
5536
|
-
|
|
5537
|
-
/**
|
|
5906
|
+
/** SoftwareFactoryTemplateDemoVideo */
|
|
5907
|
+
SoftwareFactoryTemplateDemoVideo: {
|
|
5908
|
+
/** Path */
|
|
5909
|
+
path?: string | null;
|
|
5910
|
+
/** Mime Type */
|
|
5911
|
+
mime_type?: string | null;
|
|
5912
|
+
/** Size Bytes */
|
|
5913
|
+
size_bytes?: number | null;
|
|
5914
|
+
/** Duration Seconds */
|
|
5915
|
+
duration_seconds?: number | null;
|
|
5916
|
+
/** Poster */
|
|
5917
|
+
poster?: string | null;
|
|
5918
|
+
/** Title */
|
|
5919
|
+
title?: string | null;
|
|
5920
|
+
/** Description */
|
|
5921
|
+
description?: string | null;
|
|
5922
|
+
};
|
|
5923
|
+
/** SoftwareFactoryTemplateDetail */
|
|
5924
|
+
SoftwareFactoryTemplateDetail: {
|
|
5925
|
+
/** Slug */
|
|
5926
|
+
slug: string;
|
|
5927
|
+
/** Title */
|
|
5928
|
+
title: string;
|
|
5929
|
+
/**
|
|
5930
|
+
* Summary
|
|
5931
|
+
* @default
|
|
5932
|
+
*/
|
|
5933
|
+
summary: string;
|
|
5934
|
+
category: components["schemas"]["SoftwareFactoryTemplateCategory"];
|
|
5935
|
+
badge?: components["schemas"]["SoftwareFactoryTemplateBadge"] | null;
|
|
5936
|
+
meta?: components["schemas"]["SoftwareFactoryTemplateMeta"];
|
|
5937
|
+
/** Cover */
|
|
5938
|
+
cover?: string | null;
|
|
5939
|
+
/**
|
|
5940
|
+
* Order
|
|
5941
|
+
* @default 0
|
|
5942
|
+
*/
|
|
5943
|
+
order: number;
|
|
5944
|
+
/**
|
|
5945
|
+
* Description
|
|
5946
|
+
* @default
|
|
5947
|
+
*/
|
|
5948
|
+
description: string;
|
|
5949
|
+
media?: components["schemas"]["SoftwareFactoryTemplateMedia"];
|
|
5950
|
+
/** Included */
|
|
5951
|
+
included?: string[];
|
|
5952
|
+
/** Usage Steps */
|
|
5953
|
+
usage_steps?: components["schemas"]["SoftwareFactoryTemplateUsageStep"][];
|
|
5954
|
+
/** Creation */
|
|
5955
|
+
creation?: {
|
|
5956
|
+
[key: string]: unknown;
|
|
5957
|
+
} | null;
|
|
5958
|
+
/** Capabilities */
|
|
5959
|
+
capabilities?: string[];
|
|
5960
|
+
/** Agents */
|
|
5961
|
+
agents?: components["schemas"]["SoftwareFactoryTemplateAgent"][];
|
|
5962
|
+
/** Outputs */
|
|
5963
|
+
outputs?: components["schemas"]["SoftwareFactoryTemplateOutput"][];
|
|
5964
|
+
};
|
|
5965
|
+
/** SoftwareFactoryTemplateListResponse */
|
|
5966
|
+
SoftwareFactoryTemplateListResponse: {
|
|
5967
|
+
/** Items */
|
|
5968
|
+
items: components["schemas"]["SoftwareFactoryTemplateSummary"][];
|
|
5969
|
+
/** Total */
|
|
5970
|
+
total: number;
|
|
5971
|
+
/** Offset */
|
|
5972
|
+
offset: number;
|
|
5973
|
+
/** Limit */
|
|
5974
|
+
limit: number;
|
|
5975
|
+
};
|
|
5976
|
+
/** SoftwareFactoryTemplateMedia */
|
|
5977
|
+
SoftwareFactoryTemplateMedia: {
|
|
5978
|
+
cover?: components["schemas"]["SoftwareFactoryTemplateCoverImage"] | null;
|
|
5979
|
+
demo_video?: components["schemas"]["SoftwareFactoryTemplateDemoVideo"] | null;
|
|
5980
|
+
/** Screenshots */
|
|
5981
|
+
screenshots?: components["schemas"]["SoftwareFactoryTemplateScreenshot"][];
|
|
5982
|
+
};
|
|
5983
|
+
/** SoftwareFactoryTemplateMeta */
|
|
5984
|
+
SoftwareFactoryTemplateMeta: {
|
|
5985
|
+
/** Stack */
|
|
5986
|
+
stack?: string[];
|
|
5987
|
+
/** Fit */
|
|
5988
|
+
fit?: string[];
|
|
5989
|
+
/** Tags */
|
|
5990
|
+
tags?: string[];
|
|
5991
|
+
/** Difficulty */
|
|
5992
|
+
difficulty?: string | null;
|
|
5993
|
+
/** Estimated Minutes */
|
|
5994
|
+
estimated_minutes?: number | null;
|
|
5995
|
+
/** Author */
|
|
5996
|
+
author?: string | null;
|
|
5997
|
+
/** Updated At */
|
|
5998
|
+
updated_at?: string | null;
|
|
5999
|
+
};
|
|
6000
|
+
/** SoftwareFactoryTemplateOutput */
|
|
6001
|
+
SoftwareFactoryTemplateOutput: {
|
|
6002
|
+
/** Type */
|
|
6003
|
+
type?: string | null;
|
|
6004
|
+
/**
|
|
6005
|
+
* Name
|
|
6006
|
+
* @default
|
|
6007
|
+
*/
|
|
6008
|
+
name: string;
|
|
6009
|
+
/** Description */
|
|
6010
|
+
description?: string | null;
|
|
6011
|
+
};
|
|
6012
|
+
/** SoftwareFactoryTemplateScreenshot */
|
|
6013
|
+
SoftwareFactoryTemplateScreenshot: {
|
|
6014
|
+
/** Path */
|
|
6015
|
+
path?: string | null;
|
|
6016
|
+
/** Title */
|
|
6017
|
+
title?: string | null;
|
|
6018
|
+
};
|
|
6019
|
+
/** SoftwareFactoryTemplateSummary */
|
|
6020
|
+
SoftwareFactoryTemplateSummary: {
|
|
6021
|
+
/** Slug */
|
|
6022
|
+
slug: string;
|
|
6023
|
+
/** Title */
|
|
6024
|
+
title: string;
|
|
6025
|
+
/**
|
|
6026
|
+
* Summary
|
|
6027
|
+
* @default
|
|
6028
|
+
*/
|
|
6029
|
+
summary: string;
|
|
6030
|
+
category: components["schemas"]["SoftwareFactoryTemplateCategory"];
|
|
6031
|
+
badge?: components["schemas"]["SoftwareFactoryTemplateBadge"] | null;
|
|
6032
|
+
meta?: components["schemas"]["SoftwareFactoryTemplateMeta"];
|
|
6033
|
+
/** Cover */
|
|
6034
|
+
cover?: string | null;
|
|
6035
|
+
/**
|
|
6036
|
+
* Order
|
|
6037
|
+
* @default 0
|
|
6038
|
+
*/
|
|
6039
|
+
order: number;
|
|
6040
|
+
};
|
|
6041
|
+
/** SoftwareFactoryTemplateUsageStep */
|
|
6042
|
+
SoftwareFactoryTemplateUsageStep: {
|
|
6043
|
+
/**
|
|
6044
|
+
* Step
|
|
6045
|
+
* @default 0
|
|
6046
|
+
*/
|
|
6047
|
+
step: number;
|
|
6048
|
+
/**
|
|
6049
|
+
* Title
|
|
6050
|
+
* @default
|
|
6051
|
+
*/
|
|
6052
|
+
title: string;
|
|
6053
|
+
/** Description */
|
|
6054
|
+
description?: string | null;
|
|
6055
|
+
};
|
|
6056
|
+
/** SolutionPublishRequest */
|
|
6057
|
+
SolutionPublishRequest: {
|
|
6058
|
+
/** Org */
|
|
6059
|
+
org: string;
|
|
6060
|
+
/** Name */
|
|
6061
|
+
name: string;
|
|
6062
|
+
/**
|
|
6063
|
+
* Overwrite
|
|
6064
|
+
* @default true
|
|
6065
|
+
*/
|
|
6066
|
+
overwrite: boolean;
|
|
6067
|
+
};
|
|
6068
|
+
/** StageGitFileRequest */
|
|
6069
|
+
StageGitFileRequest: {
|
|
6070
|
+
/** Path */
|
|
6071
|
+
path: string;
|
|
6072
|
+
};
|
|
6073
|
+
/** SystemInfo */
|
|
6074
|
+
SystemInfo: {
|
|
6075
|
+
/** Python Version */
|
|
6076
|
+
python_version: string;
|
|
6077
|
+
/** Platform */
|
|
6078
|
+
platform: string;
|
|
6079
|
+
/** Architecture */
|
|
6080
|
+
architecture: string;
|
|
6081
|
+
/** Hostname */
|
|
6082
|
+
hostname: string;
|
|
6083
|
+
/** Git */
|
|
5538
6084
|
git: {
|
|
5539
6085
|
[key: string]: string;
|
|
5540
6086
|
};
|
|
@@ -7474,6 +8020,41 @@ export interface operations {
|
|
|
7474
8020
|
};
|
|
7475
8021
|
};
|
|
7476
8022
|
};
|
|
8023
|
+
register_session_preview_api_sessions__session_id__preview_url_post: {
|
|
8024
|
+
parameters: {
|
|
8025
|
+
query?: never;
|
|
8026
|
+
header?: never;
|
|
8027
|
+
path: {
|
|
8028
|
+
session_id: string;
|
|
8029
|
+
};
|
|
8030
|
+
cookie?: never;
|
|
8031
|
+
};
|
|
8032
|
+
requestBody: {
|
|
8033
|
+
content: {
|
|
8034
|
+
"application/json": components["schemas"]["RegisterSessionPreviewRequest"];
|
|
8035
|
+
};
|
|
8036
|
+
};
|
|
8037
|
+
responses: {
|
|
8038
|
+
/** @description Successful Response */
|
|
8039
|
+
200: {
|
|
8040
|
+
headers: {
|
|
8041
|
+
[name: string]: unknown;
|
|
8042
|
+
};
|
|
8043
|
+
content: {
|
|
8044
|
+
"application/json": unknown;
|
|
8045
|
+
};
|
|
8046
|
+
};
|
|
8047
|
+
/** @description Validation Error */
|
|
8048
|
+
422: {
|
|
8049
|
+
headers: {
|
|
8050
|
+
[name: string]: unknown;
|
|
8051
|
+
};
|
|
8052
|
+
content: {
|
|
8053
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
8054
|
+
};
|
|
8055
|
+
};
|
|
8056
|
+
};
|
|
8057
|
+
};
|
|
7477
8058
|
update_session_env_api_sessions__session_id__env_put: {
|
|
7478
8059
|
parameters: {
|
|
7479
8060
|
query?: never;
|
|
@@ -9413,7 +9994,7 @@ export interface operations {
|
|
|
9413
9994
|
};
|
|
9414
9995
|
};
|
|
9415
9996
|
};
|
|
9416
|
-
|
|
9997
|
+
read_model_configs_api_admin_model_config_get: {
|
|
9417
9998
|
parameters: {
|
|
9418
9999
|
query?: never;
|
|
9419
10000
|
header?: never;
|
|
@@ -9428,19 +10009,23 @@ export interface operations {
|
|
|
9428
10009
|
[name: string]: unknown;
|
|
9429
10010
|
};
|
|
9430
10011
|
content: {
|
|
9431
|
-
"application/json": components["schemas"]["
|
|
10012
|
+
"application/json": components["schemas"]["ModelConfigCollectionResponse"];
|
|
9432
10013
|
};
|
|
9433
10014
|
};
|
|
9434
10015
|
};
|
|
9435
10016
|
};
|
|
9436
|
-
|
|
10017
|
+
create_model_config_api_admin_model_config_post: {
|
|
9437
10018
|
parameters: {
|
|
9438
10019
|
query?: never;
|
|
9439
10020
|
header?: never;
|
|
9440
10021
|
path?: never;
|
|
9441
10022
|
cookie?: never;
|
|
9442
10023
|
};
|
|
9443
|
-
requestBody
|
|
10024
|
+
requestBody: {
|
|
10025
|
+
content: {
|
|
10026
|
+
"application/json": components["schemas"]["ModelConfigInput"];
|
|
10027
|
+
};
|
|
10028
|
+
};
|
|
9444
10029
|
responses: {
|
|
9445
10030
|
/** @description Successful Response */
|
|
9446
10031
|
200: {
|
|
@@ -9448,31 +10033,42 @@ export interface operations {
|
|
|
9448
10033
|
[name: string]: unknown;
|
|
9449
10034
|
};
|
|
9450
10035
|
content: {
|
|
9451
|
-
"application/json": components["schemas"]["
|
|
10036
|
+
"application/json": components["schemas"]["ModelConfigCollectionResponse"];
|
|
10037
|
+
};
|
|
10038
|
+
};
|
|
10039
|
+
/** @description Validation Error */
|
|
10040
|
+
422: {
|
|
10041
|
+
headers: {
|
|
10042
|
+
[name: string]: unknown;
|
|
10043
|
+
};
|
|
10044
|
+
content: {
|
|
10045
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
9452
10046
|
};
|
|
9453
10047
|
};
|
|
9454
10048
|
};
|
|
9455
10049
|
};
|
|
9456
|
-
|
|
10050
|
+
update_model_config_api_admin_model_config__config_id__put: {
|
|
9457
10051
|
parameters: {
|
|
9458
10052
|
query?: never;
|
|
9459
10053
|
header?: never;
|
|
9460
|
-
path
|
|
10054
|
+
path: {
|
|
10055
|
+
config_id: string;
|
|
10056
|
+
};
|
|
9461
10057
|
cookie?: never;
|
|
9462
10058
|
};
|
|
9463
10059
|
requestBody: {
|
|
9464
10060
|
content: {
|
|
9465
|
-
"application/json": components["schemas"]["
|
|
10061
|
+
"application/json": components["schemas"]["ModelConfigInput"];
|
|
9466
10062
|
};
|
|
9467
10063
|
};
|
|
9468
10064
|
responses: {
|
|
9469
10065
|
/** @description Successful Response */
|
|
9470
|
-
|
|
10066
|
+
200: {
|
|
9471
10067
|
headers: {
|
|
9472
10068
|
[name: string]: unknown;
|
|
9473
10069
|
};
|
|
9474
10070
|
content: {
|
|
9475
|
-
"application/json": components["schemas"]["
|
|
10071
|
+
"application/json": components["schemas"]["ModelConfigCollectionResponse"];
|
|
9476
10072
|
};
|
|
9477
10073
|
};
|
|
9478
10074
|
/** @description Validation Error */
|
|
@@ -9486,12 +10082,12 @@ export interface operations {
|
|
|
9486
10082
|
};
|
|
9487
10083
|
};
|
|
9488
10084
|
};
|
|
9489
|
-
|
|
10085
|
+
delete_model_config_api_admin_model_config__config_id__delete: {
|
|
9490
10086
|
parameters: {
|
|
9491
10087
|
query?: never;
|
|
9492
10088
|
header?: never;
|
|
9493
10089
|
path: {
|
|
9494
|
-
|
|
10090
|
+
config_id: string;
|
|
9495
10091
|
};
|
|
9496
10092
|
cookie?: never;
|
|
9497
10093
|
};
|
|
@@ -9503,7 +10099,7 @@ export interface operations {
|
|
|
9503
10099
|
[name: string]: unknown;
|
|
9504
10100
|
};
|
|
9505
10101
|
content: {
|
|
9506
|
-
"application/json": components["schemas"]["
|
|
10102
|
+
"application/json": components["schemas"]["ModelConfigCollectionResponse"];
|
|
9507
10103
|
};
|
|
9508
10104
|
};
|
|
9509
10105
|
/** @description Validation Error */
|
|
@@ -9517,23 +10113,25 @@ export interface operations {
|
|
|
9517
10113
|
};
|
|
9518
10114
|
};
|
|
9519
10115
|
};
|
|
9520
|
-
|
|
10116
|
+
set_default_model_config_api_admin_model_config__config_id__default_put: {
|
|
9521
10117
|
parameters: {
|
|
9522
10118
|
query?: never;
|
|
9523
10119
|
header?: never;
|
|
9524
10120
|
path: {
|
|
9525
|
-
|
|
10121
|
+
config_id: string;
|
|
9526
10122
|
};
|
|
9527
10123
|
cookie?: never;
|
|
9528
10124
|
};
|
|
9529
10125
|
requestBody?: never;
|
|
9530
10126
|
responses: {
|
|
9531
10127
|
/** @description Successful Response */
|
|
9532
|
-
|
|
10128
|
+
200: {
|
|
9533
10129
|
headers: {
|
|
9534
10130
|
[name: string]: unknown;
|
|
9535
10131
|
};
|
|
9536
|
-
content
|
|
10132
|
+
content: {
|
|
10133
|
+
"application/json": components["schemas"]["ModelConfigCollectionResponse"];
|
|
10134
|
+
};
|
|
9537
10135
|
};
|
|
9538
10136
|
/** @description Validation Error */
|
|
9539
10137
|
422: {
|
|
@@ -9546,18 +10144,16 @@ export interface operations {
|
|
|
9546
10144
|
};
|
|
9547
10145
|
};
|
|
9548
10146
|
};
|
|
9549
|
-
|
|
10147
|
+
list_model_candidates_api_admin_model_config_candidates_post: {
|
|
9550
10148
|
parameters: {
|
|
9551
10149
|
query?: never;
|
|
9552
10150
|
header?: never;
|
|
9553
|
-
path
|
|
9554
|
-
key_id: string;
|
|
9555
|
-
};
|
|
10151
|
+
path?: never;
|
|
9556
10152
|
cookie?: never;
|
|
9557
10153
|
};
|
|
9558
10154
|
requestBody: {
|
|
9559
10155
|
content: {
|
|
9560
|
-
"application/json": components["schemas"]["
|
|
10156
|
+
"application/json": components["schemas"]["ModelCandidatesRequest"];
|
|
9561
10157
|
};
|
|
9562
10158
|
};
|
|
9563
10159
|
responses: {
|
|
@@ -9567,7 +10163,7 @@ export interface operations {
|
|
|
9567
10163
|
[name: string]: unknown;
|
|
9568
10164
|
};
|
|
9569
10165
|
content: {
|
|
9570
|
-
"application/json": components["schemas"]["
|
|
10166
|
+
"application/json": components["schemas"]["ModelCandidatesResponse"];
|
|
9571
10167
|
};
|
|
9572
10168
|
};
|
|
9573
10169
|
/** @description Validation Error */
|
|
@@ -9581,14 +10177,18 @@ export interface operations {
|
|
|
9581
10177
|
};
|
|
9582
10178
|
};
|
|
9583
10179
|
};
|
|
9584
|
-
|
|
10180
|
+
detect_context_window_api_admin_model_config_detect_context_window_post: {
|
|
9585
10181
|
parameters: {
|
|
9586
10182
|
query?: never;
|
|
9587
10183
|
header?: never;
|
|
9588
10184
|
path?: never;
|
|
9589
10185
|
cookie?: never;
|
|
9590
10186
|
};
|
|
9591
|
-
requestBody
|
|
10187
|
+
requestBody: {
|
|
10188
|
+
content: {
|
|
10189
|
+
"application/json": components["schemas"]["ModelProbeRequest"];
|
|
10190
|
+
};
|
|
10191
|
+
};
|
|
9592
10192
|
responses: {
|
|
9593
10193
|
/** @description Successful Response */
|
|
9594
10194
|
200: {
|
|
@@ -9596,12 +10196,21 @@ export interface operations {
|
|
|
9596
10196
|
[name: string]: unknown;
|
|
9597
10197
|
};
|
|
9598
10198
|
content: {
|
|
9599
|
-
"application/json": components["schemas"]["
|
|
10199
|
+
"application/json": components["schemas"]["ContextWindowDetectionResponse"];
|
|
10200
|
+
};
|
|
10201
|
+
};
|
|
10202
|
+
/** @description Validation Error */
|
|
10203
|
+
422: {
|
|
10204
|
+
headers: {
|
|
10205
|
+
[name: string]: unknown;
|
|
10206
|
+
};
|
|
10207
|
+
content: {
|
|
10208
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
9600
10209
|
};
|
|
9601
10210
|
};
|
|
9602
10211
|
};
|
|
9603
10212
|
};
|
|
9604
|
-
|
|
10213
|
+
test_model_config_api_admin_model_config_test_post: {
|
|
9605
10214
|
parameters: {
|
|
9606
10215
|
query?: never;
|
|
9607
10216
|
header?: never;
|
|
@@ -9610,17 +10219,17 @@ export interface operations {
|
|
|
9610
10219
|
};
|
|
9611
10220
|
requestBody: {
|
|
9612
10221
|
content: {
|
|
9613
|
-
"application/json": components["schemas"]["
|
|
10222
|
+
"application/json": components["schemas"]["ModelProbeRequest"];
|
|
9614
10223
|
};
|
|
9615
10224
|
};
|
|
9616
10225
|
responses: {
|
|
9617
10226
|
/** @description Successful Response */
|
|
9618
|
-
|
|
10227
|
+
200: {
|
|
9619
10228
|
headers: {
|
|
9620
10229
|
[name: string]: unknown;
|
|
9621
10230
|
};
|
|
9622
10231
|
content: {
|
|
9623
|
-
"application/json": components["schemas"]["
|
|
10232
|
+
"application/json": components["schemas"]["ModelConfigTestResponse"];
|
|
9624
10233
|
};
|
|
9625
10234
|
};
|
|
9626
10235
|
/** @description Validation Error */
|
|
@@ -9634,12 +10243,29 @@ export interface operations {
|
|
|
9634
10243
|
};
|
|
9635
10244
|
};
|
|
9636
10245
|
};
|
|
9637
|
-
|
|
10246
|
+
read_platform_env_for_user_api_env_platform_get: {
|
|
9638
10247
|
parameters: {
|
|
9639
|
-
query
|
|
9640
|
-
|
|
9641
|
-
|
|
10248
|
+
query?: never;
|
|
10249
|
+
header?: never;
|
|
10250
|
+
path?: never;
|
|
10251
|
+
cookie?: never;
|
|
10252
|
+
};
|
|
10253
|
+
requestBody?: never;
|
|
10254
|
+
responses: {
|
|
10255
|
+
/** @description Successful Response */
|
|
10256
|
+
200: {
|
|
10257
|
+
headers: {
|
|
10258
|
+
[name: string]: unknown;
|
|
10259
|
+
};
|
|
10260
|
+
content: {
|
|
10261
|
+
"application/json": components["schemas"]["PlatformEnvBucket"];
|
|
10262
|
+
};
|
|
9642
10263
|
};
|
|
10264
|
+
};
|
|
10265
|
+
};
|
|
10266
|
+
list_api_keys_api_user_api_keys__get: {
|
|
10267
|
+
parameters: {
|
|
10268
|
+
query?: never;
|
|
9643
10269
|
header?: never;
|
|
9644
10270
|
path?: never;
|
|
9645
10271
|
cookie?: never;
|
|
@@ -9652,7 +10278,31 @@ export interface operations {
|
|
|
9652
10278
|
[name: string]: unknown;
|
|
9653
10279
|
};
|
|
9654
10280
|
content: {
|
|
9655
|
-
"application/json": components["schemas"]["
|
|
10281
|
+
"application/json": components["schemas"]["ApiKeyPublic"][];
|
|
10282
|
+
};
|
|
10283
|
+
};
|
|
10284
|
+
};
|
|
10285
|
+
};
|
|
10286
|
+
create_api_key_api_user_api_keys__post: {
|
|
10287
|
+
parameters: {
|
|
10288
|
+
query?: never;
|
|
10289
|
+
header?: never;
|
|
10290
|
+
path?: never;
|
|
10291
|
+
cookie?: never;
|
|
10292
|
+
};
|
|
10293
|
+
requestBody: {
|
|
10294
|
+
content: {
|
|
10295
|
+
"application/json": components["schemas"]["ApiKeyCreateRequest"];
|
|
10296
|
+
};
|
|
10297
|
+
};
|
|
10298
|
+
responses: {
|
|
10299
|
+
/** @description Successful Response */
|
|
10300
|
+
201: {
|
|
10301
|
+
headers: {
|
|
10302
|
+
[name: string]: unknown;
|
|
10303
|
+
};
|
|
10304
|
+
content: {
|
|
10305
|
+
"application/json": components["schemas"]["ApiKeyCreateResponse"];
|
|
9656
10306
|
};
|
|
9657
10307
|
};
|
|
9658
10308
|
/** @description Validation Error */
|
|
@@ -9666,12 +10316,12 @@ export interface operations {
|
|
|
9666
10316
|
};
|
|
9667
10317
|
};
|
|
9668
10318
|
};
|
|
9669
|
-
|
|
10319
|
+
get_api_key_api_user_api_keys__key_id__get: {
|
|
9670
10320
|
parameters: {
|
|
9671
10321
|
query?: never;
|
|
9672
10322
|
header?: never;
|
|
9673
10323
|
path: {
|
|
9674
|
-
|
|
10324
|
+
key_id: string;
|
|
9675
10325
|
};
|
|
9676
10326
|
cookie?: never;
|
|
9677
10327
|
};
|
|
@@ -9683,7 +10333,7 @@ export interface operations {
|
|
|
9683
10333
|
[name: string]: unknown;
|
|
9684
10334
|
};
|
|
9685
10335
|
content: {
|
|
9686
|
-
"application/json": components["schemas"]["
|
|
10336
|
+
"application/json": components["schemas"]["ApiKeyPublic"];
|
|
9687
10337
|
};
|
|
9688
10338
|
};
|
|
9689
10339
|
/** @description Validation Error */
|
|
@@ -9697,12 +10347,12 @@ export interface operations {
|
|
|
9697
10347
|
};
|
|
9698
10348
|
};
|
|
9699
10349
|
};
|
|
9700
|
-
|
|
10350
|
+
delete_api_key_api_user_api_keys__key_id__delete: {
|
|
9701
10351
|
parameters: {
|
|
9702
10352
|
query?: never;
|
|
9703
10353
|
header?: never;
|
|
9704
10354
|
path: {
|
|
9705
|
-
|
|
10355
|
+
key_id: string;
|
|
9706
10356
|
};
|
|
9707
10357
|
cookie?: never;
|
|
9708
10358
|
};
|
|
@@ -9726,18 +10376,18 @@ export interface operations {
|
|
|
9726
10376
|
};
|
|
9727
10377
|
};
|
|
9728
10378
|
};
|
|
9729
|
-
|
|
10379
|
+
rename_api_key_api_user_api_keys__key_id__patch: {
|
|
9730
10380
|
parameters: {
|
|
9731
10381
|
query?: never;
|
|
9732
10382
|
header?: never;
|
|
9733
10383
|
path: {
|
|
9734
|
-
|
|
10384
|
+
key_id: string;
|
|
9735
10385
|
};
|
|
9736
10386
|
cookie?: never;
|
|
9737
10387
|
};
|
|
9738
10388
|
requestBody: {
|
|
9739
10389
|
content: {
|
|
9740
|
-
"application/json": components["schemas"]["
|
|
10390
|
+
"application/json": components["schemas"]["ApiKeyRenameRequest"];
|
|
9741
10391
|
};
|
|
9742
10392
|
};
|
|
9743
10393
|
responses: {
|
|
@@ -9747,7 +10397,187 @@ export interface operations {
|
|
|
9747
10397
|
[name: string]: unknown;
|
|
9748
10398
|
};
|
|
9749
10399
|
content: {
|
|
9750
|
-
"application/json": components["schemas"]["
|
|
10400
|
+
"application/json": components["schemas"]["ApiKeyPublic"];
|
|
10401
|
+
};
|
|
10402
|
+
};
|
|
10403
|
+
/** @description Validation Error */
|
|
10404
|
+
422: {
|
|
10405
|
+
headers: {
|
|
10406
|
+
[name: string]: unknown;
|
|
10407
|
+
};
|
|
10408
|
+
content: {
|
|
10409
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10410
|
+
};
|
|
10411
|
+
};
|
|
10412
|
+
};
|
|
10413
|
+
};
|
|
10414
|
+
list_scheduled_tasks_api_scheduled_tasks_get: {
|
|
10415
|
+
parameters: {
|
|
10416
|
+
query?: never;
|
|
10417
|
+
header?: never;
|
|
10418
|
+
path?: never;
|
|
10419
|
+
cookie?: never;
|
|
10420
|
+
};
|
|
10421
|
+
requestBody?: never;
|
|
10422
|
+
responses: {
|
|
10423
|
+
/** @description Successful Response */
|
|
10424
|
+
200: {
|
|
10425
|
+
headers: {
|
|
10426
|
+
[name: string]: unknown;
|
|
10427
|
+
};
|
|
10428
|
+
content: {
|
|
10429
|
+
"application/json": components["schemas"]["ScheduledTaskPublic"][];
|
|
10430
|
+
};
|
|
10431
|
+
};
|
|
10432
|
+
};
|
|
10433
|
+
};
|
|
10434
|
+
create_scheduled_task_api_scheduled_tasks_post: {
|
|
10435
|
+
parameters: {
|
|
10436
|
+
query?: never;
|
|
10437
|
+
header?: never;
|
|
10438
|
+
path?: never;
|
|
10439
|
+
cookie?: never;
|
|
10440
|
+
};
|
|
10441
|
+
requestBody: {
|
|
10442
|
+
content: {
|
|
10443
|
+
"application/json": components["schemas"]["ScheduledTaskCreateRequest"];
|
|
10444
|
+
};
|
|
10445
|
+
};
|
|
10446
|
+
responses: {
|
|
10447
|
+
/** @description Successful Response */
|
|
10448
|
+
201: {
|
|
10449
|
+
headers: {
|
|
10450
|
+
[name: string]: unknown;
|
|
10451
|
+
};
|
|
10452
|
+
content: {
|
|
10453
|
+
"application/json": components["schemas"]["ScheduledTaskPublic"];
|
|
10454
|
+
};
|
|
10455
|
+
};
|
|
10456
|
+
/** @description Validation Error */
|
|
10457
|
+
422: {
|
|
10458
|
+
headers: {
|
|
10459
|
+
[name: string]: unknown;
|
|
10460
|
+
};
|
|
10461
|
+
content: {
|
|
10462
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10463
|
+
};
|
|
10464
|
+
};
|
|
10465
|
+
};
|
|
10466
|
+
};
|
|
10467
|
+
get_scheduled_task_calendar_api_scheduled_tasks_calendar_get: {
|
|
10468
|
+
parameters: {
|
|
10469
|
+
query: {
|
|
10470
|
+
from: string;
|
|
10471
|
+
to: string;
|
|
10472
|
+
};
|
|
10473
|
+
header?: never;
|
|
10474
|
+
path?: never;
|
|
10475
|
+
cookie?: never;
|
|
10476
|
+
};
|
|
10477
|
+
requestBody?: never;
|
|
10478
|
+
responses: {
|
|
10479
|
+
/** @description Successful Response */
|
|
10480
|
+
200: {
|
|
10481
|
+
headers: {
|
|
10482
|
+
[name: string]: unknown;
|
|
10483
|
+
};
|
|
10484
|
+
content: {
|
|
10485
|
+
"application/json": components["schemas"]["ScheduledTaskCalendarItem"][];
|
|
10486
|
+
};
|
|
10487
|
+
};
|
|
10488
|
+
/** @description Validation Error */
|
|
10489
|
+
422: {
|
|
10490
|
+
headers: {
|
|
10491
|
+
[name: string]: unknown;
|
|
10492
|
+
};
|
|
10493
|
+
content: {
|
|
10494
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10495
|
+
};
|
|
10496
|
+
};
|
|
10497
|
+
};
|
|
10498
|
+
};
|
|
10499
|
+
get_scheduled_task_api_scheduled_tasks__task_id__get: {
|
|
10500
|
+
parameters: {
|
|
10501
|
+
query?: never;
|
|
10502
|
+
header?: never;
|
|
10503
|
+
path: {
|
|
10504
|
+
task_id: string;
|
|
10505
|
+
};
|
|
10506
|
+
cookie?: never;
|
|
10507
|
+
};
|
|
10508
|
+
requestBody?: never;
|
|
10509
|
+
responses: {
|
|
10510
|
+
/** @description Successful Response */
|
|
10511
|
+
200: {
|
|
10512
|
+
headers: {
|
|
10513
|
+
[name: string]: unknown;
|
|
10514
|
+
};
|
|
10515
|
+
content: {
|
|
10516
|
+
"application/json": components["schemas"]["ScheduledTaskPublic"];
|
|
10517
|
+
};
|
|
10518
|
+
};
|
|
10519
|
+
/** @description Validation Error */
|
|
10520
|
+
422: {
|
|
10521
|
+
headers: {
|
|
10522
|
+
[name: string]: unknown;
|
|
10523
|
+
};
|
|
10524
|
+
content: {
|
|
10525
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10526
|
+
};
|
|
10527
|
+
};
|
|
10528
|
+
};
|
|
10529
|
+
};
|
|
10530
|
+
delete_scheduled_task_api_scheduled_tasks__task_id__delete: {
|
|
10531
|
+
parameters: {
|
|
10532
|
+
query?: never;
|
|
10533
|
+
header?: never;
|
|
10534
|
+
path: {
|
|
10535
|
+
task_id: string;
|
|
10536
|
+
};
|
|
10537
|
+
cookie?: never;
|
|
10538
|
+
};
|
|
10539
|
+
requestBody?: never;
|
|
10540
|
+
responses: {
|
|
10541
|
+
/** @description Successful Response */
|
|
10542
|
+
204: {
|
|
10543
|
+
headers: {
|
|
10544
|
+
[name: string]: unknown;
|
|
10545
|
+
};
|
|
10546
|
+
content?: never;
|
|
10547
|
+
};
|
|
10548
|
+
/** @description Validation Error */
|
|
10549
|
+
422: {
|
|
10550
|
+
headers: {
|
|
10551
|
+
[name: string]: unknown;
|
|
10552
|
+
};
|
|
10553
|
+
content: {
|
|
10554
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10555
|
+
};
|
|
10556
|
+
};
|
|
10557
|
+
};
|
|
10558
|
+
};
|
|
10559
|
+
update_scheduled_task_api_scheduled_tasks__task_id__patch: {
|
|
10560
|
+
parameters: {
|
|
10561
|
+
query?: never;
|
|
10562
|
+
header?: never;
|
|
10563
|
+
path: {
|
|
10564
|
+
task_id: string;
|
|
10565
|
+
};
|
|
10566
|
+
cookie?: never;
|
|
10567
|
+
};
|
|
10568
|
+
requestBody: {
|
|
10569
|
+
content: {
|
|
10570
|
+
"application/json": components["schemas"]["ScheduledTaskUpdateRequest"];
|
|
10571
|
+
};
|
|
10572
|
+
};
|
|
10573
|
+
responses: {
|
|
10574
|
+
/** @description Successful Response */
|
|
10575
|
+
200: {
|
|
10576
|
+
headers: {
|
|
10577
|
+
[name: string]: unknown;
|
|
10578
|
+
};
|
|
10579
|
+
content: {
|
|
10580
|
+
"application/json": components["schemas"]["ScheduledTaskPublic"];
|
|
9751
10581
|
};
|
|
9752
10582
|
};
|
|
9753
10583
|
/** @description Validation Error */
|
|
@@ -13317,6 +14147,214 @@ export interface operations {
|
|
|
13317
14147
|
};
|
|
13318
14148
|
};
|
|
13319
14149
|
};
|
|
14150
|
+
list_app_dev_templates_api_app_dev_templates_get: {
|
|
14151
|
+
parameters: {
|
|
14152
|
+
query?: {
|
|
14153
|
+
offset?: number;
|
|
14154
|
+
limit?: number;
|
|
14155
|
+
};
|
|
14156
|
+
header?: never;
|
|
14157
|
+
path?: never;
|
|
14158
|
+
cookie?: never;
|
|
14159
|
+
};
|
|
14160
|
+
requestBody?: never;
|
|
14161
|
+
responses: {
|
|
14162
|
+
/** @description Successful Response */
|
|
14163
|
+
200: {
|
|
14164
|
+
headers: {
|
|
14165
|
+
[name: string]: unknown;
|
|
14166
|
+
};
|
|
14167
|
+
content: {
|
|
14168
|
+
"application/json": components["schemas"]["SoftwareFactoryTemplateListResponse"];
|
|
14169
|
+
};
|
|
14170
|
+
};
|
|
14171
|
+
/** @description Validation Error */
|
|
14172
|
+
422: {
|
|
14173
|
+
headers: {
|
|
14174
|
+
[name: string]: unknown;
|
|
14175
|
+
};
|
|
14176
|
+
content: {
|
|
14177
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14178
|
+
};
|
|
14179
|
+
};
|
|
14180
|
+
};
|
|
14181
|
+
};
|
|
14182
|
+
get_app_dev_template_api_app_dev_templates__slug__get: {
|
|
14183
|
+
parameters: {
|
|
14184
|
+
query?: never;
|
|
14185
|
+
header?: never;
|
|
14186
|
+
path: {
|
|
14187
|
+
slug: string;
|
|
14188
|
+
};
|
|
14189
|
+
cookie?: never;
|
|
14190
|
+
};
|
|
14191
|
+
requestBody?: never;
|
|
14192
|
+
responses: {
|
|
14193
|
+
/** @description Successful Response */
|
|
14194
|
+
200: {
|
|
14195
|
+
headers: {
|
|
14196
|
+
[name: string]: unknown;
|
|
14197
|
+
};
|
|
14198
|
+
content: {
|
|
14199
|
+
"application/json": components["schemas"]["SoftwareFactoryTemplateDetail"];
|
|
14200
|
+
};
|
|
14201
|
+
};
|
|
14202
|
+
/** @description Validation Error */
|
|
14203
|
+
422: {
|
|
14204
|
+
headers: {
|
|
14205
|
+
[name: string]: unknown;
|
|
14206
|
+
};
|
|
14207
|
+
content: {
|
|
14208
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14209
|
+
};
|
|
14210
|
+
};
|
|
14211
|
+
};
|
|
14212
|
+
};
|
|
14213
|
+
get_app_dev_template_media_api_app_dev_templates__slug__media__media_path__get: {
|
|
14214
|
+
parameters: {
|
|
14215
|
+
query?: never;
|
|
14216
|
+
header?: never;
|
|
14217
|
+
path: {
|
|
14218
|
+
slug: string;
|
|
14219
|
+
media_path: string;
|
|
14220
|
+
};
|
|
14221
|
+
cookie?: never;
|
|
14222
|
+
};
|
|
14223
|
+
requestBody?: never;
|
|
14224
|
+
responses: {
|
|
14225
|
+
/** @description Successful Response */
|
|
14226
|
+
200: {
|
|
14227
|
+
headers: {
|
|
14228
|
+
[name: string]: unknown;
|
|
14229
|
+
};
|
|
14230
|
+
content: {
|
|
14231
|
+
"application/json": unknown;
|
|
14232
|
+
};
|
|
14233
|
+
};
|
|
14234
|
+
/** @description Validation Error */
|
|
14235
|
+
422: {
|
|
14236
|
+
headers: {
|
|
14237
|
+
[name: string]: unknown;
|
|
14238
|
+
};
|
|
14239
|
+
content: {
|
|
14240
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14241
|
+
};
|
|
14242
|
+
};
|
|
14243
|
+
};
|
|
14244
|
+
};
|
|
14245
|
+
download_app_dev_template_api_app_dev_templates__slug__download_get: {
|
|
14246
|
+
parameters: {
|
|
14247
|
+
query?: never;
|
|
14248
|
+
header?: never;
|
|
14249
|
+
path: {
|
|
14250
|
+
slug: string;
|
|
14251
|
+
};
|
|
14252
|
+
cookie?: never;
|
|
14253
|
+
};
|
|
14254
|
+
requestBody?: never;
|
|
14255
|
+
responses: {
|
|
14256
|
+
/** @description Successful Response */
|
|
14257
|
+
200: {
|
|
14258
|
+
headers: {
|
|
14259
|
+
[name: string]: unknown;
|
|
14260
|
+
};
|
|
14261
|
+
content: {
|
|
14262
|
+
"application/json": unknown;
|
|
14263
|
+
};
|
|
14264
|
+
};
|
|
14265
|
+
/** @description Validation Error */
|
|
14266
|
+
422: {
|
|
14267
|
+
headers: {
|
|
14268
|
+
[name: string]: unknown;
|
|
14269
|
+
};
|
|
14270
|
+
content: {
|
|
14271
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14272
|
+
};
|
|
14273
|
+
};
|
|
14274
|
+
};
|
|
14275
|
+
};
|
|
14276
|
+
list_favorite_projects_api_agent_board_projects_favorites_get: {
|
|
14277
|
+
parameters: {
|
|
14278
|
+
query?: never;
|
|
14279
|
+
header?: never;
|
|
14280
|
+
path?: never;
|
|
14281
|
+
cookie?: never;
|
|
14282
|
+
};
|
|
14283
|
+
requestBody?: never;
|
|
14284
|
+
responses: {
|
|
14285
|
+
/** @description Successful Response */
|
|
14286
|
+
200: {
|
|
14287
|
+
headers: {
|
|
14288
|
+
[name: string]: unknown;
|
|
14289
|
+
};
|
|
14290
|
+
content: {
|
|
14291
|
+
"application/json": unknown;
|
|
14292
|
+
};
|
|
14293
|
+
};
|
|
14294
|
+
};
|
|
14295
|
+
};
|
|
14296
|
+
favorite_project_api_agent_board_projects__project_id__favorite_put: {
|
|
14297
|
+
parameters: {
|
|
14298
|
+
query?: never;
|
|
14299
|
+
header?: never;
|
|
14300
|
+
path: {
|
|
14301
|
+
project_id: number;
|
|
14302
|
+
};
|
|
14303
|
+
cookie?: never;
|
|
14304
|
+
};
|
|
14305
|
+
requestBody?: never;
|
|
14306
|
+
responses: {
|
|
14307
|
+
/** @description Successful Response */
|
|
14308
|
+
200: {
|
|
14309
|
+
headers: {
|
|
14310
|
+
[name: string]: unknown;
|
|
14311
|
+
};
|
|
14312
|
+
content: {
|
|
14313
|
+
"application/json": unknown;
|
|
14314
|
+
};
|
|
14315
|
+
};
|
|
14316
|
+
/** @description Validation Error */
|
|
14317
|
+
422: {
|
|
14318
|
+
headers: {
|
|
14319
|
+
[name: string]: unknown;
|
|
14320
|
+
};
|
|
14321
|
+
content: {
|
|
14322
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14323
|
+
};
|
|
14324
|
+
};
|
|
14325
|
+
};
|
|
14326
|
+
};
|
|
14327
|
+
unfavorite_project_api_agent_board_projects__project_id__favorite_delete: {
|
|
14328
|
+
parameters: {
|
|
14329
|
+
query?: never;
|
|
14330
|
+
header?: never;
|
|
14331
|
+
path: {
|
|
14332
|
+
project_id: number;
|
|
14333
|
+
};
|
|
14334
|
+
cookie?: never;
|
|
14335
|
+
};
|
|
14336
|
+
requestBody?: never;
|
|
14337
|
+
responses: {
|
|
14338
|
+
/** @description Successful Response */
|
|
14339
|
+
200: {
|
|
14340
|
+
headers: {
|
|
14341
|
+
[name: string]: unknown;
|
|
14342
|
+
};
|
|
14343
|
+
content: {
|
|
14344
|
+
"application/json": unknown;
|
|
14345
|
+
};
|
|
14346
|
+
};
|
|
14347
|
+
/** @description Validation Error */
|
|
14348
|
+
422: {
|
|
14349
|
+
headers: {
|
|
14350
|
+
[name: string]: unknown;
|
|
14351
|
+
};
|
|
14352
|
+
content: {
|
|
14353
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
14354
|
+
};
|
|
14355
|
+
};
|
|
14356
|
+
};
|
|
14357
|
+
};
|
|
13320
14358
|
list_dir_api_agent_board_ls__dir_path__get: {
|
|
13321
14359
|
parameters: {
|
|
13322
14360
|
query?: never;
|