@robosystems/client 0.1.22 → 0.1.23
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/extensions/CopyClient.js +1 -1
- package/extensions/CopyClient.ts +1 -1
- package/extensions/QueryClient.js +1 -1
- package/extensions/QueryClient.ts +1 -1
- package/package.json +1 -1
- package/sdk/sdk.gen.d.ts +11 -16
- package/sdk/sdk.gen.js +95 -110
- package/sdk/sdk.gen.ts +94 -109
- package/sdk/types.gen.d.ts +142 -167
- package/sdk/types.gen.ts +152 -183
- package/sdk-extensions/CopyClient.js +1 -1
- package/sdk-extensions/CopyClient.ts +1 -1
- package/sdk-extensions/QueryClient.js +1 -1
- package/sdk-extensions/QueryClient.ts +1 -1
- package/sdk.gen.d.ts +11 -16
- package/sdk.gen.js +95 -110
- package/sdk.gen.ts +94 -109
- package/types.gen.d.ts +142 -167
- package/types.gen.ts +152 -183
package/sdk/types.gen.ts
CHANGED
|
@@ -35,6 +35,11 @@ export type ApiKeyInfo = {
|
|
|
35
35
|
* Last used timestamp
|
|
36
36
|
*/
|
|
37
37
|
last_used_at?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* Expires At
|
|
40
|
+
* Expiration timestamp
|
|
41
|
+
*/
|
|
42
|
+
expires_at?: string | null;
|
|
38
43
|
/**
|
|
39
44
|
* Created At
|
|
40
45
|
* Creation timestamp
|
|
@@ -937,6 +942,11 @@ export type CreateApiKeyRequest = {
|
|
|
937
942
|
* Optional description
|
|
938
943
|
*/
|
|
939
944
|
description?: string | null;
|
|
945
|
+
/**
|
|
946
|
+
* Expires At
|
|
947
|
+
* Optional expiration date in ISO format (e.g. 2024-12-31T23:59:59Z)
|
|
948
|
+
*/
|
|
949
|
+
expires_at?: string | null;
|
|
940
950
|
};
|
|
941
951
|
|
|
942
952
|
/**
|
|
@@ -2491,18 +2501,6 @@ export type SsoExchangeResponse = {
|
|
|
2491
2501
|
expires_at: string;
|
|
2492
2502
|
};
|
|
2493
2503
|
|
|
2494
|
-
/**
|
|
2495
|
-
* SSOLoginRequest
|
|
2496
|
-
* SSO login request model.
|
|
2497
|
-
*/
|
|
2498
|
-
export type SsoLoginRequest = {
|
|
2499
|
-
/**
|
|
2500
|
-
* Token
|
|
2501
|
-
* Temporary SSO token
|
|
2502
|
-
*/
|
|
2503
|
-
token: string;
|
|
2504
|
-
};
|
|
2505
|
-
|
|
2506
2504
|
/**
|
|
2507
2505
|
* SSOTokenResponse
|
|
2508
2506
|
* SSO token response model.
|
|
@@ -3855,35 +3853,6 @@ export type GenerateSsoTokenResponses = {
|
|
|
3855
3853
|
|
|
3856
3854
|
export type GenerateSsoTokenResponse = GenerateSsoTokenResponses[keyof GenerateSsoTokenResponses];
|
|
3857
3855
|
|
|
3858
|
-
export type SsoLoginData = {
|
|
3859
|
-
body: SsoLoginRequest;
|
|
3860
|
-
path?: never;
|
|
3861
|
-
query?: never;
|
|
3862
|
-
url: '/v1/auth/sso-login';
|
|
3863
|
-
};
|
|
3864
|
-
|
|
3865
|
-
export type SsoLoginErrors = {
|
|
3866
|
-
/**
|
|
3867
|
-
* Invalid SSO token
|
|
3868
|
-
*/
|
|
3869
|
-
401: ErrorResponse;
|
|
3870
|
-
/**
|
|
3871
|
-
* Validation Error
|
|
3872
|
-
*/
|
|
3873
|
-
422: HttpValidationError;
|
|
3874
|
-
};
|
|
3875
|
-
|
|
3876
|
-
export type SsoLoginError = SsoLoginErrors[keyof SsoLoginErrors];
|
|
3877
|
-
|
|
3878
|
-
export type SsoLoginResponses = {
|
|
3879
|
-
/**
|
|
3880
|
-
* Successful Response
|
|
3881
|
-
*/
|
|
3882
|
-
200: AuthResponse;
|
|
3883
|
-
};
|
|
3884
|
-
|
|
3885
|
-
export type SsoLoginResponse = SsoLoginResponses[keyof SsoLoginResponses];
|
|
3886
|
-
|
|
3887
3856
|
export type SsoTokenExchangeData = {
|
|
3888
3857
|
body: SsoExchangeRequest;
|
|
3889
3858
|
path?: never;
|
|
@@ -4050,97 +4019,6 @@ export type UpdateUserResponses = {
|
|
|
4050
4019
|
|
|
4051
4020
|
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
4052
4021
|
|
|
4053
|
-
export type GetUserGraphsData = {
|
|
4054
|
-
body?: never;
|
|
4055
|
-
headers?: {
|
|
4056
|
-
/**
|
|
4057
|
-
* Authorization
|
|
4058
|
-
*/
|
|
4059
|
-
authorization?: string | null;
|
|
4060
|
-
};
|
|
4061
|
-
path?: never;
|
|
4062
|
-
query?: {
|
|
4063
|
-
/**
|
|
4064
|
-
* Token
|
|
4065
|
-
* JWT token for SSE authentication
|
|
4066
|
-
*/
|
|
4067
|
-
token?: string | null;
|
|
4068
|
-
};
|
|
4069
|
-
url: '/v1/user/graphs';
|
|
4070
|
-
};
|
|
4071
|
-
|
|
4072
|
-
export type GetUserGraphsErrors = {
|
|
4073
|
-
/**
|
|
4074
|
-
* Validation Error
|
|
4075
|
-
*/
|
|
4076
|
-
422: HttpValidationError;
|
|
4077
|
-
};
|
|
4078
|
-
|
|
4079
|
-
export type GetUserGraphsError = GetUserGraphsErrors[keyof GetUserGraphsErrors];
|
|
4080
|
-
|
|
4081
|
-
export type GetUserGraphsResponses = {
|
|
4082
|
-
/**
|
|
4083
|
-
* Successful Response
|
|
4084
|
-
*/
|
|
4085
|
-
200: UserGraphsResponse;
|
|
4086
|
-
};
|
|
4087
|
-
|
|
4088
|
-
export type GetUserGraphsResponse = GetUserGraphsResponses[keyof GetUserGraphsResponses];
|
|
4089
|
-
|
|
4090
|
-
export type SelectUserGraphData = {
|
|
4091
|
-
body?: never;
|
|
4092
|
-
headers?: {
|
|
4093
|
-
/**
|
|
4094
|
-
* Authorization
|
|
4095
|
-
*/
|
|
4096
|
-
authorization?: string | null;
|
|
4097
|
-
};
|
|
4098
|
-
path: {
|
|
4099
|
-
/**
|
|
4100
|
-
* Graph Id
|
|
4101
|
-
*/
|
|
4102
|
-
graph_id: string;
|
|
4103
|
-
};
|
|
4104
|
-
query?: {
|
|
4105
|
-
/**
|
|
4106
|
-
* Token
|
|
4107
|
-
* JWT token for SSE authentication
|
|
4108
|
-
*/
|
|
4109
|
-
token?: string | null;
|
|
4110
|
-
};
|
|
4111
|
-
url: '/v1/user/graphs/{graph_id}/select';
|
|
4112
|
-
};
|
|
4113
|
-
|
|
4114
|
-
export type SelectUserGraphErrors = {
|
|
4115
|
-
/**
|
|
4116
|
-
* Access denied to graph
|
|
4117
|
-
*/
|
|
4118
|
-
403: ErrorResponse;
|
|
4119
|
-
/**
|
|
4120
|
-
* Graph not found
|
|
4121
|
-
*/
|
|
4122
|
-
404: ErrorResponse;
|
|
4123
|
-
/**
|
|
4124
|
-
* Validation Error
|
|
4125
|
-
*/
|
|
4126
|
-
422: HttpValidationError;
|
|
4127
|
-
/**
|
|
4128
|
-
* Error selecting graph
|
|
4129
|
-
*/
|
|
4130
|
-
500: ErrorResponse;
|
|
4131
|
-
};
|
|
4132
|
-
|
|
4133
|
-
export type SelectUserGraphError = SelectUserGraphErrors[keyof SelectUserGraphErrors];
|
|
4134
|
-
|
|
4135
|
-
export type SelectUserGraphResponses = {
|
|
4136
|
-
/**
|
|
4137
|
-
* Graph selected successfully
|
|
4138
|
-
*/
|
|
4139
|
-
200: SuccessResponse;
|
|
4140
|
-
};
|
|
4141
|
-
|
|
4142
|
-
export type SelectUserGraphResponse = SelectUserGraphResponses[keyof SelectUserGraphResponses];
|
|
4143
|
-
|
|
4144
4022
|
export type GetAllCreditSummariesData = {
|
|
4145
4023
|
body?: never;
|
|
4146
4024
|
headers?: {
|
|
@@ -4974,7 +4852,7 @@ export type GetConnectionOptionsData = {
|
|
|
4974
4852
|
*/
|
|
4975
4853
|
token?: string | null;
|
|
4976
4854
|
};
|
|
4977
|
-
url: '/v1/{graph_id}/connections/options';
|
|
4855
|
+
url: '/v1/graphs/{graph_id}/connections/options';
|
|
4978
4856
|
};
|
|
4979
4857
|
|
|
4980
4858
|
export type GetConnectionOptionsErrors = {
|
|
@@ -5030,7 +4908,7 @@ export type SyncConnectionData = {
|
|
|
5030
4908
|
*/
|
|
5031
4909
|
token?: string | null;
|
|
5032
4910
|
};
|
|
5033
|
-
url: '/v1/{graph_id}/connections/{connection_id}/sync';
|
|
4911
|
+
url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
|
|
5034
4912
|
};
|
|
5035
4913
|
|
|
5036
4914
|
export type SyncConnectionErrors = {
|
|
@@ -5088,7 +4966,7 @@ export type CreateLinkTokenData = {
|
|
|
5088
4966
|
*/
|
|
5089
4967
|
token?: string | null;
|
|
5090
4968
|
};
|
|
5091
|
-
url: '/v1/{graph_id}/connections/link/token';
|
|
4969
|
+
url: '/v1/graphs/{graph_id}/connections/link/token';
|
|
5092
4970
|
};
|
|
5093
4971
|
|
|
5094
4972
|
export type CreateLinkTokenErrors = {
|
|
@@ -5141,7 +5019,7 @@ export type ExchangeLinkTokenData = {
|
|
|
5141
5019
|
*/
|
|
5142
5020
|
token?: string | null;
|
|
5143
5021
|
};
|
|
5144
|
-
url: '/v1/{graph_id}/connections/link/exchange';
|
|
5022
|
+
url: '/v1/graphs/{graph_id}/connections/link/exchange';
|
|
5145
5023
|
};
|
|
5146
5024
|
|
|
5147
5025
|
export type ExchangeLinkTokenErrors = {
|
|
@@ -5194,7 +5072,7 @@ export type InitOAuthData = {
|
|
|
5194
5072
|
*/
|
|
5195
5073
|
token?: string | null;
|
|
5196
5074
|
};
|
|
5197
|
-
url: '/v1/{graph_id}/connections/oauth/init';
|
|
5075
|
+
url: '/v1/graphs/{graph_id}/connections/oauth/init';
|
|
5198
5076
|
};
|
|
5199
5077
|
|
|
5200
5078
|
export type InitOAuthErrors = {
|
|
@@ -5242,7 +5120,7 @@ export type OauthCallbackData = {
|
|
|
5242
5120
|
*/
|
|
5243
5121
|
token?: string | null;
|
|
5244
5122
|
};
|
|
5245
|
-
url: '/v1/{graph_id}/connections/oauth/callback/{provider}';
|
|
5123
|
+
url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
|
|
5246
5124
|
};
|
|
5247
5125
|
|
|
5248
5126
|
export type OauthCallbackErrors = {
|
|
@@ -5309,7 +5187,7 @@ export type ListConnectionsData = {
|
|
|
5309
5187
|
*/
|
|
5310
5188
|
token?: string | null;
|
|
5311
5189
|
};
|
|
5312
|
-
url: '/v1/{graph_id}/connections';
|
|
5190
|
+
url: '/v1/graphs/{graph_id}/connections';
|
|
5313
5191
|
};
|
|
5314
5192
|
|
|
5315
5193
|
export type ListConnectionsErrors = {
|
|
@@ -5361,7 +5239,7 @@ export type CreateConnectionData = {
|
|
|
5361
5239
|
*/
|
|
5362
5240
|
token?: string | null;
|
|
5363
5241
|
};
|
|
5364
|
-
url: '/v1/{graph_id}/connections';
|
|
5242
|
+
url: '/v1/graphs/{graph_id}/connections';
|
|
5365
5243
|
};
|
|
5366
5244
|
|
|
5367
5245
|
export type CreateConnectionErrors = {
|
|
@@ -5425,7 +5303,7 @@ export type DeleteConnectionData = {
|
|
|
5425
5303
|
*/
|
|
5426
5304
|
token?: string | null;
|
|
5427
5305
|
};
|
|
5428
|
-
url: '/v1/{graph_id}/connections/{connection_id}';
|
|
5306
|
+
url: '/v1/graphs/{graph_id}/connections/{connection_id}';
|
|
5429
5307
|
};
|
|
5430
5308
|
|
|
5431
5309
|
export type DeleteConnectionErrors = {
|
|
@@ -5485,7 +5363,7 @@ export type GetConnectionData = {
|
|
|
5485
5363
|
*/
|
|
5486
5364
|
token?: string | null;
|
|
5487
5365
|
};
|
|
5488
|
-
url: '/v1/{graph_id}/connections/{connection_id}';
|
|
5366
|
+
url: '/v1/graphs/{graph_id}/connections/{connection_id}';
|
|
5489
5367
|
};
|
|
5490
5368
|
|
|
5491
5369
|
export type GetConnectionErrors = {
|
|
@@ -5539,7 +5417,7 @@ export type AutoSelectAgentData = {
|
|
|
5539
5417
|
*/
|
|
5540
5418
|
token?: string | null;
|
|
5541
5419
|
};
|
|
5542
|
-
url: '/v1/{graph_id}/agent';
|
|
5420
|
+
url: '/v1/graphs/{graph_id}/agent';
|
|
5543
5421
|
};
|
|
5544
5422
|
|
|
5545
5423
|
export type AutoSelectAgentErrors = {
|
|
@@ -5601,7 +5479,7 @@ export type ExecuteSpecificAgentData = {
|
|
|
5601
5479
|
*/
|
|
5602
5480
|
token?: string | null;
|
|
5603
5481
|
};
|
|
5604
|
-
url: '/v1/{graph_id}/agent/{agent_type}';
|
|
5482
|
+
url: '/v1/graphs/{graph_id}/agent/{agent_type}';
|
|
5605
5483
|
};
|
|
5606
5484
|
|
|
5607
5485
|
export type ExecuteSpecificAgentErrors = {
|
|
@@ -5663,7 +5541,7 @@ export type BatchProcessQueriesData = {
|
|
|
5663
5541
|
*/
|
|
5664
5542
|
token?: string | null;
|
|
5665
5543
|
};
|
|
5666
|
-
url: '/v1/{graph_id}/agent/batch';
|
|
5544
|
+
url: '/v1/graphs/{graph_id}/agent/batch';
|
|
5667
5545
|
};
|
|
5668
5546
|
|
|
5669
5547
|
export type BatchProcessQueriesErrors = {
|
|
@@ -5723,7 +5601,7 @@ export type ListAgentsData = {
|
|
|
5723
5601
|
*/
|
|
5724
5602
|
token?: string | null;
|
|
5725
5603
|
};
|
|
5726
|
-
url: '/v1/{graph_id}/agent/list';
|
|
5604
|
+
url: '/v1/graphs/{graph_id}/agent/list';
|
|
5727
5605
|
};
|
|
5728
5606
|
|
|
5729
5607
|
export type ListAgentsErrors = {
|
|
@@ -5775,7 +5653,7 @@ export type GetAgentMetadataData = {
|
|
|
5775
5653
|
*/
|
|
5776
5654
|
token?: string | null;
|
|
5777
5655
|
};
|
|
5778
|
-
url: '/v1/{graph_id}/agent/{agent_type}/metadata';
|
|
5656
|
+
url: '/v1/graphs/{graph_id}/agent/{agent_type}/metadata';
|
|
5779
5657
|
};
|
|
5780
5658
|
|
|
5781
5659
|
export type GetAgentMetadataErrors = {
|
|
@@ -5822,7 +5700,7 @@ export type RecommendAgentData = {
|
|
|
5822
5700
|
*/
|
|
5823
5701
|
token?: string | null;
|
|
5824
5702
|
};
|
|
5825
|
-
url: '/v1/{graph_id}/agent/recommend';
|
|
5703
|
+
url: '/v1/graphs/{graph_id}/agent/recommend';
|
|
5826
5704
|
};
|
|
5827
5705
|
|
|
5828
5706
|
export type RecommendAgentErrors = {
|
|
@@ -5869,7 +5747,7 @@ export type ListMcpToolsData = {
|
|
|
5869
5747
|
*/
|
|
5870
5748
|
token?: string | null;
|
|
5871
5749
|
};
|
|
5872
|
-
url: '/v1/{graph_id}/mcp/tools';
|
|
5750
|
+
url: '/v1/graphs/{graph_id}/mcp/tools';
|
|
5873
5751
|
};
|
|
5874
5752
|
|
|
5875
5753
|
export type ListMcpToolsErrors = {
|
|
@@ -5930,7 +5808,7 @@ export type CallMcpToolData = {
|
|
|
5930
5808
|
*/
|
|
5931
5809
|
token?: string | null;
|
|
5932
5810
|
};
|
|
5933
|
-
url: '/v1/{graph_id}/mcp/call-tool';
|
|
5811
|
+
url: '/v1/graphs/{graph_id}/mcp/call-tool';
|
|
5934
5812
|
};
|
|
5935
5813
|
|
|
5936
5814
|
export type CallMcpToolErrors = {
|
|
@@ -6013,7 +5891,7 @@ export type ListBackupsData = {
|
|
|
6013
5891
|
*/
|
|
6014
5892
|
token?: string | null;
|
|
6015
5893
|
};
|
|
6016
|
-
url: '/v1/{graph_id}/backups';
|
|
5894
|
+
url: '/v1/graphs/{graph_id}/backups';
|
|
6017
5895
|
};
|
|
6018
5896
|
|
|
6019
5897
|
export type ListBackupsErrors = {
|
|
@@ -6056,7 +5934,7 @@ export type CreateBackupData = {
|
|
|
6056
5934
|
*/
|
|
6057
5935
|
token?: string | null;
|
|
6058
5936
|
};
|
|
6059
|
-
url: '/v1/{graph_id}/backups';
|
|
5937
|
+
url: '/v1/graphs/{graph_id}/backups';
|
|
6060
5938
|
};
|
|
6061
5939
|
|
|
6062
5940
|
export type CreateBackupErrors = {
|
|
@@ -6118,7 +5996,7 @@ export type ExportBackupData = {
|
|
|
6118
5996
|
*/
|
|
6119
5997
|
token?: string | null;
|
|
6120
5998
|
};
|
|
6121
|
-
url: '/v1/{graph_id}/backups/{backup_id}/export';
|
|
5999
|
+
url: '/v1/graphs/{graph_id}/backups/{backup_id}/export';
|
|
6122
6000
|
};
|
|
6123
6001
|
|
|
6124
6002
|
export type ExportBackupErrors = {
|
|
@@ -6177,7 +6055,7 @@ export type GetBackupDownloadUrlData = {
|
|
|
6177
6055
|
*/
|
|
6178
6056
|
token?: string | null;
|
|
6179
6057
|
};
|
|
6180
|
-
url: '/v1/{graph_id}/backups/{backup_id}/download';
|
|
6058
|
+
url: '/v1/graphs/{graph_id}/backups/{backup_id}/download';
|
|
6181
6059
|
};
|
|
6182
6060
|
|
|
6183
6061
|
export type GetBackupDownloadUrlErrors = {
|
|
@@ -6235,7 +6113,7 @@ export type RestoreBackupData = {
|
|
|
6235
6113
|
*/
|
|
6236
6114
|
token?: string | null;
|
|
6237
6115
|
};
|
|
6238
|
-
url: '/v1/{graph_id}/backups/restore';
|
|
6116
|
+
url: '/v1/graphs/{graph_id}/backups/restore';
|
|
6239
6117
|
};
|
|
6240
6118
|
|
|
6241
6119
|
export type RestoreBackupErrors = {
|
|
@@ -6292,7 +6170,7 @@ export type GetBackupStatsData = {
|
|
|
6292
6170
|
*/
|
|
6293
6171
|
token?: string | null;
|
|
6294
6172
|
};
|
|
6295
|
-
url: '/v1/{graph_id}/backups/stats';
|
|
6173
|
+
url: '/v1/graphs/{graph_id}/backups/stats';
|
|
6296
6174
|
};
|
|
6297
6175
|
|
|
6298
6176
|
export type GetBackupStatsErrors = {
|
|
@@ -6335,7 +6213,7 @@ export type GetGraphMetricsData = {
|
|
|
6335
6213
|
*/
|
|
6336
6214
|
token?: string | null;
|
|
6337
6215
|
};
|
|
6338
|
-
url: '/v1/{graph_id}/analytics';
|
|
6216
|
+
url: '/v1/graphs/{graph_id}/analytics';
|
|
6339
6217
|
};
|
|
6340
6218
|
|
|
6341
6219
|
export type GetGraphMetricsErrors = {
|
|
@@ -6395,7 +6273,7 @@ export type GetGraphUsageStatsData = {
|
|
|
6395
6273
|
*/
|
|
6396
6274
|
token?: string | null;
|
|
6397
6275
|
};
|
|
6398
|
-
url: '/v1/{graph_id}/analytics/usage';
|
|
6276
|
+
url: '/v1/graphs/{graph_id}/analytics/usage';
|
|
6399
6277
|
};
|
|
6400
6278
|
|
|
6401
6279
|
export type GetGraphUsageStatsErrors = {
|
|
@@ -6461,7 +6339,7 @@ export type ExecuteCypherQueryData = {
|
|
|
6461
6339
|
*/
|
|
6462
6340
|
token?: string | null;
|
|
6463
6341
|
};
|
|
6464
|
-
url: '/v1/{graph_id}/query';
|
|
6342
|
+
url: '/v1/graphs/{graph_id}/query';
|
|
6465
6343
|
};
|
|
6466
6344
|
|
|
6467
6345
|
export type ExecuteCypherQueryErrors = {
|
|
@@ -6530,7 +6408,7 @@ export type GetGraphSchemaInfoData = {
|
|
|
6530
6408
|
*/
|
|
6531
6409
|
token?: string | null;
|
|
6532
6410
|
};
|
|
6533
|
-
url: '/v1/{graph_id}/schema/info';
|
|
6411
|
+
url: '/v1/graphs/{graph_id}/schema/info';
|
|
6534
6412
|
};
|
|
6535
6413
|
|
|
6536
6414
|
export type GetGraphSchemaInfoErrors = {
|
|
@@ -6587,7 +6465,7 @@ export type ValidateSchemaData = {
|
|
|
6587
6465
|
*/
|
|
6588
6466
|
token?: string | null;
|
|
6589
6467
|
};
|
|
6590
|
-
url: '/v1/{graph_id}/schema/validate';
|
|
6468
|
+
url: '/v1/graphs/{graph_id}/schema/validate';
|
|
6591
6469
|
};
|
|
6592
6470
|
|
|
6593
6471
|
export type ValidateSchemaErrors = {
|
|
@@ -6652,7 +6530,7 @@ export type ExportGraphSchemaData = {
|
|
|
6652
6530
|
*/
|
|
6653
6531
|
token?: string | null;
|
|
6654
6532
|
};
|
|
6655
|
-
url: '/v1/{graph_id}/schema/export';
|
|
6533
|
+
url: '/v1/graphs/{graph_id}/schema/export';
|
|
6656
6534
|
};
|
|
6657
6535
|
|
|
6658
6536
|
export type ExportGraphSchemaErrors = {
|
|
@@ -6695,7 +6573,7 @@ export type ListSchemaExtensionsData = {
|
|
|
6695
6573
|
*/
|
|
6696
6574
|
token?: string | null;
|
|
6697
6575
|
};
|
|
6698
|
-
url: '/v1/{graph_id}/schema/extensions';
|
|
6576
|
+
url: '/v1/graphs/{graph_id}/schema/extensions';
|
|
6699
6577
|
};
|
|
6700
6578
|
|
|
6701
6579
|
export type ListSchemaExtensionsErrors = {
|
|
@@ -6741,7 +6619,7 @@ export type GetCurrentGraphBillData = {
|
|
|
6741
6619
|
*/
|
|
6742
6620
|
token?: string | null;
|
|
6743
6621
|
};
|
|
6744
|
-
url: '/v1/{graph_id}/billing/current';
|
|
6622
|
+
url: '/v1/graphs/{graph_id}/billing/current';
|
|
6745
6623
|
};
|
|
6746
6624
|
|
|
6747
6625
|
export type GetCurrentGraphBillErrors = {
|
|
@@ -6809,7 +6687,7 @@ export type GetGraphUsageDetailsData = {
|
|
|
6809
6687
|
*/
|
|
6810
6688
|
token?: string | null;
|
|
6811
6689
|
};
|
|
6812
|
-
url: '/v1/{graph_id}/billing/usage';
|
|
6690
|
+
url: '/v1/graphs/{graph_id}/billing/usage';
|
|
6813
6691
|
};
|
|
6814
6692
|
|
|
6815
6693
|
export type GetGraphUsageDetailsErrors = {
|
|
@@ -6876,7 +6754,7 @@ export type GetGraphBillingHistoryData = {
|
|
|
6876
6754
|
*/
|
|
6877
6755
|
token?: string | null;
|
|
6878
6756
|
};
|
|
6879
|
-
url: '/v1/{graph_id}/billing/history';
|
|
6757
|
+
url: '/v1/graphs/{graph_id}/billing/history';
|
|
6880
6758
|
};
|
|
6881
6759
|
|
|
6882
6760
|
export type GetGraphBillingHistoryErrors = {
|
|
@@ -6944,7 +6822,7 @@ export type GetGraphMonthlyBillData = {
|
|
|
6944
6822
|
*/
|
|
6945
6823
|
token?: string | null;
|
|
6946
6824
|
};
|
|
6947
|
-
url: '/v1/{graph_id}/billing/history/{year}/{month}';
|
|
6825
|
+
url: '/v1/graphs/{graph_id}/billing/history/{year}/{month}';
|
|
6948
6826
|
};
|
|
6949
6827
|
|
|
6950
6828
|
export type GetGraphMonthlyBillErrors = {
|
|
@@ -7006,7 +6884,7 @@ export type GetCreditSummaryData = {
|
|
|
7006
6884
|
*/
|
|
7007
6885
|
token?: string | null;
|
|
7008
6886
|
};
|
|
7009
|
-
url: '/v1/{graph_id}/credits/summary';
|
|
6887
|
+
url: '/v1/graphs/{graph_id}/credits/summary';
|
|
7010
6888
|
};
|
|
7011
6889
|
|
|
7012
6890
|
export type GetCreditSummaryErrors = {
|
|
@@ -7091,7 +6969,7 @@ export type ListCreditTransactionsData = {
|
|
|
7091
6969
|
*/
|
|
7092
6970
|
token?: string | null;
|
|
7093
6971
|
};
|
|
7094
|
-
url: '/v1/{graph_id}/credits/transactions';
|
|
6972
|
+
url: '/v1/graphs/{graph_id}/credits/transactions';
|
|
7095
6973
|
};
|
|
7096
6974
|
|
|
7097
6975
|
export type ListCreditTransactionsErrors = {
|
|
@@ -7156,7 +7034,7 @@ export type CheckCreditBalanceData = {
|
|
|
7156
7034
|
*/
|
|
7157
7035
|
token?: string | null;
|
|
7158
7036
|
};
|
|
7159
|
-
url: '/v1/{graph_id}/credits/balance/check';
|
|
7037
|
+
url: '/v1/graphs/{graph_id}/credits/balance/check';
|
|
7160
7038
|
};
|
|
7161
7039
|
|
|
7162
7040
|
export type CheckCreditBalanceErrors = {
|
|
@@ -7219,7 +7097,7 @@ export type GetStorageUsageData = {
|
|
|
7219
7097
|
*/
|
|
7220
7098
|
token?: string | null;
|
|
7221
7099
|
};
|
|
7222
|
-
url: '/v1/{graph_id}/credits/storage/usage';
|
|
7100
|
+
url: '/v1/graphs/{graph_id}/credits/storage/usage';
|
|
7223
7101
|
};
|
|
7224
7102
|
|
|
7225
7103
|
export type GetStorageUsageErrors = {
|
|
@@ -7273,7 +7151,7 @@ export type CheckStorageLimitsData = {
|
|
|
7273
7151
|
*/
|
|
7274
7152
|
token?: string | null;
|
|
7275
7153
|
};
|
|
7276
|
-
url: '/v1/{graph_id}/credits/storage/limits';
|
|
7154
|
+
url: '/v1/graphs/{graph_id}/credits/storage/limits';
|
|
7277
7155
|
};
|
|
7278
7156
|
|
|
7279
7157
|
export type CheckStorageLimitsErrors = {
|
|
@@ -7328,7 +7206,7 @@ export type GetDatabaseHealthData = {
|
|
|
7328
7206
|
*/
|
|
7329
7207
|
token?: string | null;
|
|
7330
7208
|
};
|
|
7331
|
-
url: '/v1/{graph_id}/health';
|
|
7209
|
+
url: '/v1/graphs/{graph_id}/health';
|
|
7332
7210
|
};
|
|
7333
7211
|
|
|
7334
7212
|
export type GetDatabaseHealthErrors = {
|
|
@@ -7383,7 +7261,7 @@ export type GetDatabaseInfoData = {
|
|
|
7383
7261
|
*/
|
|
7384
7262
|
token?: string | null;
|
|
7385
7263
|
};
|
|
7386
|
-
url: '/v1/{graph_id}/info';
|
|
7264
|
+
url: '/v1/graphs/{graph_id}/info';
|
|
7387
7265
|
};
|
|
7388
7266
|
|
|
7389
7267
|
export type GetDatabaseInfoErrors = {
|
|
@@ -7438,7 +7316,7 @@ export type GetGraphLimitsData = {
|
|
|
7438
7316
|
*/
|
|
7439
7317
|
token?: string | null;
|
|
7440
7318
|
};
|
|
7441
|
-
url: '/v1/{graph_id}/limits';
|
|
7319
|
+
url: '/v1/graphs/{graph_id}/limits';
|
|
7442
7320
|
};
|
|
7443
7321
|
|
|
7444
7322
|
export type GetGraphLimitsErrors = {
|
|
@@ -7496,7 +7374,7 @@ export type ListSubgraphsData = {
|
|
|
7496
7374
|
*/
|
|
7497
7375
|
token?: string | null;
|
|
7498
7376
|
};
|
|
7499
|
-
url: '/v1/{graph_id}/subgraphs';
|
|
7377
|
+
url: '/v1/graphs/{graph_id}/subgraphs';
|
|
7500
7378
|
};
|
|
7501
7379
|
|
|
7502
7380
|
export type ListSubgraphsErrors = {
|
|
@@ -7539,7 +7417,7 @@ export type CreateSubgraphData = {
|
|
|
7539
7417
|
*/
|
|
7540
7418
|
token?: string | null;
|
|
7541
7419
|
};
|
|
7542
|
-
url: '/v1/{graph_id}/subgraphs';
|
|
7420
|
+
url: '/v1/graphs/{graph_id}/subgraphs';
|
|
7543
7421
|
};
|
|
7544
7422
|
|
|
7545
7423
|
export type CreateSubgraphErrors = {
|
|
@@ -7587,7 +7465,7 @@ export type DeleteSubgraphData = {
|
|
|
7587
7465
|
*/
|
|
7588
7466
|
token?: string | null;
|
|
7589
7467
|
};
|
|
7590
|
-
url: '/v1/{graph_id}/subgraphs/{subgraph_id}';
|
|
7468
|
+
url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}';
|
|
7591
7469
|
};
|
|
7592
7470
|
|
|
7593
7471
|
export type DeleteSubgraphErrors = {
|
|
@@ -7659,7 +7537,7 @@ export type GetSubgraphInfoData = {
|
|
|
7659
7537
|
*/
|
|
7660
7538
|
token?: string | null;
|
|
7661
7539
|
};
|
|
7662
|
-
url: '/v1/{graph_id}/subgraphs/{subgraph_id}/info';
|
|
7540
|
+
url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}/info';
|
|
7663
7541
|
};
|
|
7664
7542
|
|
|
7665
7543
|
export type GetSubgraphInfoErrors = {
|
|
@@ -7722,7 +7600,7 @@ export type GetSubgraphQuotaData = {
|
|
|
7722
7600
|
*/
|
|
7723
7601
|
token?: string | null;
|
|
7724
7602
|
};
|
|
7725
|
-
url: '/v1/{graph_id}/subgraphs/quota';
|
|
7603
|
+
url: '/v1/graphs/{graph_id}/subgraphs/quota';
|
|
7726
7604
|
};
|
|
7727
7605
|
|
|
7728
7606
|
export type GetSubgraphQuotaErrors = {
|
|
@@ -7784,7 +7662,7 @@ export type CopyDataToGraphData = {
|
|
|
7784
7662
|
*/
|
|
7785
7663
|
token?: string | null;
|
|
7786
7664
|
};
|
|
7787
|
-
url: '/v1/{graph_id}/copy';
|
|
7665
|
+
url: '/v1/graphs/{graph_id}/copy';
|
|
7788
7666
|
};
|
|
7789
7667
|
|
|
7790
7668
|
export type CopyDataToGraphErrors = {
|
|
@@ -7833,6 +7711,43 @@ export type CopyDataToGraphResponses = {
|
|
|
7833
7711
|
|
|
7834
7712
|
export type CopyDataToGraphResponse = CopyDataToGraphResponses[keyof CopyDataToGraphResponses];
|
|
7835
7713
|
|
|
7714
|
+
export type GetGraphsData = {
|
|
7715
|
+
body?: never;
|
|
7716
|
+
headers?: {
|
|
7717
|
+
/**
|
|
7718
|
+
* Authorization
|
|
7719
|
+
*/
|
|
7720
|
+
authorization?: string | null;
|
|
7721
|
+
};
|
|
7722
|
+
path?: never;
|
|
7723
|
+
query?: {
|
|
7724
|
+
/**
|
|
7725
|
+
* Token
|
|
7726
|
+
* JWT token for SSE authentication
|
|
7727
|
+
*/
|
|
7728
|
+
token?: string | null;
|
|
7729
|
+
};
|
|
7730
|
+
url: '/v1/graphs';
|
|
7731
|
+
};
|
|
7732
|
+
|
|
7733
|
+
export type GetGraphsErrors = {
|
|
7734
|
+
/**
|
|
7735
|
+
* Validation Error
|
|
7736
|
+
*/
|
|
7737
|
+
422: HttpValidationError;
|
|
7738
|
+
};
|
|
7739
|
+
|
|
7740
|
+
export type GetGraphsError = GetGraphsErrors[keyof GetGraphsErrors];
|
|
7741
|
+
|
|
7742
|
+
export type GetGraphsResponses = {
|
|
7743
|
+
/**
|
|
7744
|
+
* Successful Response
|
|
7745
|
+
*/
|
|
7746
|
+
200: UserGraphsResponse;
|
|
7747
|
+
};
|
|
7748
|
+
|
|
7749
|
+
export type GetGraphsResponse = GetGraphsResponses[keyof GetGraphsResponses];
|
|
7750
|
+
|
|
7836
7751
|
export type CreateGraphData = {
|
|
7837
7752
|
body: CreateGraphRequest;
|
|
7838
7753
|
headers?: {
|
|
@@ -7849,7 +7764,7 @@ export type CreateGraphData = {
|
|
|
7849
7764
|
*/
|
|
7850
7765
|
token?: string | null;
|
|
7851
7766
|
};
|
|
7852
|
-
url: '/v1/
|
|
7767
|
+
url: '/v1/graphs';
|
|
7853
7768
|
};
|
|
7854
7769
|
|
|
7855
7770
|
export type CreateGraphErrors = {
|
|
@@ -7872,7 +7787,7 @@ export type GetAvailableExtensionsData = {
|
|
|
7872
7787
|
body?: never;
|
|
7873
7788
|
path?: never;
|
|
7874
7789
|
query?: never;
|
|
7875
|
-
url: '/v1/
|
|
7790
|
+
url: '/v1/graphs/extensions';
|
|
7876
7791
|
};
|
|
7877
7792
|
|
|
7878
7793
|
export type GetAvailableExtensionsResponses = {
|
|
@@ -7884,6 +7799,60 @@ export type GetAvailableExtensionsResponses = {
|
|
|
7884
7799
|
|
|
7885
7800
|
export type GetAvailableExtensionsResponse = GetAvailableExtensionsResponses[keyof GetAvailableExtensionsResponses];
|
|
7886
7801
|
|
|
7802
|
+
export type SelectGraphData = {
|
|
7803
|
+
body?: never;
|
|
7804
|
+
headers?: {
|
|
7805
|
+
/**
|
|
7806
|
+
* Authorization
|
|
7807
|
+
*/
|
|
7808
|
+
authorization?: string | null;
|
|
7809
|
+
};
|
|
7810
|
+
path: {
|
|
7811
|
+
/**
|
|
7812
|
+
* Graph Id
|
|
7813
|
+
*/
|
|
7814
|
+
graph_id: string;
|
|
7815
|
+
};
|
|
7816
|
+
query?: {
|
|
7817
|
+
/**
|
|
7818
|
+
* Token
|
|
7819
|
+
* JWT token for SSE authentication
|
|
7820
|
+
*/
|
|
7821
|
+
token?: string | null;
|
|
7822
|
+
};
|
|
7823
|
+
url: '/v1/graphs/{graph_id}/select';
|
|
7824
|
+
};
|
|
7825
|
+
|
|
7826
|
+
export type SelectGraphErrors = {
|
|
7827
|
+
/**
|
|
7828
|
+
* Access denied to graph
|
|
7829
|
+
*/
|
|
7830
|
+
403: ErrorResponse;
|
|
7831
|
+
/**
|
|
7832
|
+
* Graph not found
|
|
7833
|
+
*/
|
|
7834
|
+
404: ErrorResponse;
|
|
7835
|
+
/**
|
|
7836
|
+
* Validation Error
|
|
7837
|
+
*/
|
|
7838
|
+
422: HttpValidationError;
|
|
7839
|
+
/**
|
|
7840
|
+
* Error selecting graph
|
|
7841
|
+
*/
|
|
7842
|
+
500: ErrorResponse;
|
|
7843
|
+
};
|
|
7844
|
+
|
|
7845
|
+
export type SelectGraphError = SelectGraphErrors[keyof SelectGraphErrors];
|
|
7846
|
+
|
|
7847
|
+
export type SelectGraphResponses = {
|
|
7848
|
+
/**
|
|
7849
|
+
* Graph selected successfully
|
|
7850
|
+
*/
|
|
7851
|
+
200: SuccessResponse;
|
|
7852
|
+
};
|
|
7853
|
+
|
|
7854
|
+
export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
|
|
7855
|
+
|
|
7887
7856
|
export type GetServiceOfferingsData = {
|
|
7888
7857
|
body?: never;
|
|
7889
7858
|
path?: never;
|