@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/types.gen.d.ts CHANGED
@@ -33,6 +33,11 @@ export type ApiKeyInfo = {
33
33
  * Last used timestamp
34
34
  */
35
35
  last_used_at?: string | null;
36
+ /**
37
+ * Expires At
38
+ * Expiration timestamp
39
+ */
40
+ expires_at?: string | null;
36
41
  /**
37
42
  * Created At
38
43
  * Creation timestamp
@@ -907,6 +912,11 @@ export type CreateApiKeyRequest = {
907
912
  * Optional description
908
913
  */
909
914
  description?: string | null;
915
+ /**
916
+ * Expires At
917
+ * Optional expiration date in ISO format (e.g. 2024-12-31T23:59:59Z)
918
+ */
919
+ expires_at?: string | null;
910
920
  };
911
921
  /**
912
922
  * CreateAPIKeyResponse
@@ -2408,17 +2418,6 @@ export type SsoExchangeResponse = {
2408
2418
  */
2409
2419
  expires_at: string;
2410
2420
  };
2411
- /**
2412
- * SSOLoginRequest
2413
- * SSO login request model.
2414
- */
2415
- export type SsoLoginRequest = {
2416
- /**
2417
- * Token
2418
- * Temporary SSO token
2419
- */
2420
- token: string;
2421
- };
2422
2421
  /**
2423
2422
  * SSOTokenResponse
2424
2423
  * SSO token response model.
@@ -3678,30 +3677,6 @@ export type GenerateSsoTokenResponses = {
3678
3677
  200: SsoTokenResponse;
3679
3678
  };
3680
3679
  export type GenerateSsoTokenResponse = GenerateSsoTokenResponses[keyof GenerateSsoTokenResponses];
3681
- export type SsoLoginData = {
3682
- body: SsoLoginRequest;
3683
- path?: never;
3684
- query?: never;
3685
- url: '/v1/auth/sso-login';
3686
- };
3687
- export type SsoLoginErrors = {
3688
- /**
3689
- * Invalid SSO token
3690
- */
3691
- 401: ErrorResponse;
3692
- /**
3693
- * Validation Error
3694
- */
3695
- 422: HttpValidationError;
3696
- };
3697
- export type SsoLoginError = SsoLoginErrors[keyof SsoLoginErrors];
3698
- export type SsoLoginResponses = {
3699
- /**
3700
- * Successful Response
3701
- */
3702
- 200: AuthResponse;
3703
- };
3704
- export type SsoLoginResponse = SsoLoginResponses[keyof SsoLoginResponses];
3705
3680
  export type SsoTokenExchangeData = {
3706
3681
  body: SsoExchangeRequest;
3707
3682
  path?: never;
@@ -3843,87 +3818,6 @@ export type UpdateUserResponses = {
3843
3818
  200: UserResponse;
3844
3819
  };
3845
3820
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
3846
- export type GetUserGraphsData = {
3847
- body?: never;
3848
- headers?: {
3849
- /**
3850
- * Authorization
3851
- */
3852
- authorization?: string | null;
3853
- };
3854
- path?: never;
3855
- query?: {
3856
- /**
3857
- * Token
3858
- * JWT token for SSE authentication
3859
- */
3860
- token?: string | null;
3861
- };
3862
- url: '/v1/user/graphs';
3863
- };
3864
- export type GetUserGraphsErrors = {
3865
- /**
3866
- * Validation Error
3867
- */
3868
- 422: HttpValidationError;
3869
- };
3870
- export type GetUserGraphsError = GetUserGraphsErrors[keyof GetUserGraphsErrors];
3871
- export type GetUserGraphsResponses = {
3872
- /**
3873
- * Successful Response
3874
- */
3875
- 200: UserGraphsResponse;
3876
- };
3877
- export type GetUserGraphsResponse = GetUserGraphsResponses[keyof GetUserGraphsResponses];
3878
- export type SelectUserGraphData = {
3879
- body?: never;
3880
- headers?: {
3881
- /**
3882
- * Authorization
3883
- */
3884
- authorization?: string | null;
3885
- };
3886
- path: {
3887
- /**
3888
- * Graph Id
3889
- */
3890
- graph_id: string;
3891
- };
3892
- query?: {
3893
- /**
3894
- * Token
3895
- * JWT token for SSE authentication
3896
- */
3897
- token?: string | null;
3898
- };
3899
- url: '/v1/user/graphs/{graph_id}/select';
3900
- };
3901
- export type SelectUserGraphErrors = {
3902
- /**
3903
- * Access denied to graph
3904
- */
3905
- 403: ErrorResponse;
3906
- /**
3907
- * Graph not found
3908
- */
3909
- 404: ErrorResponse;
3910
- /**
3911
- * Validation Error
3912
- */
3913
- 422: HttpValidationError;
3914
- /**
3915
- * Error selecting graph
3916
- */
3917
- 500: ErrorResponse;
3918
- };
3919
- export type SelectUserGraphError = SelectUserGraphErrors[keyof SelectUserGraphErrors];
3920
- export type SelectUserGraphResponses = {
3921
- /**
3922
- * Graph selected successfully
3923
- */
3924
- 200: SuccessResponse;
3925
- };
3926
- export type SelectUserGraphResponse = SelectUserGraphResponses[keyof SelectUserGraphResponses];
3927
3821
  export type GetAllCreditSummariesData = {
3928
3822
  body?: never;
3929
3823
  headers?: {
@@ -4668,7 +4562,7 @@ export type GetConnectionOptionsData = {
4668
4562
  */
4669
4563
  token?: string | null;
4670
4564
  };
4671
- url: '/v1/{graph_id}/connections/options';
4565
+ url: '/v1/graphs/{graph_id}/connections/options';
4672
4566
  };
4673
4567
  export type GetConnectionOptionsErrors = {
4674
4568
  /**
@@ -4719,7 +4613,7 @@ export type SyncConnectionData = {
4719
4613
  */
4720
4614
  token?: string | null;
4721
4615
  };
4722
- url: '/v1/{graph_id}/connections/{connection_id}/sync';
4616
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
4723
4617
  };
4724
4618
  export type SyncConnectionErrors = {
4725
4619
  /**
@@ -4772,7 +4666,7 @@ export type CreateLinkTokenData = {
4772
4666
  */
4773
4667
  token?: string | null;
4774
4668
  };
4775
- url: '/v1/{graph_id}/connections/link/token';
4669
+ url: '/v1/graphs/{graph_id}/connections/link/token';
4776
4670
  };
4777
4671
  export type CreateLinkTokenErrors = {
4778
4672
  /**
@@ -4821,7 +4715,7 @@ export type ExchangeLinkTokenData = {
4821
4715
  */
4822
4716
  token?: string | null;
4823
4717
  };
4824
- url: '/v1/{graph_id}/connections/link/exchange';
4718
+ url: '/v1/graphs/{graph_id}/connections/link/exchange';
4825
4719
  };
4826
4720
  export type ExchangeLinkTokenErrors = {
4827
4721
  /**
@@ -4870,7 +4764,7 @@ export type InitOAuthData = {
4870
4764
  */
4871
4765
  token?: string | null;
4872
4766
  };
4873
- url: '/v1/{graph_id}/connections/oauth/init';
4767
+ url: '/v1/graphs/{graph_id}/connections/oauth/init';
4874
4768
  };
4875
4769
  export type InitOAuthErrors = {
4876
4770
  /**
@@ -4913,7 +4807,7 @@ export type OauthCallbackData = {
4913
4807
  */
4914
4808
  token?: string | null;
4915
4809
  };
4916
- url: '/v1/{graph_id}/connections/oauth/callback/{provider}';
4810
+ url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
4917
4811
  };
4918
4812
  export type OauthCallbackErrors = {
4919
4813
  /**
@@ -4976,7 +4870,7 @@ export type ListConnectionsData = {
4976
4870
  */
4977
4871
  token?: string | null;
4978
4872
  };
4979
- url: '/v1/{graph_id}/connections';
4873
+ url: '/v1/graphs/{graph_id}/connections';
4980
4874
  };
4981
4875
  export type ListConnectionsErrors = {
4982
4876
  /**
@@ -5023,7 +4917,7 @@ export type CreateConnectionData = {
5023
4917
  */
5024
4918
  token?: string | null;
5025
4919
  };
5026
- url: '/v1/{graph_id}/connections';
4920
+ url: '/v1/graphs/{graph_id}/connections';
5027
4921
  };
5028
4922
  export type CreateConnectionErrors = {
5029
4923
  /**
@@ -5082,7 +4976,7 @@ export type DeleteConnectionData = {
5082
4976
  */
5083
4977
  token?: string | null;
5084
4978
  };
5085
- url: '/v1/{graph_id}/connections/{connection_id}';
4979
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5086
4980
  };
5087
4981
  export type DeleteConnectionErrors = {
5088
4982
  /**
@@ -5137,7 +5031,7 @@ export type GetConnectionData = {
5137
5031
  */
5138
5032
  token?: string | null;
5139
5033
  };
5140
- url: '/v1/{graph_id}/connections/{connection_id}';
5034
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5141
5035
  };
5142
5036
  export type GetConnectionErrors = {
5143
5037
  /**
@@ -5186,7 +5080,7 @@ export type AutoSelectAgentData = {
5186
5080
  */
5187
5081
  token?: string | null;
5188
5082
  };
5189
- url: '/v1/{graph_id}/agent';
5083
+ url: '/v1/graphs/{graph_id}/agent';
5190
5084
  };
5191
5085
  export type AutoSelectAgentErrors = {
5192
5086
  /**
@@ -5243,7 +5137,7 @@ export type ExecuteSpecificAgentData = {
5243
5137
  */
5244
5138
  token?: string | null;
5245
5139
  };
5246
- url: '/v1/{graph_id}/agent/{agent_type}';
5140
+ url: '/v1/graphs/{graph_id}/agent/{agent_type}';
5247
5141
  };
5248
5142
  export type ExecuteSpecificAgentErrors = {
5249
5143
  /**
@@ -5300,7 +5194,7 @@ export type BatchProcessQueriesData = {
5300
5194
  */
5301
5195
  token?: string | null;
5302
5196
  };
5303
- url: '/v1/{graph_id}/agent/batch';
5197
+ url: '/v1/graphs/{graph_id}/agent/batch';
5304
5198
  };
5305
5199
  export type BatchProcessQueriesErrors = {
5306
5200
  /**
@@ -5355,7 +5249,7 @@ export type ListAgentsData = {
5355
5249
  */
5356
5250
  token?: string | null;
5357
5251
  };
5358
- url: '/v1/{graph_id}/agent/list';
5252
+ url: '/v1/graphs/{graph_id}/agent/list';
5359
5253
  };
5360
5254
  export type ListAgentsErrors = {
5361
5255
  /**
@@ -5402,7 +5296,7 @@ export type GetAgentMetadataData = {
5402
5296
  */
5403
5297
  token?: string | null;
5404
5298
  };
5405
- url: '/v1/{graph_id}/agent/{agent_type}/metadata';
5299
+ url: '/v1/graphs/{graph_id}/agent/{agent_type}/metadata';
5406
5300
  };
5407
5301
  export type GetAgentMetadataErrors = {
5408
5302
  /**
@@ -5444,7 +5338,7 @@ export type RecommendAgentData = {
5444
5338
  */
5445
5339
  token?: string | null;
5446
5340
  };
5447
- url: '/v1/{graph_id}/agent/recommend';
5341
+ url: '/v1/graphs/{graph_id}/agent/recommend';
5448
5342
  };
5449
5343
  export type RecommendAgentErrors = {
5450
5344
  /**
@@ -5486,7 +5380,7 @@ export type ListMcpToolsData = {
5486
5380
  */
5487
5381
  token?: string | null;
5488
5382
  };
5489
- url: '/v1/{graph_id}/mcp/tools';
5383
+ url: '/v1/graphs/{graph_id}/mcp/tools';
5490
5384
  };
5491
5385
  export type ListMcpToolsErrors = {
5492
5386
  /**
@@ -5542,7 +5436,7 @@ export type CallMcpToolData = {
5542
5436
  */
5543
5437
  token?: string | null;
5544
5438
  };
5545
- url: '/v1/{graph_id}/mcp/call-tool';
5439
+ url: '/v1/graphs/{graph_id}/mcp/call-tool';
5546
5440
  };
5547
5441
  export type CallMcpToolErrors = {
5548
5442
  /**
@@ -5621,7 +5515,7 @@ export type ListBackupsData = {
5621
5515
  */
5622
5516
  token?: string | null;
5623
5517
  };
5624
- url: '/v1/{graph_id}/backups';
5518
+ url: '/v1/graphs/{graph_id}/backups';
5625
5519
  };
5626
5520
  export type ListBackupsErrors = {
5627
5521
  /**
@@ -5659,7 +5553,7 @@ export type CreateBackupData = {
5659
5553
  */
5660
5554
  token?: string | null;
5661
5555
  };
5662
- url: '/v1/{graph_id}/backups';
5556
+ url: '/v1/graphs/{graph_id}/backups';
5663
5557
  };
5664
5558
  export type CreateBackupErrors = {
5665
5559
  /**
@@ -5717,7 +5611,7 @@ export type ExportBackupData = {
5717
5611
  */
5718
5612
  token?: string | null;
5719
5613
  };
5720
- url: '/v1/{graph_id}/backups/{backup_id}/export';
5614
+ url: '/v1/graphs/{graph_id}/backups/{backup_id}/export';
5721
5615
  };
5722
5616
  export type ExportBackupErrors = {
5723
5617
  /**
@@ -5772,7 +5666,7 @@ export type GetBackupDownloadUrlData = {
5772
5666
  */
5773
5667
  token?: string | null;
5774
5668
  };
5775
- url: '/v1/{graph_id}/backups/{backup_id}/download';
5669
+ url: '/v1/graphs/{graph_id}/backups/{backup_id}/download';
5776
5670
  };
5777
5671
  export type GetBackupDownloadUrlErrors = {
5778
5672
  /**
@@ -5825,7 +5719,7 @@ export type RestoreBackupData = {
5825
5719
  */
5826
5720
  token?: string | null;
5827
5721
  };
5828
- url: '/v1/{graph_id}/backups/restore';
5722
+ url: '/v1/graphs/{graph_id}/backups/restore';
5829
5723
  };
5830
5724
  export type RestoreBackupErrors = {
5831
5725
  /**
@@ -5878,7 +5772,7 @@ export type GetBackupStatsData = {
5878
5772
  */
5879
5773
  token?: string | null;
5880
5774
  };
5881
- url: '/v1/{graph_id}/backups/stats';
5775
+ url: '/v1/graphs/{graph_id}/backups/stats';
5882
5776
  };
5883
5777
  export type GetBackupStatsErrors = {
5884
5778
  /**
@@ -5916,7 +5810,7 @@ export type GetGraphMetricsData = {
5916
5810
  */
5917
5811
  token?: string | null;
5918
5812
  };
5919
- url: '/v1/{graph_id}/analytics';
5813
+ url: '/v1/graphs/{graph_id}/analytics';
5920
5814
  };
5921
5815
  export type GetGraphMetricsErrors = {
5922
5816
  /**
@@ -5971,7 +5865,7 @@ export type GetGraphUsageStatsData = {
5971
5865
  */
5972
5866
  token?: string | null;
5973
5867
  };
5974
- url: '/v1/{graph_id}/analytics/usage';
5868
+ url: '/v1/graphs/{graph_id}/analytics/usage';
5975
5869
  };
5976
5870
  export type GetGraphUsageStatsErrors = {
5977
5871
  /**
@@ -6032,7 +5926,7 @@ export type ExecuteCypherQueryData = {
6032
5926
  */
6033
5927
  token?: string | null;
6034
5928
  };
6035
- url: '/v1/{graph_id}/query';
5929
+ url: '/v1/graphs/{graph_id}/query';
6036
5930
  };
6037
5931
  export type ExecuteCypherQueryErrors = {
6038
5932
  /**
@@ -6097,7 +5991,7 @@ export type GetGraphSchemaInfoData = {
6097
5991
  */
6098
5992
  token?: string | null;
6099
5993
  };
6100
- url: '/v1/{graph_id}/schema/info';
5994
+ url: '/v1/graphs/{graph_id}/schema/info';
6101
5995
  };
6102
5996
  export type GetGraphSchemaInfoErrors = {
6103
5997
  /**
@@ -6149,7 +6043,7 @@ export type ValidateSchemaData = {
6149
6043
  */
6150
6044
  token?: string | null;
6151
6045
  };
6152
- url: '/v1/{graph_id}/schema/validate';
6046
+ url: '/v1/graphs/{graph_id}/schema/validate';
6153
6047
  };
6154
6048
  export type ValidateSchemaErrors = {
6155
6049
  /**
@@ -6209,7 +6103,7 @@ export type ExportGraphSchemaData = {
6209
6103
  */
6210
6104
  token?: string | null;
6211
6105
  };
6212
- url: '/v1/{graph_id}/schema/export';
6106
+ url: '/v1/graphs/{graph_id}/schema/export';
6213
6107
  };
6214
6108
  export type ExportGraphSchemaErrors = {
6215
6109
  /**
@@ -6247,7 +6141,7 @@ export type ListSchemaExtensionsData = {
6247
6141
  */
6248
6142
  token?: string | null;
6249
6143
  };
6250
- url: '/v1/{graph_id}/schema/extensions';
6144
+ url: '/v1/graphs/{graph_id}/schema/extensions';
6251
6145
  };
6252
6146
  export type ListSchemaExtensionsErrors = {
6253
6147
  /**
@@ -6288,7 +6182,7 @@ export type GetCurrentGraphBillData = {
6288
6182
  */
6289
6183
  token?: string | null;
6290
6184
  };
6291
- url: '/v1/{graph_id}/billing/current';
6185
+ url: '/v1/graphs/{graph_id}/billing/current';
6292
6186
  };
6293
6187
  export type GetCurrentGraphBillErrors = {
6294
6188
  /**
@@ -6351,7 +6245,7 @@ export type GetGraphUsageDetailsData = {
6351
6245
  */
6352
6246
  token?: string | null;
6353
6247
  };
6354
- url: '/v1/{graph_id}/billing/usage';
6248
+ url: '/v1/graphs/{graph_id}/billing/usage';
6355
6249
  };
6356
6250
  export type GetGraphUsageDetailsErrors = {
6357
6251
  /**
@@ -6413,7 +6307,7 @@ export type GetGraphBillingHistoryData = {
6413
6307
  */
6414
6308
  token?: string | null;
6415
6309
  };
6416
- url: '/v1/{graph_id}/billing/history';
6310
+ url: '/v1/graphs/{graph_id}/billing/history';
6417
6311
  };
6418
6312
  export type GetGraphBillingHistoryErrors = {
6419
6313
  /**
@@ -6476,7 +6370,7 @@ export type GetGraphMonthlyBillData = {
6476
6370
  */
6477
6371
  token?: string | null;
6478
6372
  };
6479
- url: '/v1/{graph_id}/billing/history/{year}/{month}';
6373
+ url: '/v1/graphs/{graph_id}/billing/history/{year}/{month}';
6480
6374
  };
6481
6375
  export type GetGraphMonthlyBillErrors = {
6482
6376
  /**
@@ -6533,7 +6427,7 @@ export type GetCreditSummaryData = {
6533
6427
  */
6534
6428
  token?: string | null;
6535
6429
  };
6536
- url: '/v1/{graph_id}/credits/summary';
6430
+ url: '/v1/graphs/{graph_id}/credits/summary';
6537
6431
  };
6538
6432
  export type GetCreditSummaryErrors = {
6539
6433
  /**
@@ -6613,7 +6507,7 @@ export type ListCreditTransactionsData = {
6613
6507
  */
6614
6508
  token?: string | null;
6615
6509
  };
6616
- url: '/v1/{graph_id}/credits/transactions';
6510
+ url: '/v1/graphs/{graph_id}/credits/transactions';
6617
6511
  };
6618
6512
  export type ListCreditTransactionsErrors = {
6619
6513
  /**
@@ -6673,7 +6567,7 @@ export type CheckCreditBalanceData = {
6673
6567
  */
6674
6568
  token?: string | null;
6675
6569
  };
6676
- url: '/v1/{graph_id}/credits/balance/check';
6570
+ url: '/v1/graphs/{graph_id}/credits/balance/check';
6677
6571
  };
6678
6572
  export type CheckCreditBalanceErrors = {
6679
6573
  /**
@@ -6731,7 +6625,7 @@ export type GetStorageUsageData = {
6731
6625
  */
6732
6626
  token?: string | null;
6733
6627
  };
6734
- url: '/v1/{graph_id}/credits/storage/usage';
6628
+ url: '/v1/graphs/{graph_id}/credits/storage/usage';
6735
6629
  };
6736
6630
  export type GetStorageUsageErrors = {
6737
6631
  /**
@@ -6780,7 +6674,7 @@ export type CheckStorageLimitsData = {
6780
6674
  */
6781
6675
  token?: string | null;
6782
6676
  };
6783
- url: '/v1/{graph_id}/credits/storage/limits';
6677
+ url: '/v1/graphs/{graph_id}/credits/storage/limits';
6784
6678
  };
6785
6679
  export type CheckStorageLimitsErrors = {
6786
6680
  /**
@@ -6830,7 +6724,7 @@ export type GetDatabaseHealthData = {
6830
6724
  */
6831
6725
  token?: string | null;
6832
6726
  };
6833
- url: '/v1/{graph_id}/health';
6727
+ url: '/v1/graphs/{graph_id}/health';
6834
6728
  };
6835
6729
  export type GetDatabaseHealthErrors = {
6836
6730
  /**
@@ -6880,7 +6774,7 @@ export type GetDatabaseInfoData = {
6880
6774
  */
6881
6775
  token?: string | null;
6882
6776
  };
6883
- url: '/v1/{graph_id}/info';
6777
+ url: '/v1/graphs/{graph_id}/info';
6884
6778
  };
6885
6779
  export type GetDatabaseInfoErrors = {
6886
6780
  /**
@@ -6930,7 +6824,7 @@ export type GetGraphLimitsData = {
6930
6824
  */
6931
6825
  token?: string | null;
6932
6826
  };
6933
- url: '/v1/{graph_id}/limits';
6827
+ url: '/v1/graphs/{graph_id}/limits';
6934
6828
  };
6935
6829
  export type GetGraphLimitsErrors = {
6936
6830
  /**
@@ -6983,7 +6877,7 @@ export type ListSubgraphsData = {
6983
6877
  */
6984
6878
  token?: string | null;
6985
6879
  };
6986
- url: '/v1/{graph_id}/subgraphs';
6880
+ url: '/v1/graphs/{graph_id}/subgraphs';
6987
6881
  };
6988
6882
  export type ListSubgraphsErrors = {
6989
6883
  /**
@@ -7021,7 +6915,7 @@ export type CreateSubgraphData = {
7021
6915
  */
7022
6916
  token?: string | null;
7023
6917
  };
7024
- url: '/v1/{graph_id}/subgraphs';
6918
+ url: '/v1/graphs/{graph_id}/subgraphs';
7025
6919
  };
7026
6920
  export type CreateSubgraphErrors = {
7027
6921
  /**
@@ -7064,7 +6958,7 @@ export type DeleteSubgraphData = {
7064
6958
  */
7065
6959
  token?: string | null;
7066
6960
  };
7067
- url: '/v1/{graph_id}/subgraphs/{subgraph_id}';
6961
+ url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}';
7068
6962
  };
7069
6963
  export type DeleteSubgraphErrors = {
7070
6964
  /**
@@ -7131,7 +7025,7 @@ export type GetSubgraphInfoData = {
7131
7025
  */
7132
7026
  token?: string | null;
7133
7027
  };
7134
- url: '/v1/{graph_id}/subgraphs/{subgraph_id}/info';
7028
+ url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}/info';
7135
7029
  };
7136
7030
  export type GetSubgraphInfoErrors = {
7137
7031
  /**
@@ -7189,7 +7083,7 @@ export type GetSubgraphQuotaData = {
7189
7083
  */
7190
7084
  token?: string | null;
7191
7085
  };
7192
- url: '/v1/{graph_id}/subgraphs/quota';
7086
+ url: '/v1/graphs/{graph_id}/subgraphs/quota';
7193
7087
  };
7194
7088
  export type GetSubgraphQuotaErrors = {
7195
7089
  /**
@@ -7246,7 +7140,7 @@ export type CopyDataToGraphData = {
7246
7140
  */
7247
7141
  token?: string | null;
7248
7142
  };
7249
- url: '/v1/{graph_id}/copy';
7143
+ url: '/v1/graphs/{graph_id}/copy';
7250
7144
  };
7251
7145
  export type CopyDataToGraphErrors = {
7252
7146
  /**
@@ -7290,6 +7184,38 @@ export type CopyDataToGraphResponses = {
7290
7184
  202: unknown;
7291
7185
  };
7292
7186
  export type CopyDataToGraphResponse = CopyDataToGraphResponses[keyof CopyDataToGraphResponses];
7187
+ export type GetGraphsData = {
7188
+ body?: never;
7189
+ headers?: {
7190
+ /**
7191
+ * Authorization
7192
+ */
7193
+ authorization?: string | null;
7194
+ };
7195
+ path?: never;
7196
+ query?: {
7197
+ /**
7198
+ * Token
7199
+ * JWT token for SSE authentication
7200
+ */
7201
+ token?: string | null;
7202
+ };
7203
+ url: '/v1/graphs';
7204
+ };
7205
+ export type GetGraphsErrors = {
7206
+ /**
7207
+ * Validation Error
7208
+ */
7209
+ 422: HttpValidationError;
7210
+ };
7211
+ export type GetGraphsError = GetGraphsErrors[keyof GetGraphsErrors];
7212
+ export type GetGraphsResponses = {
7213
+ /**
7214
+ * Successful Response
7215
+ */
7216
+ 200: UserGraphsResponse;
7217
+ };
7218
+ export type GetGraphsResponse = GetGraphsResponses[keyof GetGraphsResponses];
7293
7219
  export type CreateGraphData = {
7294
7220
  body: CreateGraphRequest;
7295
7221
  headers?: {
@@ -7306,7 +7232,7 @@ export type CreateGraphData = {
7306
7232
  */
7307
7233
  token?: string | null;
7308
7234
  };
7309
- url: '/v1/create/graph';
7235
+ url: '/v1/graphs';
7310
7236
  };
7311
7237
  export type CreateGraphErrors = {
7312
7238
  /**
@@ -7325,7 +7251,7 @@ export type GetAvailableExtensionsData = {
7325
7251
  body?: never;
7326
7252
  path?: never;
7327
7253
  query?: never;
7328
- url: '/v1/create/graph/extensions';
7254
+ url: '/v1/graphs/extensions';
7329
7255
  };
7330
7256
  export type GetAvailableExtensionsResponses = {
7331
7257
  /**
@@ -7334,6 +7260,55 @@ export type GetAvailableExtensionsResponses = {
7334
7260
  200: AvailableExtensionsResponse;
7335
7261
  };
7336
7262
  export type GetAvailableExtensionsResponse = GetAvailableExtensionsResponses[keyof GetAvailableExtensionsResponses];
7263
+ export type SelectGraphData = {
7264
+ body?: never;
7265
+ headers?: {
7266
+ /**
7267
+ * Authorization
7268
+ */
7269
+ authorization?: string | null;
7270
+ };
7271
+ path: {
7272
+ /**
7273
+ * Graph Id
7274
+ */
7275
+ graph_id: string;
7276
+ };
7277
+ query?: {
7278
+ /**
7279
+ * Token
7280
+ * JWT token for SSE authentication
7281
+ */
7282
+ token?: string | null;
7283
+ };
7284
+ url: '/v1/graphs/{graph_id}/select';
7285
+ };
7286
+ export type SelectGraphErrors = {
7287
+ /**
7288
+ * Access denied to graph
7289
+ */
7290
+ 403: ErrorResponse;
7291
+ /**
7292
+ * Graph not found
7293
+ */
7294
+ 404: ErrorResponse;
7295
+ /**
7296
+ * Validation Error
7297
+ */
7298
+ 422: HttpValidationError;
7299
+ /**
7300
+ * Error selecting graph
7301
+ */
7302
+ 500: ErrorResponse;
7303
+ };
7304
+ export type SelectGraphError = SelectGraphErrors[keyof SelectGraphErrors];
7305
+ export type SelectGraphResponses = {
7306
+ /**
7307
+ * Graph selected successfully
7308
+ */
7309
+ 200: SuccessResponse;
7310
+ };
7311
+ export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
7337
7312
  export type GetServiceOfferingsData = {
7338
7313
  body?: never;
7339
7314
  path?: never;